From de9c8bfecc1a9dfbd00581f3d7d2e9e82a22269c Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Fri, 30 Oct 2020 09:48:29 +0000 Subject: [PATCH 01/22] Add cmdLets to support updates up to api-version 2020-06-01 --- .../NetAppFiles.Test/NetAppFiles.Test.csproj | 2 +- .../ScenarioTests/AccountTests.ps1 | 7 +- .../ScenarioTests/ActiveDirectoryTests.cs | 44 +++ .../ScenarioTests/ActiveDirectoryTests.ps1 | 121 +++++++++ .../ScenarioTests/BackupPolicyTests.cs | 44 +++ .../ScenarioTests/BackupPolicyTests.ps1 | 146 ++++++++++ .../ScenarioTests/BackupTests.cs | 44 +++ .../ScenarioTests/BackupTests.ps1 | 254 ++++++++++++++++++ .../ScenarioTests/PoolTests.ps1 | 24 +- .../ScenarioTests/SnapshotPolicyTests.cs | 44 +++ .../ScenarioTests/SnapshotPolicyTests.ps1 | 172 ++++++++++++ .../ScenarioTests/SnapshotTests.ps1 | 2 +- .../ScenarioTests/VaultTests.cs | 37 +++ .../ScenarioTests/VaultTests.ps1 | 50 ++++ .../ScenarioTests/VolumeTests.cs | 19 +- .../ScenarioTests/VolumeTests.ps1 | 123 ++++++++- .../Account/NewNetAppFilesAccount.cs | 2 +- .../Account/SetNetAppFilesAccount.cs | 2 +- .../Account/UpdateNetAppFilesAccount.cs | 2 +- .../GetNetAppFilesActiveDirectory.cs | 94 +++++++ .../NewNetAppFilesActiveDirectory.cs | 212 +++++++++++++++ .../RemoveNetAppFilesActiveDirectory.cs | 104 +++++++ .../UpdateNetAppFilesBackupPolicy.cs | 236 ++++++++++++++++ .../NetAppFiles/Az.NetAppFiles.psd1 | 32 ++- .../GetNetAppFilesBackupPolicy.cs | 110 ++++++++ .../NewNetAppFilesBackupPolicy.cs | 145 ++++++++++ .../RemoveNetAppFilesBackupPolicy.cs | 133 +++++++++ .../UpdateNetAppFilesBackupPolicy.cs | 170 ++++++++++++ .../Backups/GetNetAppFilesBackup.cs | 139 ++++++++++ .../Backups/NewNetAppFilesBackup.cs | 136 ++++++++++ .../Backups/RemoveNetAppFilesBackup.cs | 163 +++++++++++ .../Backups/UpdateNetAppFilesBackup.cs | 188 +++++++++++++ src/NetAppFiles/NetAppFiles/ChangeLog.md | 44 +++ .../NetAppFiles/Helpers/BackupExtensions.cs | 49 ++++ .../Helpers/BackupPolicyExtensions.cs | 63 +++++ .../NetAppFiles/Helpers/ModelExtensions.cs | 137 +++++++--- .../Helpers/SnapshotPolicyExtensions.cs | 149 ++++++++++ .../NetAppFiles/Helpers/VaultExtensions.cs | 44 +++ .../Models/PSNetAppFilesActiveDirectory.cs | 34 +++ .../NetAppFiles/Models/PSNetAppFilesBackup.cs | 95 +++++++ .../Models/PSNetAppFilesBackupPolicy.cs | 121 +++++++++ .../Models/PSNetAppFilesDailySchedule.cs | 42 +++ .../Models/PSNetAppFilesExportPolicyRule.cs | 35 +++ .../Models/PSNetAppFilesHourlySchedule.cs | 37 +++ .../Models/PSNetAppFilesMonthlySchedule.cs | 49 ++++ .../NetAppFiles/Models/PSNetAppFilesPool.cs | 25 ++ .../Models/PSNetAppFilesSnapshotPolicy.cs | 104 +++++++ .../NetAppFiles/Models/PSNetAppFilesVault.cs | 57 ++++ .../NetAppFiles/Models/PSNetAppFilesVolume.cs | 35 ++- .../Models/PSNetAppFilesVolumeBackup.cs | 44 +++ .../PSNetAppFilesVolumeBackupProperties.cs | 51 ++++ .../PSNetAppFilesVolumeDataProtection.cs | 9 + .../Models/PSNetAppFilesWeeklySchedule.cs | 48 ++++ .../NetAppFiles/NetAppFiles.csproj | 6 +- .../NetAppFiles/Pool/NewNetAppFilesPool.cs | 13 +- .../NetAppFiles/Pool/UpdateNetAppFilesPool.cs | 14 +- .../BreakNetAppFilesReplication.cs | 18 +- .../ReinitializeNetAppFilesReplication.cs | 129 +++++++++ .../GetNetAppFilesSnapshotPolicy.cs | 112 ++++++++ .../NewNetAppFilesSnapshotPolicy.cs | 145 ++++++++++ .../RemoveNetAppFilesSnapshotPolicy.cs | 132 +++++++++ .../UpdateNetAppFilesSnapshotPolicy.cs | 176 ++++++++++++ .../NetAppFiles/Vaults/GetNetAppFilesVault.cs | 90 +++++++ .../Volume/NewNetAppFilesVolume.cs | 50 +++- .../Volume/PoolChangeNetAppFilesVolume.cs | 160 +++++++++++ .../Volume/UpdateNetAppFilesVolume.cs | 20 +- .../NetAppFiles/help/Az.NetAppFiles.md | 3 + .../NetAppFiles/help/New-AzNetAppFilesPool.md | 15 ++ .../help/New-AzNetAppFilesVolume.md | 112 +++++++- .../help/PoolChange-AzNetAppFilesVolume.md | 251 +++++++++++++++++ .../Reinitialize-AzNetAppFilesReplication.md | 214 +++++++++++++++ .../help/Suspend-AzNetAppFilesReplication.md | 6 +- .../help/Update-AzNetAppFilesPool.md | 17 +- 73 files changed, 5856 insertions(+), 100 deletions(-) create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.cs create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.cs create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.cs create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.cs create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.cs create mode 100644 src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.ps1 create mode 100644 src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs create mode 100644 src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs create mode 100644 src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs create mode 100644 src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/BackupPolicy/GetNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/Backups/GetNetAppFilesBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Helpers/BackupExtensions.cs create mode 100644 src/NetAppFiles/NetAppFiles/Helpers/BackupPolicyExtensions.cs create mode 100644 src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs create mode 100644 src/NetAppFiles/NetAppFiles/Helpers/VaultExtensions.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackupPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesDailySchedule.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesHourlySchedule.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesMonthlySchedule.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshotPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVault.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackup.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackupProperties.cs create mode 100644 src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesWeeklySchedule.cs create mode 100644 src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs create mode 100644 src/NetAppFiles/NetAppFiles/SnapshotPolicy/GetNetAppFilesSnapshotPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/SnapshotPolicy/NewNetAppFilesSnapshotPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs create mode 100644 src/NetAppFiles/NetAppFiles/Vaults/GetNetAppFilesVault.cs create mode 100644 src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs create mode 100644 src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md diff --git a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj index 54676ac35dd0..1eed091f9ce2 100644 --- a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj +++ b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 index df0a19efa2df..84a56cb63317 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 @@ -22,8 +22,9 @@ function Test-AccountActiveDirectory $accName1 = Get-ResourceName $accName2 = Get-ResourceName $accName3 = Get-ResourceName - $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" - + #$resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $resourceLocation = 'westus2' + $activeDirectory1 = @{ Username = "sdkuser" <#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="...")]#> @@ -57,7 +58,7 @@ function Test-AccountActiveDirectory $newTagValue = "tagValue1" #$retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} -ActiveDirector $activeDirectories - Assert-ThrowsContains{ New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} -ActiveDirector $activeDirectories} 'Only one active directory allowed'; + Assert-ThrowsContains{ New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} -ActiveDirectory $activeDirectories} 'Only one active directory allowed'; #Assert-True { $false } } catch diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.cs new file mode 100644 index 000000000000..df51ccb86bfc --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest +{ + public class ActiveDirectoryTests + { + private ServiceManagement.Common.Models.XunitTracingInterceptor _logger; + + public ActiveDirectoryTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestActiveDirectoryCrud() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-ActiveDirectoryCrud"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestActiveDirectoryPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-ActiveDirectoryPipelines"); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 new file mode 100644 index 000000000000..6a6ab3c86b5b --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 @@ -0,0 +1,121 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Active Directory cmdLet CRUD operations +#> +function Test-ActiveDirectoryCrud +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $activeDirectoryName1 = Get-ResourceName + $activeDirectoryName2 = Get-ResourceName + $accName2 = Get-ResourceName + #$resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $resourceLocation = 'westus2' + $adUsername = "sdkuser" + <#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="...")]#> + $adPassword = "sdkpass" + $adDomain = "sdkdomain" + $adDns = "192.0.2.2" + $adSmbServerName = "PSSMBSName" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $resourceLocation + + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedAcc.Name + $sPass = ConvertTo-SecureString $adPassword -AsPlainText -Force + # create and check ActiveDirectory + $retrievedAd = New-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + Assert-AreEqual $activeDirectoryName1 $retrievedAd.AdName + Assert-AreEqual $adDomain $retrievedAd.Domain + Assert-AreEqual $adUsername $retrievedAd.Username + Assert-AreEqual $adDns $retrievedAd.Dns + Assert-AreEqual $adSmbServerName $retrievedAd.SmbServerName + + # get and check account + $retrievedAcc = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 + Assert-AreEqual $adSmbServerName $retrievedAcc.ActiveDirectories[0].SmbServerName + Assert-AreEqual $adUsername $retrievedAcc.ActiveDirectories[0].Username + + # get and check a ActiveDirectory by name and check again + $getRetrievedAd = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 + Assert-AreEqual $activeDirectoryName1 $getRetrievedAd.AdName + Assert-AreEqual $adDomain $getRetrievedAd.Domain + Assert-AreEqual $adUsername $getRetrievedAd.Username + Assert-AreEqual $adDns $getRetrievedAd.Dns + Assert-AreEqual $adSmbServerName $getRetrievedAd.SmbServerName + + # delete activeDirectory retrieved + # but test the WhatIf first, should not be removed + Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $getRetrievedAd.AdName -WhatIf + $retrievedActiveDirectoryList = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 1 $retrievedActiveDirectoryList.Length + + #remove by name + Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $getRetrievedAd.AdName + Start-Sleep -s 15 + $retrievedActiveDirectoryList = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 0 $retrievedActiveDirectoryList.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test activeDirectory Pipeline operations (uses command aliases) +#> +function Test-ActiveDirectoryPipelines +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + #$resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $resourceLocation = 'westus2' + $activeDirectoryName1 = Get-ResourceName + $adUsername = "sdkuser" + <#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="...")]#> + $adPassword = "sdkpass" + $adDomain = "sdkdomain" + $adDns = "192.0.2.2" + $adSmbServerName = "PSSMBSName" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $resourceLocation + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 + $sPass = ConvertTo-SecureString $adPassword -AsPlainText -Force + #create AD piping in Account + $retrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | New-AzNetAppFilesActiveDirectory -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + + $getRetrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | Get-AzNetAppFilesActiveDirectory -Name $activeDirectoryName1 + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.cs new file mode 100644 index 000000000000..f55ac86562c9 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest +{ + public class BackupPolicyTests + { + private ServiceManagement.Common.Models.XunitTracingInterceptor _logger; + + public BackupPolicyTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestBackupPolicyCrud() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-BackupPolicyCrud"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestBackupPolicyPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-BackupPolicyPipelines"); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 new file mode 100644 index 000000000000..9486ab22f2f0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 @@ -0,0 +1,146 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Backup Policy CRUD operations +#> +function Test-BackupPolicyCrud +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $backupPolicyName1 = Get-ResourceName + $backupPolicyName2 = Get-ResourceName + $accName2 = Get-ResourceName + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $dailyBackupsToKeep = 4 + $weeklyBackupsToKeep = 3 + $monthlyBackupsToKeep = 2 + $yearlyBackupsToKeep = 1 + $backupLocation = "eastus2euap" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $backupLocation + + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedAcc.Name + + # create and check BackupPolicy + $retrievedBackupPolicy = New-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $backupPolicyName1 -Tag @{$newTagName = $newTagValue} -Enabled -DailyBackupsToKeep $dailyBackupsToKeep -WeeklyBackupsToKeep $weeklyBackupsToKeep -MonthlyBackupsToKeep $monthlyBackupsToKeep -YearlyBackupsToKeep $yearlyBackupsToKeep + Assert-AreEqual "$accName1/$backupPolicyName1" $retrievedBackupPolicy.Name + Assert-True {$retrievedBackupPolicy.Enabled} + Assert-AreEqual $dailyBackupsToKeep $retrievedBackupPolicy.DailyBackupsToKeep + Assert-AreEqual $weeklyBackupsToKeep $retrievedBackupPolicy.WeeklyBackupsToKeep + Assert-AreEqual $monthlyBackupsToKeep $retrievedBackupPolicy.MonthlyBackupsToKeep + #returns 0 atm service side issue + #Assert-AreEqual $yearlyBackupsToKeep $retrievedBackupPolicy.YearlyBackupsToKeep + + # get and check a BackupPolicy by name and check again + $getRetrievedBackupPolicy = Get-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $backupPolicyName1 + Assert-AreEqual "$accName1/$backupPolicyName1" $getRetrievedBackupPolicy.Name + Assert-True {$retrievedBackupPolicy.Enabled} + Assert-AreEqual $dailyBackupsToKeep $getRetrievedBackupPolicy.DailyBackupsToKeep + Assert-AreEqual $weeklyBackupsToKeep $getRetrievedBackupPolicy.WeeklyBackupsToKeep + Assert-AreEqual $monthlyBackupsToKeep $getRetrievedBackupPolicy.MonthlyBackupsToKeep + #returns 0 atm service side issue + #Assert-AreEqual $yearlyBackupsToKeep $retrievedBackupPolicy.YearlyBackupsToKeep + + #create second BackupPolicy + $secondBackupPolicy = New-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $backupPolicyName2 -Tag @{$newTagName = $newTagValue} -Enabled -DailyBackupsToKeep $dailyBackupsToKeep -WeeklyBackupsToKeep $weeklyBackupsToKeep -MonthlyBackupsToKeep $monthlyBackupsToKeep -YearlyBackupsToKeep $yearlyBackupsToKeep + Assert-AreEqual "$accName1/$backupPolicyName2" $secondBackupPolicy.Name + Assert-True {$retrievedBackupPolicy.Enabled} + Assert-AreEqual $dailyBackupsToKeep $secondBackupPolicy.DailyBackupsToKeep + Assert-AreEqual $weeklyBackupsToKeep $secondBackupPolicy.WeeklyBackupsToKeep + Assert-AreEqual $monthlyBackupsToKeep $secondBackupPolicy.MonthlyBackupsToKeep + #returns 0 atm service side issue + #Assert-AreEqual $yearlyBackupsToKeep $retrievedBackupPolicy.YearlyBackupsToKeep + + # get and check BackupPolicies by Account (list) + $retrievedBackupPolicyList = Get-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + # check the names but the order does not appear to be guaranteed (perhaps because the names are randomly generated) + Assert-AreEqual 2 $retrievedBackupPolicyList.Length + Assert-True {"$accName1/$backupPolicyName1" -eq $retrievedBackupPolicyList[0].Name -or "$accName1/$backupPolicyName2" -eq $retrievedBackupPolicyList[0].Name} + Assert-True {"$accName1/$backupPolicyName1" -eq $retrievedBackupPolicyList[1].Name -or "$accName1/$backupPolicyName2" -eq $retrievedBackupPolicyList[1].Name} + + # get and check a BackupPolicy by name + $getRetrievedBackupPolicy = Get-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $backupPolicyName1 + Assert-AreEqual $accName1 $retrievedAcc.Name + + # get and check the BackupPolicy again using the resource id just obtained + $getRetrievedBackupPolicyById = Get-AzNetAppFilesBackupPolicy -ResourceId $retrievedBackupPolicy.Id + Assert-AreEqual "$accName1/$backupPolicyName1" $getRetrievedBackupPolicyById.Name + + # delete one BackupPolicy retrieved by id and one by name and check removed + Remove-AzNetAppFilesBackupPolicy -ResourceId $getRetrievedBackupPolicyById.Id + + # but test the WhatIf first, should not be removed + Remove-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $backupPolicyName2 -WhatIf + $retrievedBackupPolicyList = Get-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 1 $retrievedBackupPolicyList.Length + + #remove by name + Remove-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $backupPolicyName2 + $retrievedBackupPolicyList = Get-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 0 $retrievedBackupPolicyList.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test BackupPolicy Pipeline operations (uses command aliases) +#> +function Test-BackupPolicyPipelines +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $backupPolicyName1 = Get-ResourceName + $backupPolicyName2 = Get-ResourceName + $accName2 = Get-ResourceName + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $dailyBackupsToKeep = 4 + $weeklyBackupsToKeep = 3 + $monthlyBackupsToKeep = 2 + $yearlyBackupsToKeep = 1 + $backupLocation = "eastus2euap" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $backupLocation + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 + $newTagName = "tag1" + $newTagValue = "tagValue1" + + $retrievedBackupPolicy = Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName1 | New-AzNetAppFilesBackupPolicy -Name $backupPolicyName1 -Tag @{$newTagName = $newTagValue} -Enabled -DailyBackupsToKeep $dailyBackupsToKeep -WeeklyBackupsToKeep $weeklyBackupsToKeep -MonthlyBackupsToKeep $monthlyBackupsToKeep -YearlyBackupsToKeep $yearlyBackupsToKeep + + # get the policy by piping in from account + $getRetrievedBackupPolicy = Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName1 | Get-AzNetAppFilesBackupPolicy -Name $backupPolicyName1 + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.cs new file mode 100644 index 000000000000..63a17f12c520 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest +{ + public class BackupTests + { + private ServiceManagement.Common.Models.XunitTracingInterceptor _logger; + + public BackupTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestBackupCrud() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-BackupCrud"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestBackupPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-BackupPipelines"); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 new file mode 100644 index 000000000000..e18ed7b3114a --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 @@ -0,0 +1,254 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Backup CRUD operations +#> +function Test-BackupCrud +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $poolName = Get-ResourceName + $volName1 = Get-ResourceName + $backupName1 = Get-ResourceName + $backupName2 = Get-ResourceName + $backupPolicyName1 = Get-ResourceName + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $backupLocation = "southcentralus" + $label = "powershellBackupTest" + $label2 = "powershellBackupTest2" + #voll props + $volName1 = Get-ResourceName + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $subnetName = "default" + $poolSize = 4398046511104 + $serviceLevel = "Premium" + $vnetName = $resourceGroup + "-vnet" + $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" + $dailyBackupsToKeep = 4 + $weeklyBackupsToKeep = 3 + $monthlyBackupsToKeep = 2 + $yearlyBackupsToKeep = 1 + + $rule1 = @{ + RuleIndex = 1 + UnixReadOnly = $false + UnixReadWrite = $true + Cifs = $false + Nfsv3 = $true + Nfsv41 = $false + AllowedClients = '0.0.0.0/0' + } + $exportPolicy = @{ + Rules = ( + $rule1 + ) + } + + # create the list of protocol types + $protocolTypes = New-Object string[] 1 + $protocolTypes[0] = "NFSv3" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $backupLocation + + # create virtual network + $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $resourceGroup -Location $backupLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzVirtualNetwork + + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedAcc.Name + + # create and check BackupPolicy + $retrievedBackupPolicy = New-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $backupPolicyName1 -Tag @{$newTagName = $newTagValue} -Enabled -DailyBackupsToKeep $dailyBackupsToKeep -WeeklyBackupsToKeep $weeklyBackupsToKeep -MonthlyBackupsToKeep $monthlyBackupsToKeep -YearlyBackupsToKeep $yearlyBackupsToKeep + + # create pool + $retrievedPool = New-AzNetAppFilesPool -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -PoolName $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + + # create volume and check + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedVolume = New-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId -Tag @{$newTagName = $newTagValue} -ExportPolicy $exportPolicy -ProtocolType $protocolTypes + Assert-AreEqual "$accName1/$poolName/$volName1" $retrievedVolume.Name + Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel + Assert-AreEqual True $retrievedVolume.Tags.ContainsKey($newTagName) + Assert-AreEqual "tagValue1" $retrievedVolume.Tags[$newTagName].ToString() + Assert-NotNull $retrievedVolume.ExportPolicy + Assert-AreEqual '0.0.0.0/0' $retrievedVolume.ExportPolicy.Rules[0].AllowedClients + + # get check Vaults + $retrievedVaultsList = Get-AzNetAppFilesVault -ResourceGroupName $resourceGroup -AccountName $accName1 + $backupObject = @{ + VaultId = $retrievedVaultsList[0].Id + BackupEnabled = $true + PolicyEnforced = $true + } + # volume update with backup policy + $retrievedVolume = Update-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Backup $backupObject + + # create and check Backup + $retrievedBackup = New-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 -Label $label + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName1" $retrievedBackup.Name + # service side issue does not return label enable when fixed (ANF-8057) + #Assert-AreEqual $label $retrievedBackup.Label + + # get and check a Backup by name and check again + $getRetrievedBackup = Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName1" $getRetrievedBackup.Name + # service side issue does not return label enable when fixed (ANF-8057) + # Assert-AreEqual $label $getRetrievedBackup.Label + + #create second Backup + $secondBackup = New-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName2 -Label $label2 + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName2" $secondBackup.Name + # service side issue does not return label enable when fixed (ANF-8057) + # Assert-AreEqual $label $secondBackup.Label2 + + # get and check Backup by Volume (list) + $retrievedBackupsList = Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 + # check the names but the order does not appear to be guaranteed (perhaps because the names are randomly generated) + Assert-AreEqual 2 $retrievedBackupsList.Length + Assert-True {"$accName1/$poolName/$volName1/$backupName1" -eq $retrievedBackupsList[0].Name -or "$accName1/$poolName/$volName1/$backupName2" -eq $retrievedBackupsList[0].Name} + Assert-True {"$accName1/$poolName/$volName1/$backupName1" -eq $retrievedBackupsList[1].Name -or "$accName1/$poolName/$volName1/$backupName2" -eq $retrievedBackupsList[1].Name} + + # get and check a Backup by name + $getRetrievedBackup = Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName1" $getRetrievedBackup.Name + + # get and check the Backup again using the resource id just obtained + $getRetrievedBackupById = Get-AzNetAppFilesBackup -ResourceId $getRetrievedBackup.Id + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName1" $getRetrievedBackupById.Name + + # delete one Backup retrieved by id and one by name and check removed + Remove-AzNetAppFilesBackup -ResourceId $getRetrievedBackupById.Id + + # but test the WhatIf first, should not be removed + Remove-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName2 -WhatIf + $retrievedBackupsList = Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 + Assert-AreEqual 1 $retrievedBackupsList.Length + + #remove by name + Remove-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName2 + $retrievedBackupsList = Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 + Assert-AreEqual 0 $retrievedBackupsList.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test Backup Pipeline operations (uses command aliases) +#> +function Test-BackupPipelines +{ + $resourceGroup = Get-ResourceGroupName + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + $accName1 = Get-ResourceName + $accName1 = Get-ResourceName + $volName1 = Get-ResourceName + $backupName1 = Get-ResourceName + $backupName2 = Get-ResourceName + $poolName = Get-ResourceName + $label = "powershellBackupPipelineTest" + $updateLabel = "powershellUpdateBackupPipelineTest" + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" "eastus" -UseCanonical + $backupLocation = "southcentralus" + $subnetName = "default" + $poolSize = 4398046511104 + $serviceLevel = "Premium" + $vnetName = $resourceGroup + "-vnet" + $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $backupLocation + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 + + # create pool + New-AnfPool -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + + # create virtual network + $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $resourceGroup -Location $backupLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzVirtualNetwork + + # create volume by piping from a pool + # account name, pool name and service level are all acquired + $retrievedVolume = Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $poolName | New-AnfVolume -Name $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -SubnetId $subnetId -ServiceLevel $serviceLevel + Assert-AreEqual "$accName1/$poolName/$volName1" $retrievedVolume.Name + Assert-AreEqual "Premium" $retrievedVolume.ServiceLevel + + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + # get check Vaults + $retrievedVaultsList = Get-AzNetAppFilesVault -ResourceGroupName $resourceGroup -AccountName $accName1 + $backupObject = @{ + VaultId = $retrievedVaultsList[0].Id + BackupEnabled = $true + PolicyEnforced = $true + } + # volume update with backup policy + $retrievedVolume = Update-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Backup $backupObject + + # create backup by piping from a Volume + #$retrieveSn = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName | New-AnfSnapshot -SnapshotName $snName1 + $retrievedBackup = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 | New-AnfBackup -BackupName $backupName1 -Label $label + Assert-AreEqual "$accName1/$poolName/$volName1/$backupName1" $retrievedBackup.Name + + # $getRetrievedBackupPolicy = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -Name $volName1 | Get-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $backupName1 + + $updateRetrievedBackup = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -Name $volName1 | Update-AzNetAppFilesBackup -Name $backupName1 -Label $updateLabel + # service side issue does not return label enable when fixed (ANF-8057) + # Assert-AreEqual $updateLabel $updateRetrievedBackup.Label2 + + # get the current number of backups + $retrievedVolume = Get-AnfBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 + $numVolumes = $retrievedVolume.Length + + # delete the backup by piping from backup get + Get-AnfBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 | Remove-AnfBackup + + # and check the backup list by piping from get + $retrievedBackup = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -Name $volName1 | Get-AnfBackup + Assert-AreEqual ($numVolumes-1) $retrievedBackup.Length + + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 index c69fdb45f067..1e6fc6c23022 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 @@ -64,17 +64,19 @@ function Test-PoolCrud # get and check the account again using the resource id just obtained $retrievedPoolById = Get-AzNetAppFilesPool -ResourceId $retrievedPool.Id Assert-AreEqual "$accName/$poolName1" $retrievedPoolById.Name + + $newTagValue = "tagValue1Updated" # update (patch) and check the pool # changing a single item verifies this is a patch not a put - $retrievedPool = Update-AzNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -ServiceLevel "Standard" + $retrievedPool = Update-AzNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -Tag @{$newTagName = $newTagValue} Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name - Assert-AreEqual "Standard" $retrievedPool.ServiceLevel + Assert-AreEqual "tagValue1Updated" $retrievedPool.Tags[$newTagName].ToString() # do it again but change nothing and demonstrate location is optional $retrievedPool = Update-AzNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName1 Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name - Assert-AreEqual "Standard" $retrievedPool.ServiceLevel + Assert-AreEqual "Premium" $retrievedPool.ServiceLevel # delete one account retrieved by id and one by name and check removed Remove-AzNetAppFilesPool -ResourceId $retrievedPoolById.Id @@ -109,7 +111,9 @@ function Test-PoolPipelines $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" $poolSize = 4398046511104 $serviceLevel = "Premium" - + $newTagName = "tag1" + $newTagValue = "tagValue1" + try { # create the resource group @@ -117,14 +121,16 @@ function Test-PoolPipelines # create pool by piping from account New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName | New-AnfPool -Name $poolName1 -PoolSize $poolSize -ServiceLevel $serviceLevel + # modify pool by piping from Pool - $retrievedPool = Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName -Name $poolName1 | Update-AnfPool -ServiceLevel "Standard" - Assert-AreEqual "Standard" $retrievedPool.ServiceLevel - + $retrievedPool = Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName -Name $poolName1 | Update-AnfPool -Tag @{$newTagName = $newTagValue} + Assert-AreEqual "tagValue1" $retrievedPool.Tags[$newTagName].ToString() + Assert-AreEqual $poolSize $retrievedPool.Size + # and again modify pool this time by piping from account - $retrievedPool = Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName | Update-AnfPool -Name $poolName1 -PoolSize $poolSize -ServiceLevel "Premium" - Assert-AreEqual "Premium" $retrievedPool.ServiceLevel + $retrievedPool = Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName | Update-AnfPool -Name $poolName1 -PoolSize $poolSize + Assert-AreEqual $poolSize $retrievedPool.Size # delete a pool by piping from account Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName | Remove-AnfPool -Name $poolName1 diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.cs new file mode 100644 index 000000000000..580925a1d569 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest +{ + public class SnapshotPolicyTests + { + private ServiceManagement.Common.Models.XunitTracingInterceptor _logger; + + public SnapshotPolicyTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSnapshotPolicyCrud() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SnapshotPolicyCrud"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSnapshotPolicyPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SnapshotPolicyPipelines"); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 new file mode 100644 index 000000000000..6bad0bfc6dc6 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 @@ -0,0 +1,172 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Snapshot Policy CRUD operations +#> +function Test-SnapshotPolicyCrud +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $snapshotPolicyName1 = Get-ResourceName + $snapshotPolicyName2 = Get-ResourceName + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + + $hourlySchedule = @{ + Minute = 2 + SnapshotsToKeep = 6 + } + $dailySchedule = @{ + Hour = 1 + Minute = 2 + SnapshotsToKeep = 6 + } + $weeklySchedule = @{ + Minute = 2 + Hour = 1 + Day = "Sunday,Monday" + SnapshotsToKeep = 6 + } + $monthlySchedule = @{ + Minute = 2 + Hour = 1 + DaysOfMonth = "2,11,21" + SnapshotsToKeep = 6 + } + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $resourceLocation + + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedAcc.Name + + # create and check SnapshotPolicy + $retrievedSnapshotPolicy = New-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $snapshotPolicyName1 -Enabled -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule + Assert-AreEqual "$accName/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name + Assert-AreEqual $hourlySchedule["Minute"] $retrievedSnapshotPolicy.HourlySchedule.Minute + Assert-AreEqual $dailySchedule["Hour"] $retrievedSnapshotPolicy.DailySchedule.Hour + Assert-AreEqual $weeklySchedule["Day"] $retrievedSnapshotPolicy.WeeklySchedule.Day + Assert-AreEqual $monthlySchedule["DaysOfMonth"] $retrievedSnapshotPolicy.MonthlySchedule.DaysOfMonth + + # get and check a SnapshotPolicy by name and check again + $getRetrievedSnapshotPolicy = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 + Assert-AreEqual "$accName/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name + Assert-AreEqual $hourlySchedule["Minute"] $getRetrievedSnapshotPolicy.HourlySchedule.Minute + Assert-AreEqual $dailySchedule["Hour"] $getRetrievedSnapshotPolicy.DailySchedule.Hour + Assert-AreEqual $weeklySchedule["Day"] $getRetrievedSnapshotPolicy.WeeklySchedule.Day + Assert-AreEqual $monthlySchedule["DaysOfMonth"] $getRetrievedSnapshotPolicy.MonthlySchedule.DaysOfMonth + + #create second SnapshotPolicy + $secondSnapshotPolicy = New-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $snapshotPolicyName2 -Enabled -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule + Assert-AreEqual "$accName/$snapshotPolicyName2" $secondSnapshotPolicy.Name + Assert-AreEqual $hourlySchedule["Minute"] $secondSnapshotPolicy.HourlySchedule.Minute + Assert-AreEqual $dailySchedule["Hour"] $secondSnapshotPolicy.DailySchedule.Hour + Assert-AreEqual $weeklySchedule["Day"] $secondSnapshotPolicy.WeeklySchedule.Day + Assert-AreEqual $monthlySchedule["DaysOfMonth"] $secondSnapshotPolicy.MonthlySchedule.DaysOfMonth + + # get and check SnapshotPolicies by Account (list) + $retrievedSnapshotPolicyList = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + # check the names but the order does not appear to be guaranteed (perhaps because the names are randomly generated) + Assert-AreEqual 2 $retrievedSnapshotPolicyList.Length + Assert-True {"$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[0].Name -or "$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[0].Name} + Assert-True {"$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[1].Name -or "$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[1].Name} + + # get and check a SnapshotPolicy by name + $getRetrievedSnapshotPolicy = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 + Assert-AreEqual "$snapshotPolicyName1" $getRetrievedSnapshotPolicy.Name + + # get and check the SnapshotPolicy again using the resource id just obtained + $getRetrievedSnapshotPolicyById = Get-AzNetAppFilesSnapshotPolicy -ResourceId $retrievedSnapshotPolicy.Id + Assert-AreEqual "$snapshotPolicyName1" $getRetrievedSnapshotPolicyById.Name + + # delete one account retrieved by id and one by name and check removed + Remove-AzNetAppFilesSnapshotPolicy -ResourceId $retrievedSnapshotPolicy.Id + + # but test the WhatIf first, should not be removed + Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 -WhatIf + $retrievedSnapshotPolicyList = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 1 $retrievedAcc.Length + + #remove by name + Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 + $retrievedSnapshotPolicyList = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 + Assert-AreEqual 1 $retrievedAcc.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test SnapshotPolicy Pipeline operations (uses command aliases) +#> +function Test-SnapshotPolicyPipelines +{ + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + $accName1 = Get-ResourceName + $snapshotPolicyName1 = Get-ResourceName + $snapshotPolicyName2 = Get-ResourceName + + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $hourlySchedule = @{ + Minute = 2 + SnapshotsToKeep = 6 + } + $dailySchedule = @{ + Hour = 1 + Minute = 2 + SnapshotsToKeep = 6 + } + $weeklySchedule = @{ + Minute = 2 + Hour = 1 + Day = "Sunday,Monday" + SnapshotsToKeep = 6 + } + $monthlySchedule = @{ + Minute = 2 + Hour = 1 + DaysOfMonth = "2,11,21" + SnapshotsToKeep = 6 + } + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $resourceLocation + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedSnapshotPolicy = Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName1 | New-AzNetAppFilesSnapshotPolicy -Name $snapshotPolicyName1 -Tag @{$newTagName = $newTagValue} -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule + + $getRetrievedSnapshotPolicy = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 index 4032ba138e1f..81b72c316d0d 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 @@ -143,7 +143,7 @@ function Test-SnapshotPipelines $retrievedVolume = New-AnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -CreationToken $volName -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId # create a snapshot from the piped volume input - $retrieveSn = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName | New-AnfSnapshot -SnapshotName $snName1 + $retrieveSn = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName | New-AnfSnapshot -SnapshotName $snName1 Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrieveSn.Name # delete the snapshot by piping from snapshot get diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.cs new file mode 100644 index 000000000000..2357c849e1fb --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest +{ + public class VaultTests + { + private ServiceManagement.Common.Models.XunitTracingInterceptor _logger; + + public VaultTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVaultCrud() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-VaultCrud"); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.ps1 new file mode 100644 index 000000000000..595e753f7b74 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VaultTests.ps1 @@ -0,0 +1,50 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Vault CRUD operations +#> +function Test-VaultCrud +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + $resourceGroup = Get-ResourceGroupName + $accName1 = Get-ResourceName + + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" + $backupLocation = "eastus2euap" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $backupLocation + + # try creating an Account - + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedVault = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $backupLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedVault.Name + + # get and check Vaults + $retrievedVaultsList = Get-AzNetAppFilesVault -ResourceGroupName $resourceGroup -AccountName $accName1 + # check the Vault + Assert-AreEqual 1 $retrievedVaultsList.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs index 3a74782a6a30..4606d88af8d6 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs @@ -35,12 +35,19 @@ public void TestVolumeCrud() } //---Note This test will be added to the next (2019-11-01) version --- - //[Fact] - //[Trait(Category.AcceptanceType, Category.CheckIn)] - //public void TestVolumeReplication() - //{ - // TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumeReplication"); - //} + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVolumeReplication() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumeReplication"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVolumePoolChange() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumePoolChange"); + } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 index bba3571e0bc7..36f45a04d035 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 @@ -240,7 +240,7 @@ function Test-VolumeCrud .SYNOPSIS Test VolumeReplication operations (using command aliases) #> -<# ---Note This test will be added to the next (2019-11-01) version --- +<# ---Note This test will be added to the next (2019-11-01) version ---#> function Test-VolumeReplication { $currentSub = (Get-AzureRmContext).Subscription @@ -261,8 +261,9 @@ function Test-VolumeReplication $doubleUsage = 2 * $usageThreshold $srcResourceGroupLocation = "westus2" $destResourceGroupLocation = "southcentralus" - $srcResourceLocation = "westus2stage" - $destResourceLocation = "southcentralusstage" + #$srcResourceLocation = "westus2stage" + $srcResourceLocation = "westus2" + $destResourceLocation = "eastus" $subnetName = "default" $poolSize = 4398046511104 $serviceLevel = "Premium" @@ -313,12 +314,12 @@ function Test-VolumeReplication New-AzResourceGroup -Name $destResourceGroup -Location $destResourceGroupLocation # create virtual network source - $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $srcResourceGroup -Location $srcResourceGroupLocation -Name $srcVnetName -AddressPrefix 10.0.0.0/16 + $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $srcResourceGroup -Location $srcResourceLocation -Name $srcVnetName -AddressPrefix 10.0.0.0/16 $delegation = New-AzDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" Add-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.2.0/24" -Delegation $delegation | Set-AzVirtualNetwork # create virtual network destination - $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $destResourceGroup -Location $destResourceGroupLocation -Name $destVnetName -AddressPrefix 10.0.0.0/16 + $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $destResourceGroup -Location $destResourceLocation -Name $destVnetName -AddressPrefix 10.0.0.0/16 $delegation = New-AzDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" Add-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.2.0/24" -Delegation $delegation | Set-AzVirtualNetwork @@ -330,7 +331,7 @@ function Test-VolumeReplication $srcRetrievedPool = New-AzNetAppFilesPool -ResourceGroupName $srcResourceGroup -Location $srcResourceLocation -AccountName $srcAccName -PoolName $srcPoolName -PoolSize $poolSize -ServiceLevel $serviceLevel $destRetrievedPool = New-AzNetAppFilesPool -ResourceGroupName $destResourceGroup -Location $destResourceLocation -AccountName $destAccName -PoolName $destPoolName -PoolSize $poolSize -ServiceLevel $serviceLevel - # create source volume + # create source volume $sourceVolume = New-AzNetAppFilesVolume -ResourceGroupName $srcResourceGroup -Location $srcResourceLocation -AccountName $srcAccName -PoolName $srcPoolName -VolumeName $srcVolName -CreationToken $srcVolName -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $srcSubnetId #Assert-AreEqual "$srcAccName/$srcPoolName/$srcVolName" $sourceVolume.Name @@ -375,7 +376,7 @@ function Test-VolumeReplication #Start-Sleep -Seconds 30.0 # break the replication again - Suspend-AnfReplication -ResourceGroupName $destResourceGroup -AccountName $destAccName -PoolName $destPoolName -VolumeName $destVolName + Suspend-AnfReplication -ResourceGroupName $destResourceGroup -AccountName $destAccName -PoolName $destPoolName -VolumeName $destVolName -ForceBreak WaitForRepliationStatus "Broken" SleepDuringRecord @@ -384,8 +385,113 @@ function Test-VolumeReplication # delete the data protection object # - initiate delete replication on destination, this then releases on source, both resulting in object deletion Remove-AnfReplication -ResourceGroupName $destResourceGroup -AccountName $destAccName -PoolName $destPoolName -VolumeName $destVolName + } + finally + { + # Cleanup + Clean-ResourceGroup $srcResourceGroup + Clean-ResourceGroup $destResourceGroup + } +} + + +<# +.SYNOPSIS +Test Volume PoolChange operation +#> +function Test-VolumePoolChange +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + + $resourceGroup = Get-ResourceGroupName + $accName = Get-ResourceName + $poolName = Get-ResourceName + $poolName2 = Get-ResourceName + $volName1 = Get-ResourceName + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" "eastus" -UseCanonical + $subnetName = "default" + $poolSize = 4398046511104 + $serviceLevel = "Premium" + $serviceLevelStandard = "Premium" + $vnetName = $resourceGroup + "-vnet" + + $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" + + $rule1 = @{ + RuleIndex = 1 + UnixReadOnly = $false + UnixReadWrite = $true + Cifs = $false + Nfsv3 = $true + Nfsv41 = $false + AllowedClients = '0.0.0.0/0' + } + + + $exportPolicy = @{ + Rules = ( + $rule1 + ) + } + + # create the list of protocol types + $protocolTypes = New-Object string[] 1 + $protocolTypes[0] = "NFSv3" + + try + { + # create the resource group + New-AzResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create virtual network + $virtualNetwork = New-AzVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzVirtualNetwork + + # create account + $retrievedAcc = New-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + # create pools + $retrievedPool = New-AzNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + $retrievedPool2 = New-AzNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName2 -PoolSize $poolSize -ServiceLevel $serviceLevelStandard + + # create volume and check + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedVolume = New-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId -Tag @{$newTagName = $newTagValue} -ExportPolicy $exportPolicy -ProtocolType $protocolTypes + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name + Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel + Assert-AreEqual True $retrievedVolume.Tags.ContainsKey($newTagName) + Assert-AreEqual "tagValue1" $retrievedVolume.Tags[$newTagName].ToString() + Assert-NotNull $retrievedVolume.ExportPolicy + Assert-AreEqual '0.0.0.0/0' $retrievedVolume.ExportPolicy.Rules[0].AllowedClients + Assert-AreEqual $retrievedVolume.ProtocolTypes[0] 'NFSv3' + Assert-NotNull $retrievedVolume.MountTargets + Assert-Null $retrievedVolume.VolumeType + Assert-Null $retrievedVolume.DataProtection + # get and check the volume by name + $retrievedVolume = Get-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name + + # PoolChange and check the volume + $poolChangeResult = PoolChange-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 -NewPoolResourceId $retrievedPool2.Id + + # check GET no change to rest of volume + $retrievedVolume = Get-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 -VolumeName $volName1 + Assert-AreEqual "$accName/$poolName2/$volName1" $retrievedVolume.Name + Assert-AreEqual $serviceLevelStandard $retrievedVolume.ServiceLevel + + # unchanged, not part of the patch + Assert-AreEqual $serviceLevelStandard $retrievedVolume.ServiceLevel + Assert-AreEqual $usageThreshold $retrievedVolume.usageThreshold + #Known Bug tags are missing, https://jira.ngage.netapp.com/browse/NFSAAS-11136 wait for deployment before uncommenting + #Assert-AreEqual True $retrievedVolume.Tags.ContainsKey($newTagName) + #Assert-AreEqual "tagValue1" $retrievedVolume.Tags[$newTagName].ToString() } finally { @@ -393,7 +499,8 @@ function Test-VolumeReplication Clean-ResourceGroup $resourceGroup } } -#> + + <# .SYNOPSIS Test Volume Pipeline operations (using command aliases) diff --git a/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs b/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs index 76b62807ad87..dbe77ca6994c 100644 --- a/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs @@ -84,7 +84,7 @@ public override void ExecuteCmdlet() var netAppAccountBody = new NetAppAccount() { Location = Location, - ActiveDirectories = (ActiveDirectory != null) ? ModelExtensions.ConvertActiveDirectoriesFromPs(ActiveDirectory) : null, + ActiveDirectories = (ActiveDirectory != null) ? ActiveDirectory.ConvertFromPs() : null, Tags = tagPairs }; diff --git a/src/NetAppFiles/NetAppFiles/Account/SetNetAppFilesAccount.cs b/src/NetAppFiles/NetAppFiles/Account/SetNetAppFilesAccount.cs index 3b4b851b1b9f..bf2277387b82 100644 --- a/src/NetAppFiles/NetAppFiles/Account/SetNetAppFilesAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Account/SetNetAppFilesAccount.cs @@ -90,7 +90,7 @@ public override void ExecuteCmdlet() var netAppAccountBody = new NetAppAccount() { Location = Location, - ActiveDirectories = (ActiveDirectory != null) ? ModelExtensions.ConvertActiveDirectoriesFromPs(ActiveDirectory) : new List(), + ActiveDirectories = (ActiveDirectory != null) ? ActiveDirectory.ConvertFromPs() : new List(), Tags = tagPairs }; diff --git a/src/NetAppFiles/NetAppFiles/Account/UpdateNetAppFilesAccount.cs b/src/NetAppFiles/NetAppFiles/Account/UpdateNetAppFilesAccount.cs index b5594a0d76ba..d1c9afb1e7c3 100644 --- a/src/NetAppFiles/NetAppFiles/Account/UpdateNetAppFilesAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Account/UpdateNetAppFilesAccount.cs @@ -114,7 +114,7 @@ public override void ExecuteCmdlet() var netAppAccountBody = new NetAppAccountPatch() { Location = Location, - ActiveDirectories = (ActiveDirectory != null) ? ModelExtensions.ConvertActiveDirectoriesFromPs(ActiveDirectory) : null, + ActiveDirectories = (ActiveDirectory != null) ? ActiveDirectory.ConvertFromPs() : null, Tags =tagPairs, }; diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs new file mode 100644 index 000000000000..6eeaf860ebb4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs @@ -0,0 +1,94 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesActiveDirectory", + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesActiveDirectory))] + [Alias("Get-AnfActicedirectory")] + public class GetAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF Active Directory")] + [ValidateNotNullOrEmpty] + [Alias("ActiveDirectoryName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activedirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Active Directory object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (Name != null) + { + var anfActiveDirectory = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.FirstOrDefault(e => e.AdName == Name); + WriteObject(anfActiveDirectory?.ConvertToPs()); + } + else + { + var anfActiveDirectories = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.ConvertToPs(); + WriteObject(anfActiveDirectories, true); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs new file mode 100644 index 000000000000..491bc7bbee9a --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs @@ -0,0 +1,212 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.NetApp.Models; +using System.Linq; +using System.Collections.Generic; +using System; +using System.Runtime.CompilerServices; +using System.Security; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesActiveDirectory", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesActiveDirectory))] + [Alias("New-AnfActicedirectory")] + public class NewAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/activeDirectory")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF Active Directory")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activeDirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain")] + [ValidateNotNullOrEmpty] + public string[] Dns { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Name of the Active Directory domain")] + [ValidateNotNullOrEmpty] + public string Domain { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Active Directory site the service will limit Domain Controller discovery to")] + [ValidateNotNullOrEmpty] + public string Site { get; set; } + + + [Parameter( + Mandatory = true, + HelpMessage = "NetBIOS name of the SMB server. This name will be registered as a computer account in the AD and used to mount volumes")] + [ValidateNotNullOrEmpty] + public string SmbServerName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Username of Active Directory domain administrator")] + [ValidateNotNullOrEmpty] + public string Username { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Plain text password of Active Directory domain administrator, value is masked in the response")] + [ValidateNotNullOrEmpty] + public SecureString Password { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Organizational Unit (OU) within the Windows Active Directory")] + [ValidateNotNullOrEmpty] + public string OrganizationalUnit { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "kdc server IP addresses for the active directory machine. This optional parameter is used only while creating kerberos volume.")] + [ValidateNotNullOrEmpty] + public string KdcIP { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier")] + [ValidateNotNullOrEmpty] + public string[] BackupOperators { get; set; } + + + [Parameter( + Mandatory = false, + HelpMessage = "When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes.")] + [ValidateNotNullOrEmpty] + public string ServerRootCACertificate { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Name of the active directory machine. This optional parameter is used only while creating kerberos volume")] + [ValidateNotNullOrEmpty] + public string AdName { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Backup Policy object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + + var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); + if (anfAccount == null) + { + throw new ArgumentException($"Specified NetAppAccount with name '{this.Name}' does not extist in Resource Group '{this.ResourceGroupName}'"); + } + + + if (anfAccount.ActiveDirectories?.FirstOrDefault(a => a.AdName == Name) != null) + { + throw new ArgumentException($"A ActiveDirectory resource with name '{this.Name}' in account '{this.AccountName}' already exists. Please use Set/Update-AzNetAppFilesActiveDirectory to update an existing ActiveDirectory resource."); + } + else + { + var activeDirectory = new Management.NetApp.Models.ActiveDirectory + { + AdName = Name, + Dns = string.Join(",", Dns), + Domain = Domain, + SmbServerName = SmbServerName, + Username = Username, + Password = Password.ConvertToString(), + Site = Site, + OrganizationalUnit = OrganizationalUnit, + BackupOperators = BackupOperators, + KdcIP = KdcIP, + ServerRootCACertificate = ServerRootCACertificate + }; + if (anfAccount.ActiveDirectories == null) + { + anfAccount.ActiveDirectories = new List(); + } + anfAccount.ActiveDirectories.Add(activeDirectory); + var netAppAccountBody = new NetAppAccountPatch() + { + Location = Location, + ActiveDirectories = anfAccount.ActiveDirectories + }; + var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); + var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.AdName == Name); + WriteObject(updatedActiveDirectory.ConvertToPs()); + } + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs new file mode 100644 index 000000000000..d84192097af8 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs @@ -0,0 +1,104 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesActiveDirectory", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesActiveDirectory))] + [Alias("Remove-AnfActiveDirectory")] + public class RemoveAzureRmNetAppFilesActiveDirectory: AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF Active Directory")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activeDirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the Active Directory object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified Active Directory was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); + var activeDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.AdName == Name); + anfAccount.ActiveDirectories.Remove(activeDirectory); + var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.BeginCreateOrUpdate(anfAccount, ResourceGroupName, AccountName); + success = true; + } + if (PassThru) + { + WriteObject(success); + } + + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..505b362c79c0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs @@ -0,0 +1,236 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; +using System; +using System.Collections.Generic; +using Microsoft.Azure.Management.NetApp.Models; +using System.Security; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesActiveDirectory", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesActiveDirectory))] + [Alias("Update-AnfActiveDirectory")] + public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/activeDirectory")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF Active Directory")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activeDirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain")] + [ValidateNotNullOrEmpty] + public string[] Dns { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Name of the Active Directory domain")] + [ValidateNotNullOrEmpty] + public string Domain { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The Active Directory site the service will limit Domain Controller discovery to")] + [ValidateNotNullOrEmpty] + public string Site { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "NetBIOS name of the SMB server. This name will be registered as a computer account in the AD and used to mount volumes")] + [ValidateNotNullOrEmpty] + public string SmbServerName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Username of Active Directory domain administrator")] + [ValidateNotNullOrEmpty] + public string Username { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Plain text password of Active Directory domain administrator, value is masked in the response")] + [ValidateNotNullOrEmpty] + public SecureString Password { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The Organizational Unit (OU) within the Windows Active Directory")] + [ValidateNotNullOrEmpty] + public string OrganizationalUnit { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "kdc server IP addresses for the active directory machine. This optional parameter is used only while creating kerberos volume.")] + [ValidateNotNullOrEmpty] + public string KdcIP { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier")] + [ValidateNotNullOrEmpty] + public string[] BackupOperators { get; set; } + + + [Parameter( + Mandatory = false, + HelpMessage = "When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes.")] + [ValidateNotNullOrEmpty] + public string ServerRootCACertificate { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Name of the active directory machine. This optional parameter is used only while creating kerberos volume")] + [ValidateNotNullOrEmpty] + public string AdName { get; set; } + + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The account for the active directory object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + IDictionary tagPairs = null; + + if (Tag != null) + { + tagPairs = new Dictionary(); + + foreach (string key in Tag.Keys) + { + tagPairs.Add(key, Tag[key].ToString()); + } + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); + if (anfAccount == null) + { + throw new ArgumentException("Specified NetAppAccount does not extist"); + } + + var activeDirectory = new Management.NetApp.Models.ActiveDirectory + { + AdName = Name, + Dns = string.Join(",", Dns), + Domain = Domain, + SmbServerName = SmbServerName, + Username = Username, + Password = Password.ConvertToString(), + Site = Site, + OrganizationalUnit = OrganizationalUnit, + BackupOperators = BackupOperators, + KdcIP = KdcIP, + ServerRootCACertificate = ServerRootCACertificate + }; + + var newActiveDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.ActiveDirectoryId == Name); + if (newActiveDirectory != null) + { + newActiveDirectory.AdName = Name; + newActiveDirectory.Dns = string.Join(",", Dns); + newActiveDirectory.Domain = Domain; + newActiveDirectory.SmbServerName = SmbServerName; + newActiveDirectory.Username = Username; + newActiveDirectory.Password = Password.ConvertToString(); + newActiveDirectory.Site = Site; + newActiveDirectory.OrganizationalUnit = OrganizationalUnit; + newActiveDirectory.BackupOperators = BackupOperators; + newActiveDirectory.KdcIP = KdcIP; + newActiveDirectory.ServerRootCACertificate = ServerRootCACertificate; + } + else + { + anfAccount.ActiveDirectories.Add(activeDirectory); + } + var netAppAccountBody = new NetAppAccountPatch() + { + Location = Location, + ActiveDirectories = anfAccount.ActiveDirectories, + Tags = tagPairs + }; + var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); + var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.AdName == Name); + WriteObject(updatedActiveDirectory.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 8832ae70baa1..b226330b3a6f 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -82,12 +82,22 @@ CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', 'New-AzNetAppFilesVolume', 'Remove-AzNetAppFilesVolume', 'Update-AzNetAppFilesVolume', 'Get-AzNetAppFilesSnapshot', 'New-AzNetAppFilesSnapshot', 'Remove-AzNetAppFilesSnapshot', - 'Approve-AzNetAppFilesReplication', + 'Approve-AzNetAppFilesReplication', 'Get-AzNetAppFilesReplicationStatus', 'Suspend-AzNetAppFilesReplication', 'Remove-AzNetAppFilesReplication', 'Resume-AzNetAppFilesReplication', - 'Restore-AzNetAppFilesVolume' + 'Restore-AzNetAppFilesVolume', + 'PoolChange-AzNetAppFilesVolume', + 'New-AzNetAppFilesSnapshotPolicy', 'Get-AzNetAppFilesSnapshotPolicy', + 'Update-AzNetAppFilesSnapshotPolicy','Remove-AzNetAppFilesSnapshotPolicy', + 'New-AzNetAppFilesBackupPolicy', 'Get-AzNetAppFilesBackupPolicy', + 'Update-AzNetAppFilesBackupPolicy','Remove-AzNetAppFilesBackupPolicy', + 'New-AzNetAppFilesBackup', 'Get-AzNetAppFilesBackup', + 'Update-AzNetAppFilesBackup','Remove-AzNetAppFilesBackup', + 'Get-AzNetAppFilesVault', + 'New-AzNetAppFilesActiveDirectory', 'Get-AzNetAppFilesActiveDirectory', + 'Update-AzNetAppFilesActiveDirectory','Remove-AzNetAppFilesActiveDirectory' # Variables to export from this module # VariablesToExport = @() @@ -96,11 +106,23 @@ CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', AliasesToExport = 'Get-AnfAccount', 'New-AnfAccount', 'Remove-AnfAccount', 'Set-AnfAccount', 'Update-AnfAccount', 'Get-AnfPool', 'New-AnfPool', 'Update-AnfPool', 'Remove-AnfPool', 'Get-AnfVolume', 'New-AnfVolume', - 'Remove-AnfVolume', 'Update-AnfVolume', 'Get-AnfSnapshot', - 'New-AnfSnapshot', 'Remove-AnfSnapshot', 'Approve-AnfReplication', + 'Remove-AnfVolume', 'Update-AnfVolume', + 'Get-AnfSnapshot', + 'New-AnfSnapshot', 'Remove-AnfSnapshot', + 'Approve-AnfReplication', 'Get-AnfReplicationStatus', 'Suspend-AnfReplication', 'Remove-AnfReplication', 'Resume-AnfReplication', - 'Restore-AnfVolume' + 'Restore-AnfVolume', + 'PoolChange-AnfVolume', + 'Get-AnfSnapshotPolicy','New-AnfSnapshotPolicy', + 'Remove-AnfSnapshotPolicy','Update-AnfSnapshotPolicy', + 'Get-AnfBackupPolicy','New-AnfBackupPolicy', + 'Remove-AnfBackupPolicy','Update-AnfBackupPolicy', + 'Get-AnfBackup','New-AnfBackup', + 'Remove-AnfBackup','Update-AnfBackup', + 'Get-AnfSnapshotPolicy', + 'Get-AnfActiveDirectory','New-AnfActiveDirectory', + 'Remove-AnfActiveDirectory','Update-AnfActiveDirectory' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/GetNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/GetNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..02ba7229218d --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/GetNetAppFilesBackupPolicy.cs @@ -0,0 +1,110 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackupPolicy", + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Get-AnfBackupPolicy")] + public class GetAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF backup policy")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backupPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account object containing the Backup Policy to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (Name != null) + { + var anfBackupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Get(ResourceGroupName, AccountName, backupPolicyName: Name); + WriteObject(anfBackupPolicy.ConvertToPs()); + } + else + { + var anfBackupPolicies = AzureNetAppFilesManagementClient.BackupPolicies.List(ResourceGroupName, AccountName).Select(e => e.ConvertToPs()); + WriteObject(anfBackupPolicies, true); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..c8da2c78b3c1 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs @@ -0,0 +1,145 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Monitor.Version2018_09_01.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackupPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("New-AnfBackupPolicy")] + public class NewAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/backupPolicies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backupPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The property to decide policy is enabled or not")] + [ValidateNotNullOrEmpty] + public SwitchParameter Enabled { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Daily backups count to keep")] + [ValidateNotNullOrEmpty] + public int? DailyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Weekly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? WeeklyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Monthly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? MonthlyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Yearly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? YearlyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account object for the new Backup Policy")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + var backupPolicyBody = new Management.NetApp.Models.BackupPolicy() + { + Location = Location, + Enabled = Enabled, + DailyBackupsToKeep = DailyBackupsToKeep, + WeeklyBackupsToKeep = WeeklyBackupsToKeep, + MonthlyBackupsToKeep = MonthlyBackupsToKeep, + YearlyBackupsToKeep = YearlyBackupsToKeep + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfBackupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Create(ResourceGroupName, AccountName, backupPolicyName: Name, backupPolicyBody); + WriteObject(anfBackupPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..586705b0cf91 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs @@ -0,0 +1,133 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackupPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Remove-AnfBackupPolicy")] + public class RemoveAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backupPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account object containing the Backup Policy to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The BackupPolicy object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesBackupPolicy InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified backup policy was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + AzureNetAppFilesManagementClient.BackupPolicies.Delete(ResourceGroupName, AccountName, backupPolicyName: Name); + success = true; + } + if (PassThru) + { + WriteObject(success); + } + + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..68bdcf04272f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs @@ -0,0 +1,170 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackupPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Update-AnfBackupPolicy")] + public class UpdateAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/backupPolicies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backupPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Daily backups count to keep")] + [ValidateNotNullOrEmpty] + public int? DailyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Weekly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? WeeklyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Monthly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? MonthlyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Yearly backups count to keep")] + [ValidateNotNullOrEmpty] + public int? YearlyBackupsToKeep { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account object containing the Backup Policy to update")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The BackupPolicy object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesBackupPolicy InputObject { get; set; } + + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + var backupPolicyPatch = new Management.NetApp.Models.BackupPolicyPatch() + { + Location = Location, + DailyBackupsToKeep = DailyBackupsToKeep, + WeeklyBackupsToKeep = WeeklyBackupsToKeep, + MonthlyBackupsToKeep = MonthlyBackupsToKeep, + YearlyBackupsToKeep = YearlyBackupsToKeep + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfBakcupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Update(ResourceGroupName, AccountName, backupPolicyName: Name, backupPolicyPatch); + WriteObject(anfBakcupPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Backups/GetNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/GetNetAppFilesBackup.cs new file mode 100644 index 000000000000..951d91f54a1c --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/GetNetAppFilesBackup.cs @@ -0,0 +1,139 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Backup +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackup", + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackup))] + [Alias("Get-AnfBackup")] + public class GetAzureRmNetAppFilesBackup: AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string VolumeName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF backup")] + [ValidateNotNullOrEmpty] + [Alias("BackupName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backups", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName), + nameof(VolumeName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume object containing the backup to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + VolumeName = parentResources[5]; + Name = resourceIdentifier.ResourceName; + } + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeObject.ResourceGroupName; + var NameParts = VolumeObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + } + + if (Name != null) + { + var anfBackup = AzureNetAppFilesManagementClient.Backups.Get(ResourceGroupName, AccountName, backupName: Name, poolName: PoolName, volumeName: VolumeName); + WriteObject(anfBackup.ConvertToPs()); + } + else + { + var anfBackups = AzureNetAppFilesManagementClient.Backups.List(ResourceGroupName, accountName: AccountName, poolName: PoolName, volumeName: VolumeName).Select(e => e.ConvertToPs()); + WriteObject(anfBackups, true); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs new file mode 100644 index 000000000000..4370105c41d1 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs @@ -0,0 +1,136 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; + +namespace Microsoft.Azure.Commands.NetAppFiles.Backup +{ + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackup", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackup))] + [Alias("New-AnfBackup")] + public class NewAzureRmNetAppFilesBackup : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string VolumeName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup")] + [ValidateNotNullOrEmpty] + [Alias("BackupName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName), + nameof(VolumeName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Label for backup")] + [ValidateNotNullOrEmpty] + public string Label { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume for the new backup object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeObject.ResourceGroupName; + Location = VolumeObject.Location; + var NameParts = VolumeObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + } + + var backupBody = new Management.NetApp.Models.Backup() + { + Location = Location, + Label = Label + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfBackupPolicy = AzureNetAppFilesManagementClient.Backups.Create(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, backupBody); + WriteObject(anfBackupPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs new file mode 100644 index 000000000000..61126b96f763 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs @@ -0,0 +1,163 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Backup +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackup", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Remove-AnfBackup")] + public class RemoveAzureRmNetAppFilesBackup : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string VolumeName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF backup")] + [ValidateNotNullOrEmpty] + [Alias("BackupName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backups", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName), + nameof(VolumeName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume object containing the backup to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The snapshot object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesBackup InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified backup was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + VolumeName = parentResources[5]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeObject.ResourceGroupName; + var NameParts = VolumeObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + AzureNetAppFilesManagementClient.Backups.Delete(ResourceGroupName, AccountName, backupName: Name, poolName: PoolName, volumeName: VolumeName); + success = true; + } + if (PassThru) + { + WriteObject(success); + } + + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs new file mode 100644 index 000000000000..5fa2ef71fc24 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs @@ -0,0 +1,188 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.NetAppFiles.Backup +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesBackup", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Update-AnfBackup")] + public class UpdateAzureRmNetAppFilesBackup : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/backupPolicies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy")] + [ValidateNotNullOrEmpty] + [Alias("BackupPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/backupPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string VolumeName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Label for backup")] + [ValidateNotNullOrEmpty] + public string Label { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Backup")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume object containing the backup to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The snapshot object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesBackup InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + VolumeName = parentResources[5]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeObject.ResourceGroupName; + var NameParts = VolumeObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + } + IDictionary tagPairs = null; + + if (Tag != null) + { + tagPairs = new Dictionary(); + + foreach (string key in Tag.Keys) + { + tagPairs.Add(key, Tag[key].ToString()); + } + } + + var backupPatch = new Management.NetApp.Models.BackupPatch() + { + Label = Label, + Tags = tagPairs + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfBakcupPolicy = AzureNetAppFilesManagementClient.Backups.Update(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, backupPatch); + WriteObject(anfBakcupPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 302c581551c4..9cdd79c8f52d 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -19,6 +19,50 @@ --> ## Upcoming Release +## Version 0.1.7 +* Add new Backup Policy cmdlets: + - `Get-AzNetAppFilesBackupPolicy` + - `New-AzNetAppFilesBackupPolicy` + - `Remove-AzNetAppFilesBackupPolicy` + - `Update-AzNetAppFilesBackupPolicy` +* Add new Snapshot Policy cmdlets: + - `Get-AzNetAppFilesBackupPolicy` + - `New-AzNetAppFilesBackupPolicy` + - `Remove-AzNetAppFilesBackupPolicy` + - `Update-AzNetAppFilesBackupPolicy` +* Add new Backup cmdlets: + - `Get-AzNetAppFilesBackup` + - `New-AzNetAppFilesBackup` + - `Remove-AzNetAppFilesBackup` + - `Update-AzNetAppFilesBackup` +* Add new Active Directory cmdlets: + - `Get-AzNetAppFilesActiveDirectory` + - `New-AzNetAppFilesActiveDirectory` + - `Remove-AzNetAppFilesActiveDirectory` + - `Update-AzNetAppFilesActiveDirectory` +* Add new `Get-AzNetAppFilesVault` cmdlet (use for backups, vaults currently only support getting list of vaults): +* Add new PoolChange-AzNetAppFilesVolume cmdlet, to move volume to another pool +* Add new PoolChange-AzNetAppFilesVolume cmdlet, to move volume to another pool +* Add parameters to `New-AzNetAppFilesVolume` + - Backup to to enable Backups and Backup Policy + - Snapshot to enable Snapshot Policy + - totalThroughputMips + - SnapshotDirectoryVisible + - BackupId + - SecurityStyle + - KerberosEnabled +* Add paramters to `Update-AzNetAppFilesVolume` + - Backup to to enable Backups and Backup Policy + - totalThroughputMips +* Add property StatusDetails to Account +* Add properties to support LDAP over SSL/TLS to ActiveDirectory +* Add properties to support Kerberos to ExportPolicy rule +* Add QosType parameter to Pool `New-AzNetAppFilesPool` and `Update-AzNetAppFilesPool` +* Breaking Removed ServiecLevel from `Update-AzNetAppFilesPool` as that updating servie level is not supported +* Add `Reinitialize-AzNetAppFilesReplication` cmdLet +* Add ForceBreak parameter to `Suspend-AzNetAppFilesReplication` to force break the replication if replication is in status transferring + + ## Version 0.1.6 * Added SnapshotId parameter to New-NetAppFilesVolume to create volume from a snapshot * Added Restore-AzNetAppFilesVolume to restore/revert a volume to one of its snapshots diff --git a/src/NetAppFiles/NetAppFiles/Helpers/BackupExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/BackupExtensions.cs new file mode 100644 index 000000000000..a1f3bfb28c70 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Helpers/BackupExtensions.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetApp.Models; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Helpers +{ + public static class BackupExtensions + { + public static PSNetAppFilesBackup ConvertToPs(this Management.NetApp.Models.Backup backup) + { + var psBackup = new PSNetAppFilesBackup + { + ResourceGroupName = new ResourceIdentifier(backup.Id).ResourceGroupName, + Location = backup.Location, + Id = backup.Id, + Name = backup.Name, + //not in yet was missing from swagger BackupId = backup.BackupId, + Type = backup.Type, + BackupType = backup.Type, + Label = backup.Label, + ProvisioningState = backup.ProvisioningState, + Size = backup.Size + }; + return psBackup; + } + + public static List ConvertToPS(this IList volumeBackups) + { + return volumeBackups.Select(e => e.ConvertToPs()).ToList(); + } + + } +} diff --git a/src/NetAppFiles/NetAppFiles/Helpers/BackupPolicyExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/BackupPolicyExtensions.cs new file mode 100644 index 000000000000..74cbc519890d --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Helpers/BackupPolicyExtensions.cs @@ -0,0 +1,63 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetApp.Models; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Helpers +{ + public static class BackupPolicyExtensions + { + public static PSNetAppFilesBackupPolicy ConvertToPs(this Management.NetApp.Models.BackupPolicy backupPolicy) + { + var psBackupPolicy = new PSNetAppFilesBackupPolicy + { + ResourceGroupName = new ResourceIdentifier(backupPolicy.Id).ResourceGroupName, + Location = backupPolicy.Location, + Id = backupPolicy.Id, + Name = backupPolicy.Name, + Type = backupPolicy.Type, + Tags = backupPolicy.Tags, + ProvisioningState = backupPolicy.ProvisioningState, + BackupPolicyId = backupPolicy.Id, + DailyBackupsToKeep = backupPolicy.DailyBackupsToKeep, + WeeklyBackupsToKeep = backupPolicy.WeeklyBackupsToKeep, + MonthlyBackupsToKeep = backupPolicy.MonthlyBackupsToKeep, + VolumeBackups = (backupPolicy.VolumeBackups !=null) ? backupPolicy.VolumeBackups.ConvertToPS() : null, + VolumesAssigned = backupPolicy.VolumesAssigned, + Enabled = backupPolicy.Enabled, + }; + return psBackupPolicy; + } + + public static List ConvertToPS(this IList volumeBackups) + { + return volumeBackups.Select(e => e.ConvertToPs()).ToList(); + } + + public static PSNetAppFilesVolumeBackup ConvertToPs(this Management.NetApp.Models.VolumeBackups volumeBackup) + { + var psVolumeBackup = new PSNetAppFilesVolumeBackup() + { + BackupsCount = volumeBackup.BackupsCount, + PolicyEnabled = volumeBackup.PolicyEnabled, + VolumeName = volumeBackup.VolumeName + }; + return psVolumeBackup; + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs index 2a84375d3099..ad3207a193e2 100644 --- a/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs +++ b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs @@ -22,47 +22,51 @@ namespace Microsoft.Azure.Commands.NetAppFiles.Helpers { public static class ModelExtensions { - public static List ConvertActiveDirectoriesFromPs(PSNetAppFilesActiveDirectory[] psActiveDirectories) + public static List ConvertFromPs(this PSNetAppFilesActiveDirectory[] psActiveDirectories) { - return psActiveDirectories.Select(psActiveDirectory => new ActiveDirectory + return psActiveDirectories.Select(psActiveDirectory => new Management.NetApp.Models.ActiveDirectory { // ActiveDirectoryId Username = psActiveDirectory.Username, Password = psActiveDirectory.Password, Domain = psActiveDirectory.Domain, - Dns = psActiveDirectory.Dns, - Status = psActiveDirectory.Status, + Dns = psActiveDirectory.Dns, SmbServerName = psActiveDirectory.SmbServerName, OrganizationalUnit = psActiveDirectory.OrganizationalUnit, Site = psActiveDirectory.Site, - BackupOperators = psActiveDirectory.BackupOperators + BackupOperators = psActiveDirectory.BackupOperators, + KdcIP = psActiveDirectory.KdcIP, + AdName = psActiveDirectory.AdName, + ServerRootCACertificate = psActiveDirectory.ServerRootCACertificate + }).ToList(); } - public static List ConvertActiveDirectoriesToPs(IList ActiveDirectories) + public static List ConvertToPs(this IList activeDirectories) { - List PsActiveDirectories = new List(); + return activeDirectories.Select(e => e.ConvertToPs()).ToList(); + } - foreach (var ActiveDirectory in ActiveDirectories) + public static PSNetAppFilesActiveDirectory ConvertToPs(this Management.NetApp.Models.ActiveDirectory activeDirectory) + { + var psActiveDirectory = new PSNetAppFilesActiveDirectory { - PSNetAppFilesActiveDirectory PsActiveDirectory = new PSNetAppFilesActiveDirectory - { - ActiveDirectoryId = ActiveDirectory.ActiveDirectoryId, - Username = ActiveDirectory.Username, - Password = ActiveDirectory.Password, - Domain = ActiveDirectory.Domain, - Dns = ActiveDirectory.Dns, - Status = ActiveDirectory.Status, - SmbServerName = ActiveDirectory.SmbServerName, - OrganizationalUnit = ActiveDirectory.OrganizationalUnit, - Site = ActiveDirectory.Site, - BackupOperators = ActiveDirectory.BackupOperators - }; - - PsActiveDirectories.Add(PsActiveDirectory); - } - - return PsActiveDirectories; + ActiveDirectoryId = activeDirectory.ActiveDirectoryId, + Username = activeDirectory.Username, + Password = activeDirectory.Password, + Domain = activeDirectory.Domain, + Dns = activeDirectory.Dns, + Status = activeDirectory.Status, + StatusDetails = activeDirectory.StatusDetails, + SmbServerName = activeDirectory.SmbServerName, + OrganizationalUnit = activeDirectory.OrganizationalUnit, + Site = activeDirectory.Site, + BackupOperators = activeDirectory.BackupOperators, + KdcIP = activeDirectory.KdcIP, + AdName = activeDirectory.AdName, + ServerRootCACertificate = activeDirectory.ServerRootCACertificate + }; + return psActiveDirectory; } public static PSNetAppFilesAccount ToPsNetAppFilesAccount(this NetAppAccount netAppAccount) @@ -75,7 +79,7 @@ public static PSNetAppFilesAccount ToPsNetAppFilesAccount(this NetAppAccount net Name = netAppAccount.Name, Type = netAppAccount.Type, Tags = netAppAccount.Tags, - ActiveDirectories = (netAppAccount.ActiveDirectories != null) ? ConvertActiveDirectoriesToPs(netAppAccount.ActiveDirectories) : null, + ActiveDirectories = (netAppAccount.ActiveDirectories != null) ? netAppAccount.ActiveDirectories.ConvertToPs() : null, ProvisioningState = netAppAccount.ProvisioningState }; } @@ -93,7 +97,10 @@ public static PSNetAppFilesPool ToPsNetAppFilesPool(this CapacityPool capacityPo PoolId = capacityPool.PoolId, Size = capacityPool.Size, ServiceLevel = capacityPool.ServiceLevel, - ProvisioningState = capacityPool.ProvisioningState + ProvisioningState = capacityPool.ProvisioningState, + QosType = capacityPool.QosType, + TotalThroughputMibps = capacityPool.TotalThroughputMibps, + UtilizedThroughputMibps = capacityPool.UtilizedThroughputMibps }; } @@ -111,7 +118,14 @@ public static VolumePatchPropertiesExportPolicy ConvertExportPolicyPatchFromPs(P Cifs = rule.Cifs, Nfsv3 = rule.Nfsv3, Nfsv41 = rule.Nfsv41, - AllowedClients = rule.AllowedClients + AllowedClients = rule.AllowedClients, + HasRootAccess = rule.HasRootAccess, + Kerberos5iReadOnly = rule.Kerberos5iReadOnly, + Kerberos5iReadWrite = rule.Kerberos5iReadWrite, + Kerberos5pReadOnly = rule.Kerberos5pReadOnly, + Kerberos5pReadWrite = rule.Kerberos5pReadWrite, + Kerberos5ReadOnly = rule.Kerberos5ReadOnly, + Kerberos5ReadWrite = rule.Kerberos5ReadWrite }; exportPolicy.Rules.Add(exportPolicyRule); @@ -134,7 +148,14 @@ public static VolumePropertiesExportPolicy ConvertExportPolicyFromPs(PSNetAppFil Cifs = rule.Cifs, Nfsv3 = rule.Nfsv3, Nfsv41 = rule.Nfsv41, - AllowedClients = rule.AllowedClients + AllowedClients = rule.AllowedClients, + HasRootAccess = rule.HasRootAccess, + Kerberos5iReadOnly = rule.Kerberos5iReadOnly, + Kerberos5iReadWrite = rule.Kerberos5iReadWrite, + Kerberos5pReadOnly = rule.Kerberos5pReadOnly, + Kerberos5pReadWrite = rule.Kerberos5pReadWrite, + Kerberos5ReadOnly = rule.Kerberos5ReadOnly, + Kerberos5ReadWrite = rule.Kerberos5ReadWrite }; exportPolicy.Rules.Add(exportPolicyRule); @@ -158,7 +179,14 @@ public static PSNetAppFilesVolumeExportPolicy ConvertExportPolicyToPs(VolumeProp Cifs = Rule.Cifs, Nfsv3 = Rule.Nfsv3, Nfsv41 = Rule.Nfsv41, - AllowedClients = Rule.AllowedClients + AllowedClients = Rule.AllowedClients, + HasRootAccess = Rule.HasRootAccess, + Kerberos5iReadOnly = Rule.Kerberos5iReadOnly, + Kerberos5iReadWrite = Rule.Kerberos5iReadWrite, + Kerberos5pReadOnly = Rule.Kerberos5pReadOnly, + Kerberos5pReadWrite = Rule.Kerberos5pReadWrite, + Kerberos5ReadOnly = Rule.Kerberos5ReadOnly, + Kerberos5ReadWrite = Rule.Kerberos5ReadWrite }; rules.Add(PsExportPolicyRule); } @@ -183,12 +211,23 @@ public static PSNetAppFilesVolumeDataProtection ConvertDataProtectionToPs(Volume { var snapshot = new PSNetAppFilesVolumeSnapshot(); snapshot.SnapshotPolicyId = DataProtection.Snapshot.SnapshotPolicyId; + psDataProtection.Snapshot = snapshot; + } + if (DataProtection.Backup != null) + { + var psBackupProps = new PSNetAppFilesVolumeBackupProperties() + { + BackupEnabled = DataProtection.Backup.BackupEnabled, + BackupPolicyId = DataProtection.Backup.BackupPolicyId, + PolicyEnforced = DataProtection.Backup.PolicyEnforced, + VaultId = DataProtection.Backup.VaultId + }; + psDataProtection.Backup = psBackupProps; } return psDataProtection; } - public static VolumePropertiesDataProtection ConvertDataProtectionFromPs(PSNetAppFilesVolumeDataProtection psDataProtection) { var dataProtection = new VolumePropertiesDataProtection(); @@ -208,10 +247,37 @@ public static VolumePropertiesDataProtection ConvertDataProtectionFromPs(PSNetAp { var snapshot = new VolumeSnapshotProperties(); snapshot.SnapshotPolicyId = psDataProtection.Snapshot.SnapshotPolicyId; + dataProtection.Snapshot = snapshot; + } + + if (psDataProtection.Backup != null) + { + var backup = new VolumeBackupProperties(); + backup.BackupEnabled = psDataProtection.Backup.BackupEnabled; + backup.BackupPolicyId = psDataProtection.Backup.BackupPolicyId; + backup.PolicyEnforced = psDataProtection.Backup.PolicyEnforced; + dataProtection.Backup = backup; + } + return dataProtection; + } + + public static VolumePatchPropertiesDataProtection ConvertToPatchFromPs(this PSNetAppFilesVolumeDataProtection psDataProtection) + { + var dataProtection = new VolumePatchPropertiesDataProtection(); + + if (psDataProtection.Backup != null) + { + var backup = new VolumeBackupProperties(); + backup.BackupEnabled = psDataProtection.Backup.BackupEnabled; + backup.BackupPolicyId = psDataProtection.Backup.BackupPolicyId; + backup.PolicyEnforced = psDataProtection.Backup.PolicyEnforced; + backup.VaultId = psDataProtection.Backup.VaultId; + dataProtection.Backup = backup; } return dataProtection; } + public static PSNetAppFilesVolume ToPsNetAppFilesVolume(this Management.NetApp.Models.Volume volume) { return new PSNetAppFilesVolume @@ -235,7 +301,12 @@ public static PSNetAppFilesVolume ToPsNetAppFilesVolume(this Management.NetApp.M CreationToken = volume.CreationToken, VolumeType = volume.VolumeType, DataProtection = (volume.DataProtection != null) ? ConvertDataProtectionToPs(volume.DataProtection) : null, - IsRestoring = volume.IsRestoring + IsRestoring = volume.IsRestoring, + SnapshotDirectoryVisible = volume.SnapshotDirectoryVisible, + BackupId = volume.BackupId, + SecurityStyle = volume.SecurityStyle, + ThroughputMibps = volume.ThroughputMibps, + KerberosEnabled = volume.KerberosEnabled }; } diff --git a/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs new file mode 100644 index 000000000000..469f774f8956 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs @@ -0,0 +1,149 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetApp.Models; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Helpers +{ + public static class SnapshotPolicyExtensions + { + #region SnapshotPolicy + public static PSNetAppFilesSnapshotPolicy ConvertToPs(this Management.NetApp.Models.SnapshotPolicy snapshotPolicy) + { + var psSnapshotPolicy = new PSNetAppFilesSnapshotPolicy + { + ResourceGroupName = new ResourceIdentifier(snapshotPolicy.Id).ResourceGroupName, + Location = snapshotPolicy.Location, + Id = snapshotPolicy.Id, + Name = snapshotPolicy.Name1, + Type = snapshotPolicy.Type, + Tags = snapshotPolicy.Tags, + ProvisioningState = snapshotPolicy.ProvisioningState, + Enabled = snapshotPolicy.Enabled, + HourlySchedule = snapshotPolicy.HourlySchedule.ConvertToPs(), + DailySchedule = snapshotPolicy.DailySchedule.ConvertToPs(), + WeeklySchedule = snapshotPolicy.WeeklySchedule.ConvertToPs(), + MonthlySchedule = snapshotPolicy.MonthlySchedule.ConvertToPs() + }; + return psSnapshotPolicy; + } + + public static HourlySchedule ConvertFromPs(this PSNetAppFilesHourlySchedule psHourlySchedule) + { + var hourlySchedule = new HourlySchedule + { + Minute = psHourlySchedule.Minute, + SnapshotsToKeep = psHourlySchedule.SnapshotsToKeep + }; + + return hourlySchedule; + } + + public static PSNetAppFilesHourlySchedule ConvertToPs(this HourlySchedule hourlySchedule) + { + PSNetAppFilesHourlySchedule psNetAppFilesHourlySchedule = new PSNetAppFilesHourlySchedule + { + Minute = hourlySchedule.Minute, + SnapshotsToKeep = hourlySchedule.SnapshotsToKeep, + UsedBytes = hourlySchedule.UsedBytes + }; + return psNetAppFilesHourlySchedule; + } + + public static DailySchedule ConvertFromPs(this PSNetAppFilesDailySchedule psDailySchedule) + { + var dailySchedule = new DailySchedule + { + Hour = psDailySchedule.Hour, + Minute = psDailySchedule.Minute, + SnapshotsToKeep = psDailySchedule.SnapshotsToKeep, + UsedBytes = psDailySchedule.UsedBytes + }; + + return dailySchedule; + } + + public static PSNetAppFilesDailySchedule ConvertToPs(this DailySchedule dailySchedule) + { + PSNetAppFilesDailySchedule psNetAppFilesDailySchedule = new PSNetAppFilesDailySchedule + { + Hour = dailySchedule.Hour, + Minute = dailySchedule.Minute, + SnapshotsToKeep = dailySchedule.SnapshotsToKeep, + UsedBytes = dailySchedule.UsedBytes + }; + return psNetAppFilesDailySchedule; + } + + public static WeeklySchedule ConvertFromPs(this PSNetAppFilesWeeklySchedule psWeeklySchedule) + { + var weeklySchedule = new WeeklySchedule + { + Minute = psWeeklySchedule.Minute, + Hour = psWeeklySchedule.Hour, + Day = psWeeklySchedule.Day, + SnapshotsToKeep = psWeeklySchedule.SnapshotsToKeep, + UsedBytes = psWeeklySchedule.UsedBytes + }; + + return weeklySchedule; + } + + public static PSNetAppFilesWeeklySchedule ConvertToPs(this WeeklySchedule weeklySchedule) + { + PSNetAppFilesWeeklySchedule psNetAppFilesWeeklySchedule = new PSNetAppFilesWeeklySchedule + { + Minute = weeklySchedule.Minute, + Hour = weeklySchedule.Hour, + Day = weeklySchedule.Day, + SnapshotsToKeep = weeklySchedule.SnapshotsToKeep, + UsedBytes = weeklySchedule.UsedBytes + }; + return psNetAppFilesWeeklySchedule; + } + + public static MonthlySchedule ConvertFromPs(this PSNetAppFilesMonthlySchedule psMonthlySchedule) + { + var monthlySchedule = new MonthlySchedule + { + Minute = psMonthlySchedule.Minute, + Hour = psMonthlySchedule.Hour, + DaysOfMonth = psMonthlySchedule.DaysOfMonth, + SnapshotsToKeep = psMonthlySchedule.SnapshotsToKeep, + UsedBytes = psMonthlySchedule.UsedBytes + }; + + return monthlySchedule; + } + + public static PSNetAppFilesMonthlySchedule ConvertToPs(this MonthlySchedule monthlySchedule) + { + PSNetAppFilesMonthlySchedule psNetAppFilesWeeklySchedule = new PSNetAppFilesMonthlySchedule + { + Minute = monthlySchedule.Minute, + Hour = monthlySchedule.Hour, + DaysOfMonth = monthlySchedule.DaysOfMonth, + SnapshotsToKeep = monthlySchedule.SnapshotsToKeep, + UsedBytes = monthlySchedule.UsedBytes + }; + return psNetAppFilesWeeklySchedule; + } + + #endregion SnapshotPolicy + } +} diff --git a/src/NetAppFiles/NetAppFiles/Helpers/VaultExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/VaultExtensions.cs new file mode 100644 index 000000000000..2400d4c111a2 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Helpers/VaultExtensions.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetApp.Models; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Helpers +{ + public static class VaultExtensions + { + public static PSNetAppFilesVault ConvertToPs(this Management.NetApp.Models.Vault vault) + { + var psVault = new PSNetAppFilesVault + { + ResourceGroupName = new ResourceIdentifier(vault.Id).ResourceGroupName, + Location = vault.Location, + Id = vault.Id, + Name = vault.Name, + Type = vault.Type, + VaultName = vault.VaultName + }; + return psVault; + } + + public static List ConvertToPS(this IList vaults) + { + return vaults.Select(e => e.ConvertToPs()).ToList(); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs index 98a94492963a..16def3ab38d6 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs @@ -60,6 +60,13 @@ public class PSNetAppFilesActiveDirectory /// Status of the active directory on the storage server. public string Status { get; set; } + /// + /// StatusDetails of the active drectory. + /// Value of this property can not be set by user. + /// + /// Any details in regards to the Status of the Active Directory + public string StatusDetails { get; set; } + /// /// NetBIOS name of the SMB server. /// This name will be registered as a computer account in the AD. @@ -82,5 +89,32 @@ public class PSNetAppFilesActiveDirectory /// Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier /// public IList BackupOperators { get; set; } + + /// + /// Gets or sets kdcID + /// + /// Kdc server IP addresses for the active directory machine. This optional + /// parameter is used only while creating kerberos volume. + /// + public string KdcIP { get; set; } + + /// + /// Gets or sets AdName + /// + /// Name of the active directory machine. This optional parameter is + /// parameter is used only while creating kerberos volume. + /// + public string AdName { get; set; } + + /// + /// Gets or sets ServerRootCACertificate + /// + /// when LDAP over SSL/TLS is enabled, the LDAP client is required to + /// have base64 encoded Active Directory Certificate Service's self-signed root CA + /// certificate, this optional parameter is used only for dual protocol with LDAP + /// user-mapping volumes. + /// + public string ServerRootCACertificate { get; set; } + } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackup.cs new file mode 100644 index 000000000000..c57269a52d3b --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackup.cs @@ -0,0 +1,95 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesBackup + { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets Resource location + /// + public string Location { get; set; } + + /// + /// Gets resource Id + /// + public string Id { get; set; } + + /// + /// Gets resource name + /// + public string Name { get; set; } + + /// + /// Gets resource type + /// + public string Type { get; set; } + + /// + /// Gets snapshotId + /// + /// + /// UUID v4 used to identify the Backup + /// + public string BackupId { get; set; } + + /// + /// Gets or sets CreationDate + /// + /// + /// The creation date of the backup + /// + public DateTime? CreationDate { get; } + + /// + /// Gets Size + /// + /// + /// Size of backup + /// + public long? Size { get; set; } + + /// + /// Gets or sets Label + /// + /// + /// Label for backup + /// + public string Label { get; set; } + + + /// + /// Gets or sets backupType + /// + /// + /// Type of backup adhoc or scheduled + /// + public string BackupType { get; set; } + + /// + /// Gets azure lifecycle management + /// + public string ProvisioningState { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackupPolicy.cs new file mode 100644 index 000000000000..4236851d77de --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesBackupPolicy.cs @@ -0,0 +1,121 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + +namespace Microsoft.Azure.Commands.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesBackupPolicy + { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets Resource location + /// + public string Location { get; set; } + + /// + /// Gets resource Id + /// + public string Id { get; set; } + + /// + /// Gets resource name + /// + public string Name { get; set; } + + /// + /// Gets resource type + /// + public string Type { get; set; } + + /// + /// Gets or sets resource tags + /// + public object Tags { get; set; } + + /// + /// Gets snapshotId + /// + /// + /// UUID v4 used to identify the Backup Policy + /// + public string BackupPolicyId { get; set; } + + /// + /// Gets or sets VolumesAssigned using current backup policy + /// + /// + /// Number of volumes using current backup policy + /// + public int? VolumesAssigned { get; set; } + + /// + /// Gets or sets YearlyBackupsToKeep + /// + /// + /// Yearly backups count to keep + /// + public int? YearlyBackupsToKeep { get; set; } + + /// + /// Gets or sets MonthlyBackupsToKeep + /// + /// + /// Monthly backups count to keep + /// + public int? MonthlyBackupsToKeep { get; set; } + + /// + /// Gets or sets WeeklyBackupsToKeep + /// + /// + /// Weekly backups count to keep + /// + public int? WeeklyBackupsToKeep { get; set; } + + /// + /// Gets or sets DailyBackupsToKeep + /// + /// + /// Daily backups count to keep + /// + public int? DailyBackupsToKeep { get; set; } + + /// + /// Gets VolumeBackups + /// + /// + /// A list of volumes assigned to this policy + /// + public IList VolumeBackups { get; set; } + + /// + /// Summary: + /// Gets or sets the property to decide policy is enabled or not + /// Remarks: + /// The property to decide policy is enabled or not + public bool? Enabled { get; set; } + + /// + /// Gets azure lifecycle management + /// + public string ProvisioningState { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesDailySchedule.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesDailySchedule.cs new file mode 100644 index 000000000000..6d054545d621 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesDailySchedule.cs @@ -0,0 +1,42 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesDailySchedule + { + /// + /// Gets or sets Daily snapshot count to keep + /// + public int? SnapshotsToKeep { get; set; } + + /// + /// Gets or sets which hour in UTC timezone a snapshot should be taken + /// + public int? Hour { get; set; } + + /// + /// Gets or sets which minute snapshot should be taken + /// + public int? Minute { get; set; } + + /// + /// Gets resource size in bytes, current storage usage for the volume in bytes + /// + public long? UsedBytes { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesExportPolicyRule.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesExportPolicyRule.cs index eed2bd61b352..27d08e87b323 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesExportPolicyRule.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesExportPolicyRule.cs @@ -50,5 +50,40 @@ public class PSNetAppFilesExportPolicyRule /// with IPv4 CIDRs, IPv4 host addresses and host names /// public string AllowedClients { get; set; } + + /// + /// Gets or sets kerberos5 Read only access. + /// + public bool? Kerberos5ReadOnly { get; set; } + + /// + /// Gets or sets kerberos5 Read and write access. + /// + public bool? Kerberos5ReadWrite { get; set; } + + /// + /// Gets or sets kerberos5i Readonly access. + /// + public bool? Kerberos5iReadOnly { get; set; } + + /// + /// Gets or sets kerberos5i Read and write access. + /// + public bool? Kerberos5iReadWrite { get; set; } + + /// + /// Gets or sets kerberos5p Read only access. + /// + public bool? Kerberos5pReadOnly { get; set; } + + /// + /// Gets or sets kerberos5p Read and write access. + /// + public bool? Kerberos5pReadWrite { get; set; } + + /// + /// Gets or sets has root access to volume + /// + public bool? HasRootAccess { get; set; } } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesHourlySchedule.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesHourlySchedule.cs new file mode 100644 index 000000000000..518fa69bf311 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesHourlySchedule.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesHourlySchedule + { + /// + /// Gets or sets Hourly snapshot count to keep + /// + public int? SnapshotsToKeep { get; set; } + + /// + /// Gets or sets which minute snapshot should be taken + /// + public int? Minute { get; set; } + + /// + /// Gets resource size in bytes, current storage usage for the volume in bytes + /// + public long? UsedBytes { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesMonthlySchedule.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesMonthlySchedule.cs new file mode 100644 index 000000000000..92ff05ed9065 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesMonthlySchedule.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesMonthlySchedule + { + /// + /// Gets or sets Monthly snapshot count to keep + /// + public int? SnapshotsToKeep { get; set; } + + /// + /// Summary: + /// Gets or sets indicates which days of the month snapshot should be taken. A comma + /// delimited string. + public string DaysOfMonth { get; set; } + + /// + /// Summary: + /// Gets or sets indicates which hour in UTC timezone a snapshot should be taken + public int? Hour { get; set; } + + /// + /// + /// + /// Gets or sets indicates which minute snapshot should be taken + public int? Minute { get; set; } + + /// + /// Gets resource size in bytes, current storage usage for the volume in bytes + /// + public long? UsedBytes { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs index f43d53a25795..b450e75531b0 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs @@ -68,5 +68,30 @@ public class PSNetAppFilesPool /// Gets azure lifecycle management /// public string ProvisioningState { get; set; } + + /// + /// Gets or sets TotalThroughputMibps + /// + /// + /// total throughput of pool in Mibps + /// + public double? TotalThroughputMibps { get; set; } + + /// + /// Gets or sets UtilizedThroughputMibps + /// + /// + /// Utilized throughput of pool in Mibps + /// + public double? UtilizedThroughputMibps { get; set; } + + + /// + /// Gets or sets qosType + /// + /// + /// The qos type of the pool. Possible values include: 'Auto', 'Manual' + /// + public string QosType { get; set; } } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshotPolicy.cs new file mode 100644 index 000000000000..d56e8a5538c0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesSnapshotPolicy + { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets Resource location + /// + public string Location { get; set; } + + /// + /// Gets resource Id + /// + public string Id { get; set; } + + /// + /// Gets resource name + /// + public string Name { get; set; } + + /// + /// Gets resource type + /// + public string Type { get; set; } + + /// + /// Gets or sets resource tags + /// + public object Tags { get; set; } + + /// + /// Gets snapshotId + /// + /// + /// UUID v4 used to identify the Snapshot Policy + /// + public string SnapshotPolicyId { get; set; } + + /// + /// Gets or sets hourlySchedule + /// + /// + /// Schedule for hourly snapshots + /// + public PSNetAppFilesHourlySchedule HourlySchedule { get; set; } + + /// + /// Summary: + /// Gets or sets dailySchedule + /// + /// Remarks: + /// Schedule for daily snapshots + public PSNetAppFilesDailySchedule DailySchedule { get; set; } + + /// + /// Summary: + /// Gets or sets weeklySchedule + /// + /// Remarks: + /// Schedule for weekly snapshots + public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; } + + /// + /// Summary: + /// Gets or sets monthlySchedule + /// + /// Remarks: + /// Schedule for monthly snapshots + public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; } + + /// + /// Summary: + /// Gets or sets the property to decide policy is enabled or not + /// Remarks: + /// The property to decide policy is enabled or not + public bool? Enabled { get; set; } + + /// + /// Gets azure lifecycle management + /// + public string ProvisioningState { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVault.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVault.cs new file mode 100644 index 000000000000..c225c16b8aa7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVault.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesVault + { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets Resource location + /// + public string Location { get; set; } + + /// + /// Gets resource Id + /// + public string Id { get; set; } + + /// + /// Gets resource name + /// + public string Name { get; set; } + + /// + /// Gets resource type + /// + public string Type { get; set; } + + /// + /// Gets VaultName + /// + /// + /// Label for backup + /// + public string VaultName { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs index b5d308ea85dc..a6644cf6dda0 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs @@ -158,6 +158,39 @@ public class PSNetAppFilesVolume /// /// If enabled (true) the volume will contain a read-only .snapshot directory which provides access to each of the volume's snapshots (default to true) /// - public bool SnapshotDirectoryVisible { get; set; } + public bool? SnapshotDirectoryVisible { get; set; } + + /// + /// Gets or sets backup ID + /// + /// + /// UUID v4 or resource identifier used to identify the Backup. + /// + public string BackupId { get; set; } + + /// + /// Gets or sets SecurityStyle + /// + /// + /// The security style of volume. Possible values include: 'ntfs', 'unix' + /// + public string SecurityStyle { get; set; } + + /// + /// Gets or sets ThroughputMibps + /// + /// + /// Maximum throughput in Mibps that can be achieved by this volume + /// + public double? ThroughputMibps { get; set; } + + + /// + /// Gets or sets KerberosEnabled + /// + /// + /// describe if a volume is KerberosEnabled. + /// + public bool? KerberosEnabled { get; set; } } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackup.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackup.cs new file mode 100644 index 000000000000..f6637b17a348 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackup.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + + public class PSNetAppFilesVolumeBackup + { + /// + /// Gets or sets VolumeName + /// + /// + /// Volume name + /// + public string VolumeName { get; set; } + + /// + /// Gets or sets BackupsCount + /// + /// + /// Total count of backups for volume + /// + public int? BackupsCount { get; set; } + + /// + /// Gets or sets PolicyEnabled + /// + /// + /// Policy enabled + /// + public bool? PolicyEnabled { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackupProperties.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackupProperties.cs new file mode 100644 index 000000000000..9fa16924f78c --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeBackupProperties.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + public class PSNetAppFilesVolumeBackupProperties + { + /// + /// Gets BackupPolicyId + /// + /// + /// Backup Policy Resource ID + /// + public string BackupPolicyId { get; set; } + + /// Gets PolicyEnforced + /// + /// + /// Policy Enforced + /// + public bool? PolicyEnforced { get; set; } + + /// Gets PolicyEnforced + /// + /// + /// Vault Resource ID + /// + public string VaultId { get; set; } + + // + // Summary: + // Gets or sets BackupEnabled + /// Gets PolicyEnforced + /// + /// + /// Backup Enabled + /// + public bool? BackupEnabled { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeDataProtection.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeDataProtection.cs index c082219294fe..2c1adb4a3b21 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeDataProtection.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolumeDataProtection.cs @@ -31,5 +31,14 @@ public class PSNetAppFilesVolumeDataProtection /// Snapshot properties /// public PSNetAppFilesVolumeSnapshot Snapshot { get; set; } + + + /// + /// Gets or sets VolumeBackupProperties + /// + /// + /// Volume Backup properties + /// + public PSNetAppFilesVolumeBackupProperties Backup { get; set; } } } diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesWeeklySchedule.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesWeeklySchedule.cs new file mode 100644 index 000000000000..3e055ae35cd1 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesWeeklySchedule.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// 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.NetAppFiles.Models +{ + /// + /// ARM tracked resource + /// + public class PSNetAppFilesWeeklySchedule + { + /// + /// Gets or sets Weekly snapshot count to keep + /// + public int? SnapshotsToKeep { get; set; } + + /// + /// Gets or sets which weekdays snapshot should be taken, accepts a comma separated list of week day names in english + /// + public string Day { get; set; } + + + /// + /// Gets or sets which hour in UTC timezone a snapshot should be taken + /// + public int? Hour { get; set; } + + /// + /// Gets or sets which minute snapshot should be taken + /// + public int? Minute { get; set; } + + /// + /// Gets resource size in bytes, current storage usage for the volume in bytes + /// + public long? UsedBytes { get; set; } + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj b/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj index 2342433c88a0..212816150408 100644 --- a/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj +++ b/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj @@ -20,7 +20,7 @@ - + @@ -38,9 +38,5 @@ Designer - - - - \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs b/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs index c0527a3eff10..ddeca30a6d19 100644 --- a/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs +++ b/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs @@ -16,6 +16,7 @@ using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.NetApp; @@ -81,6 +82,13 @@ public class NewAzureRmNetAppFilesPool : AzureNetAppFilesCmdletBase [PSArgumentCompleter("Standard", "Premium", "Ultra")] public string ServiceLevel { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The qos type of the pool. Possible values include: 'Auto', 'Manual'")] + [ValidateNotNullOrEmpty] + [PSArgumentCompleter("Auto", "Manual")] + public string QosType { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags")] @@ -122,13 +130,14 @@ public override void ExecuteCmdlet() ServiceLevel = ServiceLevel, Size = PoolSize, Location = Location, - Tags = tagPairs + Tags = tagPairs, + QosType = QosType }; if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { var anfPool = AzureNetAppFilesManagementClient.Pools.CreateOrUpdate(capacityPoolBody, ResourceGroupName, AccountName, Name); - WriteObject(anfPool); + WriteObject(anfPool.ToPsNetAppFilesPool()); } } } diff --git a/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs b/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs index d79b1b8b8644..cd34b09a0b07 100644 --- a/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs +++ b/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs @@ -21,6 +21,7 @@ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using System.Collections; using System.Collections.Generic; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; namespace Microsoft.Azure.Commands.NetAppFiles.Pool { @@ -82,9 +83,10 @@ public class UpdateAzureRmNetAppFilesPool : AzureNetAppFilesCmdletBase [Parameter( Mandatory = false, - HelpMessage = "The service level of the ANF pool")] + HelpMessage = "The qos type of the pool. Possible values include: 'Auto', 'Manual'")] [ValidateNotNullOrEmpty] - public string ServiceLevel { get; set; } + [PSArgumentCompleter("Auto", "Manual")] + public string QosType { get; set; } [Parameter( Mandatory = false, @@ -155,16 +157,16 @@ public override void ExecuteCmdlet() } var capacityPoolBody = new CapacityPoolPatch() - { - ServiceLevel = ServiceLevel, + { Size = PoolSize, Location = Location, - Tags = tagPairs + Tags = tagPairs, + QosType = QosType }; if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.UpdateResourceMessage, ResourceGroupName))) { - var anfPool = AzureNetAppFilesManagementClient.Pools.Update(capacityPoolBody, ResourceGroupName, AccountName, Name); + var anfPool = AzureNetAppFilesManagementClient.Pools.Update(capacityPoolBody, ResourceGroupName, AccountName, Name).ToPsNetAppFilesPool(); WriteObject(anfPool); } } diff --git a/src/NetAppFiles/NetAppFiles/Replication/BreakNetAppFilesReplication.cs b/src/NetAppFiles/NetAppFiles/Replication/BreakNetAppFilesReplication.cs index b610e080df53..d4a8bf2c4ad0 100644 --- a/src/NetAppFiles/NetAppFiles/Replication/BreakNetAppFilesReplication.cs +++ b/src/NetAppFiles/NetAppFiles/Replication/BreakNetAppFilesReplication.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.NetApp.Models; namespace Microsoft.Azure.Commands.NetAppFiles.Replication { @@ -79,6 +80,16 @@ public class BreakAzureRmNetAppFilesReplication : AzureNetAppFilesCmdletBase [ValidateNotNullOrEmpty] public string ResourceId { get; set; } + [Parameter( + Mandatory = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "If replication is in status transferring and you want to force break the replication, set to true")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts", + nameof(ResourceGroupName))] + public SwitchParameter ForceBreak { get; set; } + [Parameter( ParameterSetName = ObjectParameterSet, Mandatory = true, @@ -116,7 +127,12 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.UpdateResourceMessage, ResourceGroupName))) { - AzureNetAppFilesManagementClient.Volumes.BreakReplication(ResourceGroupName, AccountName, PoolName, Name); + BreakReplicationRequest breakBody = null; + if (ForceBreak) + { + breakBody = new BreakReplicationRequest(ForceBreak.ToBool()); + } + AzureNetAppFilesManagementClient.Volumes.BreakReplication(ResourceGroupName, AccountName, PoolName, Name, body: breakBody); success = true; } diff --git a/src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs b/src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs new file mode 100644 index 000000000000..b8e5542e7c8e --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs @@ -0,0 +1,129 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Replication +{ + [Cmdlet( + "Reinitialize", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesReplication", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] + [Alias("Reinitialize-AnfReplication")] + public class ReinitializeAzureRmNetAppFilesReplication : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF replication destination volume")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account of the replication volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool of the replication volume")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF replication destination volume")] + [ValidateNotNullOrEmpty] + [Alias("VolumeName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF replication destination volume")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The ANF replication destination volume object to reinitialize")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether reinitialization of the specified replication volume was performed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + Name = NameParts[2]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.UpdateResourceMessage, ResourceGroupName))) + { + AzureNetAppFilesManagementClient.Volumes.ReInitializeReplication(ResourceGroupName, AccountName, PoolName, Name); + success = true; + } + + if (PassThru) + { + WriteObject(success); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/GetNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/GetNetAppFilesSnapshotPolicy.cs new file mode 100644 index 000000000000..cecfcf076987 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/GetNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,112 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshotPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshotPolicy))] + [Alias("Get-AnfSnapshotPolicy")] + public class GetAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = FieldsParameterSet)] + [ValidateNotNullOrEmpty] + [Alias("SnapshotPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/snapshotPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Snapshot Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Snapshot Policy object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (Name != null) + { + var anfSnapshotPolicy = AzureNetAppFilesManagementClient.SnapshotPolicies.Get(ResourceGroupName, AccountName, snapshotPolicyName: Name); + WriteObject(anfSnapshotPolicy.ConvertToPs()); + } + else + { + var anfSnapshotPolicies = AzureNetAppFilesManagementClient.SnapshotPolicies.List(ResourceGroupName, AccountName).Select(e => e.ConvertToPs()); + WriteObject(anfSnapshotPolicies, true); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/NewNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/NewNetAppFilesSnapshotPolicy.cs new file mode 100644 index 000000000000..a44b35858127 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/NewNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,145 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Monitor.Version2018_09_01.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshotPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshotPolicy))] + [Alias("New-AnfSnapshotPolicy")] + public class NewAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/snapshotPolicies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy")] + [ValidateNotNullOrEmpty] + [Alias("SnapshotPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/snapshotPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The property to decide policy is enabled or not")] + [ValidateNotNullOrEmpty] + public SwitchParameter Enabled { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the hourly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesHourlySchedule HourlySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the daily Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesDailySchedule DailySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the montly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the montly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Snapshot Policy object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + var snapshotPolicyBody = new Management.NetApp.Models.SnapshotPolicy() + { + Location = Location, + Enabled = Enabled, + HourlySchedule = (HourlySchedule != null) ? HourlySchedule.ConvertFromPs() : null, + DailySchedule = (DailySchedule != null) ? DailySchedule.ConvertFromPs() : null, + WeeklySchedule = (WeeklySchedule != null) ? WeeklySchedule.ConvertFromPs() : null, + MonthlySchedule = (MonthlySchedule != null) ? MonthlySchedule.ConvertFromPs() : null + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfSnapshotPolicy = AzureNetAppFilesManagementClient.SnapshotPolicies.Create(snapshotPolicyBody, ResourceGroupName, AccountName, snapshotPolicyName: Name); + WriteObject(anfSnapshotPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs new file mode 100644 index 000000000000..2f5708bf9036 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,132 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshotPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshotPolicy))] + [Alias("Remove-AnfSnapshotPolicy")] + public class RemoveAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = FieldsParameterSet)] + [ValidateNotNullOrEmpty] + [Alias("SnapshotPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/snapshotPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Snapshot Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Snapshot Policy object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The SnapshotPolicy object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesSnapshotPolicy InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified account was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + AzureNetAppFilesManagementClient.SnapshotPolicies.Delete(ResourceGroupName, AccountName, snapshotPolicyName: Name); + success = true; + } + if (PassThru) + { + WriteObject(success); + } + + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs new file mode 100644 index 000000000000..85baae9a8300 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,176 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.SnapshotPolicy +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshotPolicy", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshotPolicy))] + [Alias("Update-AnfSnapshotPolicy")] + public class UpdateAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The location of the resource")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/snapshotPolicies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy")] + [ValidateNotNullOrEmpty] + [Alias("SnapshotPolicyName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/snapshotPolicies", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The property to decide policy is enabled or not")] + [ValidateNotNullOrEmpty] + public bool? Enabled { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the hourly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesHourlySchedule HourlySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the daily Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesDailySchedule DailySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the montly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "A hashtable array which represents the montly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF Snapshot Policy")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the new Snapshot Policy object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The snapshot object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesSnapshotPolicy InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + Location = AccountObject.Location; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + var snapshotPolicyPatch = new Management.NetApp.Models.SnapshotPolicyPatch() + { + Location = Location, + Enabled = Enabled, + HourlySchedule = (HourlySchedule != null) ? HourlySchedule.ConvertFromPs() : null, + DailySchedule = (DailySchedule != null) ? DailySchedule.ConvertFromPs() : null, + WeeklySchedule = (WeeklySchedule != null) ? WeeklySchedule.ConvertFromPs() : null, + MonthlySchedule = (MonthlySchedule != null) ? MonthlySchedule.ConvertFromPs() : null + }; + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfSnapshotPolicy = AzureNetAppFilesManagementClient.SnapshotPolicies.Update(snapshotPolicyPatch, ResourceGroupName, AccountName, snapshotPolicyName: Name); + WriteObject(anfSnapshotPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Vaults/GetNetAppFilesVault.cs b/src/NetAppFiles/NetAppFiles/Vaults/GetNetAppFilesVault.cs new file mode 100644 index 000000000000..de5c5821d140 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Vaults/GetNetAppFilesVault.cs @@ -0,0 +1,90 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Globalization; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using System.Linq; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Vault +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVault", + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesBackupPolicy))] + [Alias("Get-AnfVault")] + public class GetAzureRmNetAppFilesVault: AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The account for the new backup object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountObject { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource id of the ANF pool", + ParameterSetName = ResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResource = resourceIdentifier.ParentResource; + AccountName = parentResource.Substring(parentResource.LastIndexOf('/') + 1); + } + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountObject.ResourceGroupName; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + var anfBackups = AzureNetAppFilesManagementClient.Vaults.List(ResourceGroupName, accountName: AccountName).Select(e => e.ConvertToPs()); + WriteObject(anfBackups, true); + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs index b7c5f370b4db..ea7d4addf7f7 100644 --- a/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs @@ -137,6 +137,18 @@ public class NewAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase [ValidateNotNullOrEmpty] public PSNetAppFilesReplicationObject ReplicationObject { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the snapshot object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolumeSnapshot Snapshot { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the backup object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolumeBackupProperties Backup { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable array which represents the protocol types. You need to create Active Directory connections before creating an SMB/CIFS volume")] @@ -144,6 +156,33 @@ public class NewAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase [PSArgumentCompleter("NFSv3", "NFSv4.1", "CIFS")] public string[] ProtocolType { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "If enabled (true) the volume will contain a read-only .snapshot directory which provides access to each of the volume's snapshots (default to true)")] + public SwitchParameter SnapshotDirectoryVisible { get; set; } + + [Parameter( + ParameterSetName = FieldsParameterSet, + Mandatory = false, + HelpMessage = "Backup ID. UUID v4 or resource identifier used to identify the Backup.")] + public string BackupId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The security style of volume. Possible values include: 'ntfs', 'unix'")] + [PSArgumentCompleter("ntfs", "unix")] + public string SecurityStyle { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Maximum throughput in Mibps that can be achieved by this volume")] + public double? ThroughputMibps { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Describe if a volume is Kerberos Enabled.")] + public SwitchParameter KerberosEnabled { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags")] @@ -184,7 +223,9 @@ public override void ExecuteCmdlet() var dataProtection = new PSNetAppFilesVolumeDataProtection { - Replication = ReplicationObject + Replication = ReplicationObject, + Snapshot = Snapshot, + Backup = Backup }; var volumeBody = new Management.NetApp.Models.Volume() @@ -199,7 +240,12 @@ public override void ExecuteCmdlet() VolumeType = VolumeType, ProtocolTypes = ProtocolType, Tags = tagPairs, - SnapshotId = SnapshotId + SnapshotId = SnapshotId, + SnapshotDirectoryVisible = SnapshotDirectoryVisible, + SecurityStyle = SecurityStyle, + BackupId = BackupId, + ThroughputMibps = ThroughputMibps, + KerberosEnabled = KerberosEnabled }; if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) diff --git a/src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs new file mode 100644 index 000000000000..6388419d1261 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Management.Automation; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using Microsoft.Azure.Management.NetApp.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Volume +{ + /// + /// Moves volume to another pool + /// + [Cmdlet( + "PoolChange", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] + [Alias("PoolChange-AnfVolume")] + public class PoolChangeAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF volume")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string PoolName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF volume", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF volume", + ParameterSetName = ParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + [Alias("VolumeName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string Name { get; set; } + + [Parameter( + ParameterSetName = FieldsParameterSet, + Mandatory = false, + HelpMessage = "ResourceId of the capacity pool to move to. UUID v4 used to identify the pool")] + [ValidateNotNullOrEmpty] + public string NewPoolResourceId { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF volume")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The pool object containing the volume")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool PoolObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume object to move")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified volume was successfully moved")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + Name = NameParts[2]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = PoolObject.ResourceGroupName; + var NameParts = PoolObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + } + + if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.RemoveResourceMessage, ResourceGroupName))) + { + var poolChangeBody = new PoolChangeRequest() { NewPoolResourceId = NewPoolResourceId}; + AzureNetAppFilesManagementClient.Volumes.PoolChange(ResourceGroupName, AccountName, PoolName, Name, poolChangeBody); + success = true; + } + + if (PassThru) + { + WriteObject(success); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs index 3dc0e64aefe4..7a2c2fe1245f 100644 --- a/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs @@ -105,6 +105,17 @@ public class UpdateAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase [ValidateNotNullOrEmpty] public PSNetAppFilesVolumeExportPolicy ExportPolicy { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the backup object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolumeBackupProperties Backup { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Maximum throughput in Mibps that can be achieved by this volume")] + public double? ThroughputMibps { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags")] @@ -176,13 +187,20 @@ public override void ExecuteCmdlet() AccountName = NameParts[0]; PoolName = NameParts[1]; } + + var dataProtection = new PSNetAppFilesVolumeDataProtection + { + Backup = Backup + }; var volumePatchBody = new VolumePatch() { ServiceLevel = ServiceLevel, UsageThreshold = UsageThreshold, ExportPolicy = (ExportPolicy != null) ? ModelExtensions.ConvertExportPolicyPatchFromPs(ExportPolicy) : null, - Tags = tagPairs + Tags = tagPairs, + ThroughputMibps = ThroughputMibps, + DataProtection = (dataProtection.Backup != null) ? dataProtection.ConvertToPatchFromPs() : null }; if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.UpdateResourceMessage, ResourceGroupName))) diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index 224efa945728..94e134e94633 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -74,3 +74,6 @@ Updates an Azure NetApp Files (ANF) pool according to the optional modifiers pro ### [Update-AzNetAppFilesVolume](Update-AzNetAppFilesVolume.md) Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. +### [PoolChange-AzNetAppFilesVolume](PoolChange-AzNetAppFilesVolume.md) +Change pool for an Azure NetApp Files (ANF) volume. + diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md index c5814eb7ad10..f561adea6c41 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md @@ -172,6 +172,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -QosType +The qos type of the pool. Possible values include: 'Auto', 'Manual' + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: Auto +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag A hashtable which represents resource tags diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md index df67cbd04956..52dfc85d0923 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md @@ -17,7 +17,8 @@ Creates a new Azure NetApp Files (ANF) volume. New-AzNetAppFilesVolume -ResourceGroupName -Location -AccountName -PoolName -Name -UsageThreshold -SubnetId -CreationToken [-VolumeType ] -ServiceLevel [-SnapshotId ] [-ExportPolicy ] - [-ReplicationObject ] [-ProtocolType ] [-Tag ] + [-ReplicationObject ] [-Snapshot ] [-Backup ] [-ProtocolType ] [-Tag ] + [-SnapshotDirectoryVisible] [-KerberosEnabled] [-BackupId ] [-SecurityStyle ] [-ThroughputMibps ] [-ThroughputMibps ] [-SecurityStyle ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -25,7 +26,7 @@ New-AzNetAppFilesVolume -ResourceGroupName -Location -AccountN ``` New-AzNetAppFilesVolume -Name -UsageThreshold -SubnetId -CreationToken -ServiceLevel [-ExportPolicy ] - [-ReplicationObject ] [-ProtocolType ] [-Tag ] + [-ReplicationObject ] [-Snapshot ] [-Backup ] [-ProtocolType ] [-Tag ] -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -208,6 +209,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Snapshot +A hashtable array which represents the snapshot object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Backup +A hashtable array which represents the backup object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group of the ANF account @@ -313,6 +344,83 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SnapshotDirectoryVisible +If enabled (true) the volume will contain a read-only .snapshot directory which provides access to each of the volume's snapshots (default to true) + +```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 +``` + +### -KerberosEnabled +Describe if a volume is Kerberos Enabled + +```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 +``` + + + +### -BackupId +Backup ID. UUID v4 or resource identifier used to identify the Backup + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SecurityStyle +The security style of volume. Possible values include: 'ntfs', 'unix' + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThroughputMibps +Maximum throughput in Mibps that can be achieved by this volume + +```yaml +Type: System.Double +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..956221b547d1 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md @@ -0,0 +1,251 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesvolume +schema: 2.0.0 +--- + +# PoolChange-AzNetAppFilesVolume + +## SYNOPSIS +Change pool for an Azure NetApp Files (ANF) volume. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +PoolChange-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name + [-NewPoolResourceId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesVolume -Name -PoolObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesVolume -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesVolume** cmdlet deletes an ANF volume. + +## EXAMPLES + +### Example 1 +``` +PS C:\>PoolChange-AzNetAppFilesVolume -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf +``` + +This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c78-6c61-7bf6-c60968e45fbf + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The volume object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified volume was successfully removed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolObject +The pool object containing the volume to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` +### -NewPoolResourceId +ResourceId of the pool to change to. +UUID v4 used to identify the Pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md new file mode 100644 index 000000000000..259ac663cd75 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md @@ -0,0 +1,214 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/resume-aznetappfilesreplication +schema: 2.0.0 +--- + +# Reinitialize-AzNetAppFilesReplication + +## SYNOPSIS +Re-Initializes the replication connection on the destination volume + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Reinitialize-AzNetAppFilesReplication -ResourceGroupName -AccountName -PoolName + -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceIdParameterSet +``` +Reinitialize-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Reinitialize-AzNetAppFilesReplication -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Re-Initializes the connection on the destination volume + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Reinitialize-AnfReplication -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyDestinationAnfVolume" +``` + +This command Re-Initializes the ANF Replication connection on volume "MyDestinationAnfVolume". + +## PARAMETERS + +### -AccountName +The name of the ANF account of the replication volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The ANF replication destination volume object to resync + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF replication destination volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether resync of the specified replication volume was performed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool of the replication volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF replication destination volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF replication destination volume + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md index 1b3c820c3cd6..c21a86229a43 100644 --- a/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md +++ b/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md @@ -15,19 +15,19 @@ Suspend/break the replication connection on the destination volume ### ByFieldsParameterSet (Default) ``` Suspend-AzNetAppFilesReplication -ResourceGroupName -AccountName -PoolName - -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + -Name [-ForceBreak] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Suspend-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] +Suspend-AzNetAppFilesReplication -ResourceId [-ForceBreak] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Suspend-AzNetAppFilesReplication -InputObject [-PassThru] +Suspend-AzNetAppFilesReplication -InputObject [-ForceBreak] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md index 69aa2f7ebbec..1d4c76735e2d 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md @@ -15,26 +15,26 @@ Updates an Azure NetApp Files (ANF) pool according to the optional modifiers pro ### ByFieldsParameterSet (Default) ``` Update-AzNetAppFilesPool -ResourceGroupName [-Location ] -AccountName -Name - [-PoolSize ] [-ServiceLevel ] [-Tag ] [-DefaultProfile ] + [-PoolSize ] [-QosType ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Update-AzNetAppFilesPool -Name [-PoolSize ] [-ServiceLevel ] [-Tag ] +Update-AzNetAppFilesPool -Name [-PoolSize ] [-QosType ] [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Update-AzNetAppFilesPool [-PoolSize ] [-ServiceLevel ] [-Tag ] -ResourceId +Update-AzNetAppFilesPool [-PoolSize ] [-QosType ] [-Tag ] -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Update-AzNetAppFilesPool [-PoolSize ] [-ServiceLevel ] [-Tag ] +Update-AzNetAppFilesPool [-PoolSize ] [-QosType ] [-Tag ] -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -46,7 +46,7 @@ The **Update-AzNetAppFilesPool** cmdlet modifies an ANF pool. ### Example 1: Modify an ANF pool ``` -PS C:\>Update-AzNetAppFilesPool -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -PoolSize 4398046511104 -ServiceLevel "Standard" +PS C:\>Update-AzNetAppFilesPool -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -PoolSize 4398046511104 -QosType "Auto" Output: @@ -58,10 +58,11 @@ Tags : PoolId : 9fa2ca6d-1e48-4439-30e3-7de056e44e5a Size : 4398046511104 ServiceLevel : Standard +QosType : Auto ProvisioningState : Succeeded ``` -This command changes the ANF pool "MyAnfPool" to have the given size and ServiceLevel. +This command changes the ANF pool "MyAnfPool" to have the given size and QosType. ## PARAMETERS @@ -200,8 +201,8 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ServiceLevel -The service level of the ANF pool +### -QosType +The qos type of the pool. Possible values include: 'Auto', 'Manual' ```yaml Type: System.String From 21c95baa93ad4efddb7688666e12821bd1c546d4 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Fri, 30 Oct 2020 09:50:07 +0000 Subject: [PATCH 02/22] Updated help files --- .../NetAppFiles/help/Az.NetAppFiles.md | 60 ++- .../help/Get-AzNetAppFilesActiveDirectory.md | 129 +++++++ .../help/Get-AzNetAppFilesBackup.md | 182 +++++++++ .../help/Get-AzNetAppFilesBackupPolicy.md | 152 ++++++++ .../Get-AzNetAppFilesReplicationStatus.md | 2 + .../help/Get-AzNetAppFilesSnapshotPolicy.md | 183 +++++++++ .../help/Get-AzNetAppFilesVault.md | 136 +++++++ .../help/New-AzNetAppFilesActiveDirectory.md | 350 +++++++++++++++++ .../help/New-AzNetAppFilesBackup.md | 221 +++++++++++ .../help/New-AzNetAppFilesBackupPolicy.md | 269 +++++++++++++ .../NetAppFiles/help/New-AzNetAppFilesPool.md | 32 +- .../help/New-AzNetAppFilesSnapshotPolicy.md | 270 +++++++++++++ .../help/New-AzNetAppFilesVolume.md | 175 +++++---- .../help/PoolChange-AzNetAppFilesVolume.md | 42 +- .../Remove-AzNetAppFilesActiveDirectory.md | 175 +++++++++ .../help/Remove-AzNetAppFilesBackup.md | 252 ++++++++++++ .../help/Remove-AzNetAppFilesBackupPolicy.md | 221 +++++++++++ .../Remove-AzNetAppFilesSnapshotPolicy.md | 221 +++++++++++ .../help/Restore-AzNetAppFilesVolume.md | 28 +- .../help/Revert-AzNetAppFilesVolume.md | 253 ++++++++++++ .../help/Suspend-AzNetAppFilesReplication.md | 19 +- .../help/Update-AzNetAppFilesAccount.md | 4 +- .../Update-AzNetAppFilesActiveDirectory.md | 365 ++++++++++++++++++ .../help/Update-AzNetAppFilesBackup.md | 284 ++++++++++++++ .../help/Update-AzNetAppFilesBackupPolicy.md | 303 +++++++++++++++ .../help/Update-AzNetAppFilesPool.md | 26 +- .../Update-AzNetAppFilesSnapshotPolicy.md | 323 ++++++++++++++++ .../help/Update-AzNetAppFilesVolume.md | 46 ++- 28 files changed, 4560 insertions(+), 163 deletions(-) create mode 100644 src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md create mode 100644 src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md create mode 100644 src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md create mode 100644 src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md create mode 100644 src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index 94e134e94633..1a3bc1f0aa9c 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -17,6 +17,15 @@ Approve/Authorize replication connection on the source volume ### [Get-AzNetAppFilesAccount](Get-AzNetAppFilesAccount.md) Gets details of an Azure NetApp Files (ANF) account. +### [Get-AzNetAppFilesActiveDirectory](Get-AzNetAppFilesActiveDirectory.md) +Gets details of an Azure NetApp Files (ANF) Active Directory configuration. + +### [Get-AzNetAppFilesBackup](Get-AzNetAppFilesBackup.md) +Gets details of an Azure NetApp Files (ANF) Backup. + +### [Get-AzNetAppFilesBackupPolicy](Get-AzNetAppFilesBackupPolicy.md) +Gets details of an Azure NetApp Files (ANF) Backup Policy. + ### [Get-AzNetAppFilesPool](Get-AzNetAppFilesPool.md) Gets details of an Azure NetApp Files (ANF) pool. @@ -26,24 +35,54 @@ Get the status of the replication ### [Get-AzNetAppFilesSnapshot](Get-AzNetAppFilesSnapshot.md) Gets details of an Azure NetApp Files (ANF) snapshot. +### [Get-AzNetAppFilesSnapshotPolicy](Get-AzNetAppFilesSnapshotPolicy.md) +Gets details of an Azure NetApp Files (ANF) Snapshot Policy. + +### [Get-AzNetAppFilesVault](Get-AzNetAppFilesVault.md) +Gets details of an Azure NetApp Files (ANF) Backup Vault. + ### [Get-AzNetAppFilesVolume](Get-AzNetAppFilesVolume.md) Gets details of an Azure NetApp Files (ANF) volume. ### [New-AzNetAppFilesAccount](New-AzNetAppFilesAccount.md) Creates a new Azure NetApp Files (ANF) account. +### [New-AzNetAppFilesActiveDirectory](New-AzNetAppFilesActiveDirectory.md) +Creates a new Azure NetApp Files (ANF) Active Directory configuration. + +### [New-AzNetAppFilesBackup](New-AzNetAppFilesBackup.md) +Creates a new Azure NetApp Files (ANF) Backup. + +### [New-AzNetAppFilesBackupPolicy](New-AzNetAppFilesBackupPolicy.md) +Creates a new Azure NetApp Files (ANF) Backup Policy. + ### [New-AzNetAppFilesPool](New-AzNetAppFilesPool.md) Creates a new Azure NetApp Files (ANF) pool. ### [New-AzNetAppFilesSnapshot](New-AzNetAppFilesSnapshot.md) Creates a new Azure NetApp Files (ANF) snapshot. +### [New-AzNetAppFilesSnapshotPolicy](New-AzNetAppFilesSnapshotPolicy.md) +Creates a new Azure NetApp Files (ANF) snapshot policy. + ### [New-AzNetAppFilesVolume](New-AzNetAppFilesVolume.md) Creates a new Azure NetApp Files (ANF) volume. +### [PoolChange-AzNetAppFilesVolume](PoolChange-AzNetAppFilesVolume.md) +Change pool for an Azure NetApp Files (ANF) volume. + ### [Remove-AzNetAppFilesAccount](Remove-AzNetAppFilesAccount.md) Deletes an Azure NetApp Files (ANF) account. +### [Remove-AzNetAppFilesActiveDirectory](Remove-AzNetAppFilesActiveDirectory.md) +Deletes an Azure NetApp Files (ANF) active directory configuration. + +### [Remove-AzNetAppFilesBackup](Remove-AzNetAppFilesBackup.md) +Deletes an Azure NetApp Files (ANF) backup. + +### [Remove-AzNetAppFilesBackupPolicy](Remove-AzNetAppFilesBackupPolicy.md) +Deletes an Azure NetApp Files (ANF) backup policy. + ### [Remove-AzNetAppFilesPool](Remove-AzNetAppFilesPool.md) Deletes an Azure NetApp Files (ANF) pool. @@ -53,9 +92,15 @@ Remove/Delete the replication connection on the destination volume, and send rel ### [Remove-AzNetAppFilesSnapshot](Remove-AzNetAppFilesSnapshot.md) Deletes an Azure NetApp Files (ANF) snapshot. +### [Remove-AzNetAppFilesSnapshotPolicy](Remove-AzNetAppFilesSnapshotPolicy.md) +Deletes an Azure NetApp Files (ANF) snapshot policy. + ### [Remove-AzNetAppFilesVolume](Remove-AzNetAppFilesVolume.md) Deletes an Azure NetApp Files (ANF) volume. +### [Restore-AzNetAppFilesVolume](Restore-AzNetAppFilesVolume.md) +Restore/Revert a volume to one of its snapshots + ### [Resume-AzNetAppFilesReplication](Resume-AzNetAppFilesReplication.md) Resume/Resync the connection on the destination volume. If the operation is ran on the source volume it will reverse-resync the connection and sync from source to destination. @@ -68,12 +113,21 @@ Suspend/break the replication connection on the destination volume ### [Update-AzNetAppFilesAccount](Update-AzNetAppFilesAccount.md) Updates an Azure NetApp Files (ANF) account according to the optional modifiers provided. +### [Update-AzNetAppFilesActiveDirectory](Update-AzNetAppFilesActiveDirectory.md) +Updates an Azure NetApp Files (ANF) active directory configuration according to the optional modifiers provided. + +### [Update-AzNetAppFilesBackup](Update-AzNetAppFilesBackup.md) +Updates an Azure NetApp Files (ANF) backup according to the optional modifiers provided. + +### [Update-AzNetAppFilesBackupPolicy](Update-AzNetAppFilesBackupPolicy.md) +Updates an Azure NetApp Files (ANF) backup policy according to the optional modifiers provided. + ### [Update-AzNetAppFilesPool](Update-AzNetAppFilesPool.md) Updates an Azure NetApp Files (ANF) pool according to the optional modifiers provided. +### [Update-AzNetAppFilesSnapshotPolicy](Update-AzNetAppFilesSnapshotPolicy.md) +Updates an Azure NetApp Files (ANF) snapshot policy according to the optional modifiers provided. + ### [Update-AzNetAppFilesVolume](Update-AzNetAppFilesVolume.md) Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. -### [PoolChange-AzNetAppFilesVolume](PoolChange-AzNetAppFilesVolume.md) -Change pool for an Azure NetApp Files (ANF) volume. - diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..23b950bb475a --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,129 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesActiveDirectory + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Name ] + [-DefaultProfile ] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesActiveDirectory [-Name ] -AccountObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Active Directory object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -Name +The name of the ANF Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: ActiveDirectoryName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md new file mode 100644 index 000000000000..c36be6821fbe --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md @@ -0,0 +1,182 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesBackup -ResourceGroupName -AccountName -PoolName + [-VolumeName ] [-Name ] [-DefaultProfile ] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesBackup [-Name ] -ResourceId [-DefaultProfile ] + [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesBackup [-Name ] -VolumeObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Name +The name of the ANF backup + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeObject +The volume object containing the backup to return + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md new file mode 100644 index 000000000000..003a6c8bc0a4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md @@ -0,0 +1,152 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesBackupPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesBackupPolicy -ResourceGroupName -AccountName [-Name ] + [-DefaultProfile ] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesBackupPolicy [-Name ] -ResourceId [-DefaultProfile ] + [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesBackupPolicy [-Name ] -AccountObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account object containing the Backup Policy to return + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -Name +The name of the ANF backup policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesReplicationStatus.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesReplicationStatus.md index b388ab15782a..32c0d28195be 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesReplicationStatus.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesReplicationStatus.md @@ -164,6 +164,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + ## OUTPUTS ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesReplicationStatus diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md new file mode 100644 index 000000000000..16d607811069 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,183 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName -AccountName [-Name ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesSnapshotPolicy -ResourceId [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesSnapshotPolicy -AccountObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Snapshot Policy object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -Name +The name of the ANF snapshot policy + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: SnapshotPolicyName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Snapshot Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md new file mode 100644 index 000000000000..8e0f776335fc --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md @@ -0,0 +1,136 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesVault + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesVault -ResourceGroupName [-AccountName ] + [-DefaultProfile ] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesVault -AccountObject [-DefaultProfile ] + [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesVault -ResourceId [-DefaultProfile ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The account for the new backup object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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.NetAppFiles.Models.PSNetAppFilesAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..9e19a9ad37a7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,350 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesActiveDirectory + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesActiveDirectory -ResourceGroupName -Location -AccountName + -Name [-Dns ] -Domain [-Site ] -SmbServerName + [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] + [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain [-Site ] + -SmbServerName [-Username ] [-Password ] [-OrganizationalUnit ] + [-KdcIP ] [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] + -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Backup Policy object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AdName +Name of the active directory machine. +This optional parameter is used only while creating kerberos volume + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupOperators +Users to be added to the Built-in Backup Operator active directory group. +A list of unique usernames without domain specifier + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Dns +Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain +Name of the Active Directory domain + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -KdcIP +kdc server IP addresses for the active directory machine. +This optional parameter is used only while creating kerberos volume. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationalUnit +The Organizational Unit (OU) within the Windows Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Password +Plain text password of Active Directory domain administrator, value is masked in the response + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServerRootCACertificate +When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +The Active Directory site the service will limit Domain Controller discovery to + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SmbServerName +NetBIOS name of the SMB server. +This name will be registered as a computer account in the AD and used to mount volumes + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Username +Username of Active Directory domain administrator + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md new file mode 100644 index 000000000000..6332da2528f3 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md @@ -0,0 +1,221 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesBackup -ResourceGroupName -Location -AccountName -PoolName + -VolumeName -Name -Label [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesBackup -Name -Label -VolumeObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Label +Label for backup + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeObject +The volume for the new backup object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md new file mode 100644 index 000000000000..b09099be7854 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md @@ -0,0 +1,269 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesBackupPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesBackupPolicy -ResourceGroupName -Location -AccountName + -Name [-Enabled] [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesBackupPolicy -Name [-Enabled] [-DailyBackupsToKeep ] + [-WeeklyBackupsToKeep ] [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] + [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account object for the new Backup Policy + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DailyBackupsToKeep +Daily backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Enabled +The property to decide policy is enabled or not + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MonthlyBackupsToKeep +Monthly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable array which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WeeklyBackupsToKeep +Weekly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -YearlyBackupsToKeep +Yearly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md index f561adea6c41..e7a0d0e11fd6 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md @@ -15,15 +15,15 @@ Creates a new Azure NetApp Files (ANF) pool. ### ByFieldsParameterSet (Default) ``` New-AzNetAppFilesPool -ResourceGroupName -Location -AccountName -Name - -PoolSize -ServiceLevel [-Tag ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + -PoolSize -ServiceLevel [-QosType ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -New-AzNetAppFilesPool -Name -PoolSize -ServiceLevel [-Tag ] - -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +New-AzNetAppFilesPool -Name -PoolSize -ServiceLevel [-QosType ] + [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -142,27 +142,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -The resource group of the ANF account +### -QosType +The qos type of the pool. Possible values include: 'Auto', 'Manual' ```yaml Type: System.String -Parameter Sets: ByFieldsParameterSet +Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named -Default value: None +Default value: Auto Accept pipeline input: False Accept wildcard characters: False ``` -### -ServiceLevel -The service level of the ANF pool +### -ResourceGroupName +The resource group of the ANF account ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet Aliases: Required: True @@ -172,8 +172,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -QosType -The qos type of the pool. Possible values include: 'Auto', 'Manual' +### -ServiceLevel +The service level of the ANF pool ```yaml Type: System.String @@ -182,7 +182,7 @@ Aliases: Required: True Position: Named -Default value: Auto +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md new file mode 100644 index 000000000000..70d518dcaff1 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,270 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesSnapshotPolicy -ResourceGroupName -Location -AccountName + -Name [-Enabled] -HourlySchedule + -DailySchedule -WeeklySchedule + -MonthlySchedule [-Tag ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesSnapshotPolicy -Name [-Enabled] -HourlySchedule + -DailySchedule -WeeklySchedule + -MonthlySchedule [-Tag ] -AccountObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Snapshot Policy object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DailySchedule +A hashtable array which represents the daily Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Enabled +The property to decide policy is enabled or not + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HourlySchedule +A hashtable array which represents the hourly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MonthlySchedule +A hashtable array which represents the montly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF snapshot policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SnapshotPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable array which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WeeklySchedule +A hashtable array which represents the montly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md index 52dfc85d0923..4d76140266fe 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md @@ -17,16 +17,19 @@ Creates a new Azure NetApp Files (ANF) volume. New-AzNetAppFilesVolume -ResourceGroupName -Location -AccountName -PoolName -Name -UsageThreshold -SubnetId -CreationToken [-VolumeType ] -ServiceLevel [-SnapshotId ] [-ExportPolicy ] - [-ReplicationObject ] [-Snapshot ] [-Backup ] [-ProtocolType ] [-Tag ] - [-SnapshotDirectoryVisible] [-KerberosEnabled] [-BackupId ] [-SecurityStyle ] [-ThroughputMibps ] [-ThroughputMibps ] [-SecurityStyle ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ReplicationObject ] [-Snapshot ] + [-Backup ] [-ProtocolType ] [-SnapshotDirectoryVisible] + [-BackupId ] [-SecurityStyle ] [-ThroughputMibps ] [-KerberosEnabled] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` New-AzNetAppFilesVolume -Name -UsageThreshold -SubnetId -CreationToken -ServiceLevel [-ExportPolicy ] - [-ReplicationObject ] [-Snapshot ] [-Backup ] [-ProtocolType ] [-Tag ] + [-ReplicationObject ] [-Snapshot ] + [-Backup ] [-ProtocolType ] [-SnapshotDirectoryVisible] + [-SecurityStyle ] [-ThroughputMibps ] [-KerberosEnabled] [-Tag ] -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -74,6 +77,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Backup +A hashtable array which represents the backup object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupId +Backup ID. UUID v4 or resource identifier used to identify the Backup + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -CreationToken A unique file path for the volume @@ -119,6 +152,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -KerberosEnabled +Describe if a volume is Kerberos Enabled + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The location of the resource @@ -209,36 +257,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Snapshot -A hashtable array which represents the snapshot object - -```yaml -Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Backup -A hashtable array which represents the backup object - -```yaml -Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ResourceGroupName The resource group of the ANF account @@ -254,29 +272,14 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ServiceLevel -The service level of the ANF volume +### -SecurityStyle +The security style of volume. Possible values include: 'ntfs', 'unix' ```yaml Type: System.String Parameter Sets: (All) Aliases: -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SnapshotId -Create volume from a snapshot. UUID v4 or resource identifier used to identify the Snapshot - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - Required: False Position: Named Default value: None @@ -284,8 +287,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -SubnetId -The Azure Resource URI for a delegated subnet +### -ServiceLevel +The service level of the ANF volume ```yaml Type: System.String @@ -299,13 +302,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Tag -A hashtable which represents resource tags +### -Snapshot +A hashtable array which represents the snapshot object ```yaml -Type: System.Collections.Hashtable +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeSnapshot Parameter Sets: (All) -Aliases: Tags +Aliases: Required: False Position: Named @@ -314,23 +317,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -UsageThreshold -The maximum storage quota allowed for a file system in bytes +### -SnapshotDirectoryVisible +If enabled (true) the volume will contain a read-only .snapshot directory which provides access to each of the volume's snapshots (default to true) ```yaml -Type: System.Int64 +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -VolumeType -The type of the ANF volume +### -SnapshotId +Create volume from a snapshot. UUID v4 or resource identifier used to identify the Snapshot ```yaml Type: System.String @@ -344,28 +347,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -SnapshotDirectoryVisible -If enabled (true) the volume will contain a read-only .snapshot directory which provides access to each of the volume's snapshots (default to true) +### -SubnetId +The Azure Resource URI for a delegated subnet ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.String Parameter Sets: (All) -Aliases: wi +Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -KerberosEnabled -Describe if a volume is Kerberos Enabled +### -Tag +A hashtable which represents resource tags ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.Collections.Hashtable Parameter Sets: (All) -Aliases: wi +Aliases: Tags Required: False Position: Named @@ -374,14 +377,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` - - -### -BackupId -Backup ID. UUID v4 or resource identifier used to identify the Backup +### -ThroughputMibps +Maximum throughput in Mibps that can be achieved by this volume ```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet +Type: System.Nullable`1[System.Double] +Parameter Sets: (All) Aliases: Required: False @@ -391,26 +392,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -SecurityStyle -The security style of volume. Possible values include: 'ntfs', 'unix' +### -UsageThreshold +The maximum storage quota allowed for a file system in bytes ```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet +Type: System.Int64 +Parameter Sets: (All) Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ThroughputMibps -Maximum throughput in Mibps that can be achieved by this volume +### -VolumeType +The type of the ANF volume ```yaml -Type: System.Double +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -457,8 +458,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String - ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool ## OUTPUTS diff --git a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md index 956221b547d1..5c0ac8369c68 100644 --- a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md @@ -14,25 +14,26 @@ Change pool for an Azure NetApp Files (ANF) volume. ### ByFieldsParameterSet (Default) ``` -PoolChange-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name - [-NewPoolResourceId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +PoolChange-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName + -Name [-NewPoolResourceId ] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Remove-AzNetAppFilesVolume -Name -PoolObject [-PassThru] +PoolChange-AzNetAppFilesVolume -Name -PoolObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Remove-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] +PoolChange-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Remove-AzNetAppFilesVolume -InputObject [-PassThru] +PoolChange-AzNetAppFilesVolume -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -110,6 +111,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NewPoolResourceId +ResourceId of the pool to change to. +UUID v4 used to identify the Pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PassThru Return whether the specified volume was successfully removed @@ -184,21 +201,6 @@ Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -NewPoolResourceId -ResourceId of the pool to change to. -UUID v4 used to identify the Pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..57836b4a285f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,175 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesActiveDirectory + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Name ] + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesActiveDirectory [-Name ] -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the Active Directory object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -Name +The name of the ANF Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified Active Directory was successfully removed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md new file mode 100644 index 000000000000..641f0c8b871c --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md @@ -0,0 +1,252 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesBackup -ResourceGroupName [-AccountName ] -PoolName + [-VolumeName ] [-Name ] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesBackup [-Name ] -ResourceId [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesBackup [-Name ] -VolumeObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesBackup [-Name ] -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The snapshot object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified backup was successfully removed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeObject +The volume object containing the backup to return + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md new file mode 100644 index 000000000000..0ca65a53a8af --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md @@ -0,0 +1,221 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesBackupPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesBackupPolicy -ResourceGroupName -AccountName -Name [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -Name -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -Name -ResourceId [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -Name -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account object containing the Backup Policy to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The BackupPolicy object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified backup policy was successfully removed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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.NetAppFiles.Models.PSNetAppFilesAccount + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md new file mode 100644 index 000000000000..1e2bd4772a88 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,221 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName -AccountName -Name [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Snapshot Policy object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The SnapshotPolicy object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF snapshot policy + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: SnapshotPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified account was successfully removed + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Snapshot Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Restore-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Restore-AzNetAppFilesVolume.md index 80081b3c1da0..58cce7b5f53e 100644 --- a/src/NetAppFiles/NetAppFiles/help/Restore-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/Restore-AzNetAppFilesVolume.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version:https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/restore-aznetappfilesvolume +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/restore-aznetappfilesvolume schema: 2.0.0 --- @@ -14,7 +14,7 @@ Restore/Revert a volume to one of its snapshots ### ByFieldsParameterSet (Default) ``` -Revert-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name +Restore-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name [-SnapshotId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -55,7 +55,7 @@ This command Restores/Reverts the volume MyVolume to one of its snapshots with t The name of the ANF account ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -70,7 +70,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -85,7 +85,7 @@ Accept wildcard characters: False The volume object to remove ```yaml -Type: PSNetAppFilesVolume +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume Parameter Sets: ByObjectParameterSet Aliases: @@ -100,7 +100,7 @@ Accept wildcard characters: False The name of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: VolumeName @@ -115,7 +115,7 @@ Accept wildcard characters: False Return whether the specified volume was successfully restored/reverted ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -130,7 +130,7 @@ Accept wildcard characters: False The name of the ANF pool ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -145,7 +145,7 @@ Accept wildcard characters: False The pool object containing the volume to remove ```yaml -Type: PSNetAppFilesPool +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool Parameter Sets: ByParentObjectParameterSet Aliases: @@ -160,7 +160,7 @@ Accept wildcard characters: False The resource group of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -175,7 +175,7 @@ Accept wildcard characters: False The resource id of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceIdParameterSet Aliases: @@ -191,7 +191,7 @@ SnapshotId of the snapshot. UUID v4 used to identify the Snapshot ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -206,7 +206,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -222,7 +222,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..64b2604155a6 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md @@ -0,0 +1,253 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Revert-AzNetAppFilesVolume + +## SYNOPSIS +Revert a volume to one of its snapshots + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Revert-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name + [-SnapshotId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Revert-AzNetAppFilesVolume -Name -PoolObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Revert-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Revert-AzNetAppFilesVolume -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The volume object to remove + +```yaml +Type: PSNetAppFilesVolume +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified volume was successfully reverted + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolObject +The pool object containing the volume to remove + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF volume + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SnapshotId +SnapshotId of the snapshot. +UUID v4 used to identify the Snapshot + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: 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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md index c21a86229a43..1e9941e7526b 100644 --- a/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md +++ b/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md @@ -21,13 +21,13 @@ Suspend-AzNetAppFilesReplication -ResourceGroupName -AccountName [-ForceBreak] [-PassThru] [-DefaultProfile ] +Suspend-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Suspend-AzNetAppFilesReplication -InputObject [-ForceBreak] [-PassThru] +Suspend-AzNetAppFilesReplication -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -75,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ForceBreak +If replication is in status transferring and you want to force break the replication, set to true + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject The ANF destination volume object with the replication to break diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md index 7a3cb1771b26..72d7a66ce018 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesAccount.md @@ -214,7 +214,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### None +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount ## OUTPUTS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..3560f69d54ee --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,365 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesActiveDirectory + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesActiveDirectory -ResourceGroupName -Location -AccountName + -Name [-Dns ] -Domain -Site -SmbServerName [-Username ] + [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] + [-ServerRootCACertificate ] [-AdName ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain -Site + -SmbServerName [-Username ] [-Password ] [-OrganizationalUnit ] + [-KdcIP ] [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] + [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The account for the active directory object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AdName +Name of the active directory machine. +This optional parameter is used only while creating kerberos volume + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupOperators +Users to be added to the Built-in Backup Operator active directory group. +A list of unique usernames without domain specifier + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Dns +Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain +Name of the Active Directory domain + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -KdcIP +kdc server IP addresses for the active directory machine. +This optional parameter is used only while creating kerberos volume. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrganizationalUnit +The Organizational Unit (OU) within the Windows Active Directory + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Password +Plain text password of Active Directory domain administrator, value is masked in the response + +```yaml +Type: System.Security.SecureString +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServerRootCACertificate +When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +The Active Directory site the service will limit Domain Controller discovery to + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SmbServerName +NetBIOS name of the SMB server. +This name will be registered as a computer account in the AD and used to mount volumes + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable array which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Username +Username of Active Directory domain administrator + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +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.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md new file mode 100644 index 000000000000..f04e48c3a5c7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md @@ -0,0 +1,284 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesBackup + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesBackup -ResourceGroupName -Location -AccountName -Name + -PoolName -VolumeName [-Label ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] + -VolumeObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The snapshot object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Label +Label for backup + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +A hashtable which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VolumeObject +The volume object containing the backup to return + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackup + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md new file mode 100644 index 000000000000..d86c6c3467c0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md @@ -0,0 +1,303 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesBackupPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesBackupPolicy -ResourceGroupName -Location -AccountName + -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] [-MonthlyBackupsToKeep ] + [-YearlyBackupsToKeep ] [-Tag ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] + -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account object containing the Backup Policy to update + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DailyBackupsToKeep +Daily backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -InputObject +The BackupPolicy object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MonthlyBackupsToKeep +Monthly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF backup policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: BackupPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Backup Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +A hashtable array which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WeeklyBackupsToKeep +Weekly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -YearlyBackupsToKeep +Yearly backups count to keep + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesBackupPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md index 1d4c76735e2d..2c6272d9c7b5 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md @@ -171,48 +171,48 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -The resource group of the ANF account +### -QosType +The qos type of the pool. Possible values include: 'Auto', 'Manual' ```yaml Type: System.String -Parameter Sets: ByFieldsParameterSet +Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceId -The resource id of the ANF pool +### -ResourceGroupName +The resource group of the ANF account ```yaml Type: System.String -Parameter Sets: ByResourceIdParameterSet +Parameter Sets: ByFieldsParameterSet Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` -### -QosType -The qos type of the pool. Possible values include: 'Auto', 'Manual' +### -ResourceId +The resource id of the ANF pool ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByResourceIdParameterSet Aliases: -Required: False +Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md new file mode 100644 index 000000000000..bb6fc4c2f00b --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,323 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesSnapshotPolicy -ResourceGroupName -Location -AccountName + -Name -Enabled -HourlySchedule + -DailySchedule -WeeklySchedule + -MonthlySchedule [-Tag ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesSnapshotPolicy -Name -Enabled + -HourlySchedule -DailySchedule + -WeeklySchedule -MonthlySchedule + -ResourceId [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesSnapshotPolicy -Name -Enabled + -HourlySchedule -DailySchedule + -WeeklySchedule -MonthlySchedule + [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesSnapshotPolicy -Name -Enabled + -HourlySchedule -DailySchedule + -WeeklySchedule -MonthlySchedule + [-Tag ] -InputObject [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountObject +The Account for the new Snapshot Policy object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DailySchedule +A hashtable array which represents the daily Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Enabled +The property to decide policy is enabled or not + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HourlySchedule +A hashtable array which represents the hourly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The snapshot object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MonthlySchedule +A hashtable array which represents the montly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF snapshot policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SnapshotPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF Snapshot Policy + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Tag +A hashtable array which represents resource tags + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WeeklySchedule +A hashtable array which represents the montly Schedule + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshotPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md index 11a65110d19b..a7f2694799a2 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md @@ -16,28 +16,32 @@ Updates an Azure NetApp Files (ANF) volume according to the optional modifiers p ``` Update-AzNetAppFilesVolume -ResourceGroupName -Location -AccountName -PoolName -Name [-UsageThreshold ] [-ServiceLevel ] - [-ExportPolicy ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ExportPolicy ] [-Backup ] + [-ThroughputMibps ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByParentObjectParameterSet ``` Update-AzNetAppFilesVolume -Name [-UsageThreshold ] [-ServiceLevel ] - [-ExportPolicy ] [-Tag ] -PoolObject + [-ExportPolicy ] [-Backup ] + [-ThroughputMibps ] [-Tag ] -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` Update-AzNetAppFilesVolume [-UsageThreshold ] [-ServiceLevel ] - [-ExportPolicy ] [-Tag ] -ResourceId - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ExportPolicy ] [-Backup ] + [-ThroughputMibps ] [-Tag ] -ResourceId [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` Update-AzNetAppFilesVolume [-UsageThreshold ] [-ServiceLevel ] - [-ExportPolicy ] [-Tag ] -InputObject + [-ExportPolicy ] [-Backup ] + [-ThroughputMibps ] [-Tag ] -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -84,6 +88,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Backup +A hashtable array which represents the backup object + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolumeBackupProperties +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -249,6 +268,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ThroughputMibps +Maximum throughput in Mibps that can be achieved by this volume + +```yaml +Type: System.Nullable`1[System.Double] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -UsageThreshold The maximum storage quota allowed for a file system in bytes From ed149921920df77c8152eb753fdb49970495f36f Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Fri, 30 Oct 2020 09:53:27 +0000 Subject: [PATCH 03/22] Updated test recordings --- .../TestAccountActiveDirectory.json | 544 +- .../TestActiveDirectoryCrud.json | 1651 ++ .../TestActiveDirectoryPipelines.json | 1358 ++ .../TestBackupPolicyCrud.json | 2329 +++ .../TestBackupPolicyPipelines.json | 1708 ++ .../TestBackupCrud.json | 5287 ++++++ .../TestBackupPipelines.json | 4797 +++++ .../TestSnapshotPolicyCrud.json | 1860 ++ .../TestSnapshotPolicyPipelines.json | 1270 ++ .../TestVaultCrud.json | 820 + .../TestVaultPipelines.json | 1108 ++ .../TestVolumePoolChange.json | 4051 ++++ .../TestVolumeReplication.json | 15355 ++++++++++++++++ 13 files changed, 41866 insertions(+), 272 deletions(-) create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultPipelines.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountActiveDirectory.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountActiveDirectory.json index 50d929082aba..d005f3de546c 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountActiveDirectory.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountActiveDirectory.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourcegroups/ps1619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlZ3JvdXBzL3BzMTYxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2952?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa779e5c-8450-42dc-bc5b-ef8fa64e73f3" + "aa21c358-041a-4e17-9bc6-e43e052fa2b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "35" + "29" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "c2adfa3b-dc08-439a-88a2-c152d83a144c" + "f8ca12fd-cf63-4438-af24-6e56a35d9c40" ], "x-ms-correlation-request-id": [ - "c2adfa3b-dc08-439a-88a2-c152d83a144c" + "f8ca12fd-cf63-4438-af24-6e56a35d9c40" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154018Z:c2adfa3b-dc08-439a-88a2-c152d83a144c" + "FRANCESOUTH:20201029T152423Z:f8ca12fd-cf63-4438-af24-6e56a35d9c40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:40:18 GMT" + "Thu, 29 Oct 2020 15:24:22 GMT" ], "Content-Length": [ - "172" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619\",\r\n \"name\": \"ps1619\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952\",\r\n \"name\": \"ps2952\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"sdkpass1\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"sdkpass1\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c39e6b-f041-4c63-a66b-49659741cb59" + "a6b71105-edb4-454b-85b7-27b6416b1b5f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "506" + "500" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A40%3A25.2274962Z'\"" + "W/\"datetime'2020-10-29T15%3A24%3A30.621488Z'\"" ], "x-ms-request-id": [ - "3f2e5a66-cd44-4cd3-815b-9306eacb6207" + "4f463574-2024-4289-bddd-93edcb3429c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4d59cf78-db9f-4367-9d7c-26cad8e86b9d?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/1e567ac0-cee2-4587-a64a-73d9b3f33db9?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "0bf7fec2-810f-49b0-b328-7448eb159669" + "6a5388c8-1508-4b79-89a0-112961e107a6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154026Z:0bf7fec2-810f-49b0-b328-7448eb159669" + "FRANCESOUTH:20201029T152431Z:6a5388c8-1508-4b79-89a0-112961e107a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:40:25 GMT" + "Thu, 29 Oct 2020 15:24:31 GMT" ], "Content-Length": [ - "612" + "605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,32 +147,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A40%3A25.2274962Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A24%3A30.621488Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1d7b20aa-b846-4aff-9003-500fb154602e" + "102ea59e-c912-4b21-bcca-b9ecf532f391" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "315" ] }, "ResponseHeaders": { @@ -183,13 +183,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A40%3A56.8850403Z'\"" + "W/\"datetime'2020-10-29T15%3A25%3A02.5155331Z'\"" ], "x-ms-request-id": [ - "0a920727-a7f6-4509-87a7-7e75f2cf3fa7" + "2bf56890-3c5f-4c9f-abec-d718f3611a36" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb228b7-32ab-4557-9e2e-d1ac2a9971f5?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/9305e6d3-e9c6-47d1-8747-0eb413ee0bf0?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -207,10 +207,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "0be36468-2200-4541-9e79-672883db602c" + "3d56b3ce-76cc-484e-8d15-5e88655812cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154057Z:0be36468-2200-4541-9e79-672883db602c" + "FRANCESOUTH:20201029T152502Z:3d56b3ce-76cc-484e-8d15-5e88655812cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -219,10 +219,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:40:56 GMT" + "Thu, 29 Oct 2020 15:25:01 GMT" ], "Content-Length": [ - "612" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,32 +231,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A40%3A56.8850403Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A25%3A02.5155331Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n },\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"activeDirectories\": []\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": []\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d965b6-eb6a-4aaa-a0c5-1c2a73ab3e9a" + "8884841d-43ee-4753-8852-651c48789705" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "89" + "83" ] }, "ResponseHeaders": { @@ -267,13 +267,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A41%3A32.2622304Z'\"" + "W/\"datetime'2020-10-29T15%3A25%3A38.3873246Z'\"" ], "x-ms-request-id": [ - "894a6b3a-ce44-498a-974d-215c66e55cb3" + "ac37af46-caa9-41e3-b901-8be83c219d2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/84121395-7b5a-421b-b98d-f19eb9ee118f?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/d8568126-72f7-410b-8d44-d1a915e8d009?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -291,10 +291,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "4ff274fd-c7c3-415c-ab69-288409bb845f" + "7b5276e2-39bf-42d7-ad07-3bb183f31b46" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154133Z:4ff274fd-c7c3-415c-ab69-288409bb845f" + "FRANCESOUTH:20201029T152539Z:7b5276e2-39bf-42d7-ad07-3bb183f31b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:41:33 GMT" + "Thu, 29 Oct 2020 15:25:39 GMT" ], "Content-Length": [ - "604" + "598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,20 +315,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A41%3A32.2622304Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"36585267-8153-ec0e-13dc-e44333286f45\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A25%3A38.3873246Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"93447c71-a657-c7e2-e677-b9bad5fa4957\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4d59cf78-db9f-4367-9d7c-26cad8e86b9d?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNGQ1OWNmNzgtZGI5Zi00MzY3LTlkN2MtMjZjYWQ4ZTg2YjlkP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/1e567ac0-cee2-4587-a64a-73d9b3f33db9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMWU1NjdhYzAtY2VlMi00NTg3LWE2NGEtNzNkOWIzZjMzZGI5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -339,7 +339,7 @@ "no-cache" ], "x-ms-request-id": [ - "5648ba24-f2b0-42a5-b273-22e271c74033" + "8f5ee8b2-1682-41c3-9c1e-81da9bfbd41b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -357,10 +357,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "912058d0-e7fd-4453-81c9-8bdde8325a28" + "efd71198-43a7-4bab-a8f4-998b8e9a23dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154056Z:912058d0-e7fd-4453-81c9-8bdde8325a28" + "FRANCESOUTH:20201029T152502Z:efd71198-43a7-4bab-a8f4-998b8e9a23dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,10 +369,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:40:55 GMT" + "Thu, 29 Oct 2020 15:25:01 GMT" ], "Content-Length": [ - "872" + "866" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,20 +381,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4d59cf78-db9f-4367-9d7c-26cad8e86b9d\",\r\n \"name\": \"4d59cf78-db9f-4367-9d7c-26cad8e86b9d\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2020-09-07T15:40:24.9732926Z\",\r\n \"endTime\": \"2020-09-07T15:40:25.3794778Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\"\r\n },\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Only one active directory allowed within the same region. Account in resource group currently has an active directory connection string.\",\r\n \"details\": [\r\n {\r\n \"code\": \"TooManyActiveDirectories\",\r\n \"message\": \"Only one active directory allowed within the same region. Account in resource group currently has an active directory connection string.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/1e567ac0-cee2-4587-a64a-73d9b3f33db9\",\r\n \"name\": \"1e567ac0-cee2-4587-a64a-73d9b3f33db9\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2020-10-29T15:24:30.5390415Z\",\r\n \"endTime\": \"2020-10-29T15:24:30.7721849Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\"\r\n },\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Only one active directory allowed within the same region. Account in resource group currently has an active directory connection string.\",\r\n \"details\": [\r\n {\r\n \"code\": \"TooManyActiveDirectories\",\r\n \"message\": \"Only one active directory allowed within the same region. Account in resource group currently has an active directory connection string.\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb228b7-32ab-4557-9e2e-d1ac2a9971f5?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGViMjI4YjctMzJhYi00NTU3LTllMmUtZDFhYzJhOTk3MWY1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/9305e6d3-e9c6-47d1-8747-0eb413ee0bf0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOTMwNWU2ZDMtZTljNi00N2QxLTg3NDctMGViNDEzZWUwYmYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -405,7 +405,7 @@ "no-cache" ], "x-ms-request-id": [ - "2e6eb51e-1de1-4699-a300-57b5ed4e82fd" + "c7a5d977-a5d0-4cf9-9824-07095fda43a8" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -423,10 +423,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "d265b9f2-5310-4e98-9096-0277eb616292" + "be059543-fc4e-4234-82ef-7864d87234dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154127Z:d265b9f2-5310-4e98-9096-0277eb616292" + "FRANCESOUTH:20201029T152532Z:be059543-fc4e-4234-82ef-7864d87234dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,10 +435,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:41:27 GMT" + "Thu, 29 Oct 2020 15:25:32 GMT" ], "Content-Length": [ - "493" + "489" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,20 +447,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb228b7-32ab-4557-9e2e-d1ac2a9971f5\",\r\n \"name\": \"0eb228b7-32ab-4557-9e2e-d1ac2a9971f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T15:40:56.80152Z\",\r\n \"endTime\": \"2020-09-07T15:40:57.6617879Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/9305e6d3-e9c6-47d1-8747-0eb413ee0bf0\",\r\n \"name\": \"9305e6d3-e9c6-47d1-8747-0eb413ee0bf0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T15:25:02.4416403Z\",\r\n \"endTime\": \"2020-10-29T15:25:02.9259964Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -471,10 +471,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A40%3A57.6535877Z'\"" + "W/\"datetime'2020-10-29T15%3A25%3A02.9278183Z'\"" ], "x-ms-request-id": [ - "9d95c72d-7ef0-49de-9cec-e2b53d4d3dad" + "f711850f-5301-46d3-901f-dffc8f7c4306" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -492,10 +492,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "ceeeef45-2576-4950-9627-f57836067504" + "21815b8e-d16c-4a95-a0db-4eb8f82a0d87" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154127Z:ceeeef45-2576-4950-9627-f57836067504" + "FRANCESOUTH:20201029T152533Z:21815b8e-d16c-4a95-a0db-4eb8f82a0d87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,10 +504,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:41:27 GMT" + "Thu, 29 Oct 2020 15:25:33 GMT" ], "Content-Length": [ - "605" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,20 +516,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A40%3A57.6535877Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"36585267-8153-ec0e-13dc-e44333286f45\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A25%3A02.9278183Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"93447c71-a657-c7e2-e677-b9bad5fa4957\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -540,10 +540,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A41%3A33.0417835Z'\"" + "W/\"datetime'2020-10-29T15%3A25%3A38.9717294Z'\"" ], "x-ms-request-id": [ - "b107cc39-0897-4318-bc01-3bc5d85b7653" + "267360d4-4b12-4327-a9b2-813961dc8b43" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -561,10 +561,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "926cd6f9-ffa5-470d-b81f-c15cf0d3d575" + "2f1bb641-548a-4a4b-b8af-b971a663fdbf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154204Z:926cd6f9-ffa5-470d-b81f-c15cf0d3d575" + "FRANCESOUTH:20201029T152610Z:2f1bb641-548a-4a4b-b8af-b971a663fdbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,10 +573,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:03 GMT" + "Thu, 29 Oct 2020 15:26:09 GMT" ], "Content-Length": [ - "320" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,32 +585,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A41%3A33.0417835Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A25%3A38.9717294Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1eb294b-e26a-4cf4-bccb-9f15a4d86c51" + "fa0803ed-33fc-4ef6-9c85-723492969b2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "79" + "73" ] }, "ResponseHeaders": { @@ -621,10 +621,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A41%3A28.5525843Z'\"" + "W/\"datetime'2020-10-29T15%3A25%3A34.453606Z'\"" ], "x-ms-request-id": [ - "26a06cb1-bbf1-427a-82ca-67b0320a76b5" + "b3516708-a4f5-4e8d-af0f-c74a645af21a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -642,10 +642,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "b8bd806b-897a-4f27-870e-4acb5bff589f" + "1bca8615-7dc5-4400-a0d6-81f35c2c53ae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154131Z:b8bd806b-897a-4f27-870e-4acb5bff589f" + "FRANCESOUTH:20201029T152537Z:1bca8615-7dc5-4400-a0d6-81f35c2c53ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,10 +654,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:41:30 GMT" + "Thu, 29 Oct 2020 15:25:37 GMT" ], "Content-Length": [ - "605" + "598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,32 +666,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A41%3A28.5525843Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"36585267-8153-ec0e-13dc-e44333286f45\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A25%3A34.453606Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"93447c71-a657-c7e2-e677-b9bad5fa4957\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlR3JvdXBzL3BzMTYxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU2NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"sdkpass1\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"sdkpass1\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8df64-619e-45f0-83e9-a8e83a82fcc3" + "386f6267-4a48-4298-843b-c0f1d67fedbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "279" + "273" ] }, "ResponseHeaders": { @@ -702,10 +702,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T15%3A42%3A04.6713012Z'\"" + "W/\"datetime'2020-10-29T15%3A26%3A10.489518Z'\"" ], "x-ms-request-id": [ - "9b7d9b14-9ec6-4fb3-a048-d99d710dfed8" + "1bbaa373-46da-420c-8984-f5adc76def74" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -723,10 +723,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "b2f53c42-1c48-4861-b8bc-f3d23a71f20e" + "cf2c892d-166a-401f-a875-4a49d7958f1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154205Z:b2f53c42-1c48-4861-b8bc-f3d23a71f20e" + "FRANCESOUTH:20201029T152611Z:cf2c892d-166a-401f-a875-4a49d7958f1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:04 GMT" + "Thu, 29 Oct 2020 15:26:10 GMT" ], "Content-Length": [ - "578" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,20 +747,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\",\r\n \"name\": \"ps7700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T15%3A42%3A04.6713012Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"e15c979a-bf1c-30ab-e465-106bfe60ccbe\",\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\",\r\n \"name\": \"ps5665\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T15%3A26%3A10.489518Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"ca24bcd6-a55d-9dbd-ebed-6702beff614c\",\r\n \"username\": \"sdkuser1\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/84121395-7b5a-421b-b98d-f19eb9ee118f?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODQxMjEzOTUtN2I1YS00MjFiLWI5OGQtZjE5ZWI5ZWUxMThmP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/d8568126-72f7-410b-8d44-d1a915e8d009?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDg1NjgxMjYtNzJmNy00MTBiLThkNDQtZDFhOTE1ZThkMDA5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -771,7 +771,7 @@ "no-cache" ], "x-ms-request-id": [ - "812d88b9-29a4-4d20-a549-46635924d818" + "31924ef1-37d8-4f34-b6f5-cd628b87f0d9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -789,10 +789,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "0f187f34-8717-4489-9cee-26956934a898" + "79218994-3b17-4e94-ac35-ec30e1aa87e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154203Z:0f187f34-8717-4489-9cee-26956934a898" + "FRANCESOUTH:20201029T152609Z:79218994-3b17-4e94-ac35-ec30e1aa87e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,10 +801,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:03 GMT" + "Thu, 29 Oct 2020 15:26:09 GMT" ], "Content-Length": [ - "494" + "489" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,26 +813,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/84121395-7b5a-421b-b98d-f19eb9ee118f\",\r\n \"name\": \"84121395-7b5a-421b-b98d-f19eb9ee118f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T15:41:31.979415Z\",\r\n \"endTime\": \"2020-09-07T15:41:33.0431075Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps1619/providers/Microsoft.NetApp/netAppAccounts/ps7700\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/d8568126-72f7-410b-8d44-d1a915e8d009\",\r\n \"name\": \"d8568126-72f7-410b-8d44-d1a915e8d009\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T15:25:38.3271082Z\",\r\n \"endTime\": \"2020-10-29T15:25:38.9745138Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2952/providers/Microsoft.NetApp/netAppAccounts/ps5665\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourcegroups/ps1619?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Jlc291cmNlZ3JvdXBzL3BzMTYxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2952?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef3fe031-52b9-4ccc-8b70-34dad36b2b42" + "1d931339-e662-4492-a7b6-0105d60f6ddf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -843,7 +843,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -852,13 +852,13 @@ "14999" ], "x-ms-request-id": [ - "469c2661-785d-4ee9-ab99-6c65354847be" + "ad52291e-8e68-42eb-b33a-c70d89702f84" ], "x-ms-correlation-request-id": [ - "469c2661-785d-4ee9-ab99-6c65354847be" + "ad52291e-8e68-42eb-b33a-c70d89702f84" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154208Z:469c2661-785d-4ee9-ab99-6c65354847be" + "FRANCESOUTH:20201029T152614Z:ad52291e-8e68-42eb-b33a-c70d89702f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,7 +867,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:07 GMT" + "Thu, 29 Oct 2020 15:26:14 GMT" ], "Expires": [ "-1" @@ -880,16 +880,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -900,22 +900,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "4e513a29-d58f-4e5a-928f-c1c873d74cdf" + "84841dcf-87ed-4f94-89e5-b68064843112" ], "x-ms-correlation-request-id": [ - "4e513a29-d58f-4e5a-928f-c1c873d74cdf" + "84841dcf-87ed-4f94-89e5-b68064843112" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154223Z:4e513a29-d58f-4e5a-928f-c1c873d74cdf" + "FRANCESOUTH:20201029T152629Z:84841dcf-87ed-4f94-89e5-b68064843112" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,7 +924,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:22 GMT" + "Thu, 29 Oct 2020 15:26:29 GMT" ], "Expires": [ "-1" @@ -937,16 +937,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -957,22 +957,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "1b20dc10-9e1b-4946-ab78-63c585bb8a8b" + "d6cf2288-2ce7-4bba-8bd6-adbdf842ec7c" ], "x-ms-correlation-request-id": [ - "1b20dc10-9e1b-4946-ab78-63c585bb8a8b" + "d6cf2288-2ce7-4bba-8bd6-adbdf842ec7c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154238Z:1b20dc10-9e1b-4946-ab78-63c585bb8a8b" + "FRANCESOUTH:20201029T152645Z:d6cf2288-2ce7-4bba-8bd6-adbdf842ec7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,7 +981,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:37 GMT" + "Thu, 29 Oct 2020 15:26:44 GMT" ], "Expires": [ "-1" @@ -994,16 +994,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1014,22 +1014,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "702573a8-1a4d-4bdd-a6bb-b732ce68404e" + "05930157-26c9-4c27-9ebd-a74d995f7126" ], "x-ms-correlation-request-id": [ - "702573a8-1a4d-4bdd-a6bb-b732ce68404e" + "05930157-26c9-4c27-9ebd-a74d995f7126" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154253Z:702573a8-1a4d-4bdd-a6bb-b732ce68404e" + "FRANCESOUTH:20201029T152700Z:05930157-26c9-4c27-9ebd-a74d995f7126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,7 +1038,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:42:53 GMT" + "Thu, 29 Oct 2020 15:26:59 GMT" ], "Expires": [ "-1" @@ -1051,16 +1051,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1071,22 +1071,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "94a3e9f3-0174-46df-85ff-33f19188a631" + "184137d9-7b57-4983-b564-0e9429f910dc" ], "x-ms-correlation-request-id": [ - "94a3e9f3-0174-46df-85ff-33f19188a631" + "184137d9-7b57-4983-b564-0e9429f910dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154309Z:94a3e9f3-0174-46df-85ff-33f19188a631" + "FRANCESOUTH:20201029T152716Z:184137d9-7b57-4983-b564-0e9429f910dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1095,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:43:09 GMT" + "Thu, 29 Oct 2020 15:27:15 GMT" ], "Expires": [ "-1" @@ -1108,16 +1108,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1128,22 +1128,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "75ce6c4e-6224-4a7d-b3e3-54b1dea823ba" + "d86e6786-8470-411c-b80c-c20e58bedeb0" ], "x-ms-correlation-request-id": [ - "75ce6c4e-6224-4a7d-b3e3-54b1dea823ba" + "d86e6786-8470-411c-b80c-c20e58bedeb0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154324Z:75ce6c4e-6224-4a7d-b3e3-54b1dea823ba" + "FRANCESOUTH:20201029T152731Z:d86e6786-8470-411c-b80c-c20e58bedeb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,7 +1152,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:43:24 GMT" + "Thu, 29 Oct 2020 15:27:31 GMT" ], "Expires": [ "-1" @@ -1165,16 +1165,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1185,22 +1185,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "d0cedd23-808d-4ef6-868b-f0347963496f" + "cda3da87-e85b-4e5a-8868-64fee2aa7d66" ], "x-ms-correlation-request-id": [ - "d0cedd23-808d-4ef6-868b-f0347963496f" + "cda3da87-e85b-4e5a-8868-64fee2aa7d66" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154339Z:d0cedd23-808d-4ef6-868b-f0347963496f" + "FRANCESOUTH:20201029T152746Z:cda3da87-e85b-4e5a-8868-64fee2aa7d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,7 +1209,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:43:39 GMT" + "Thu, 29 Oct 2020 15:27:46 GMT" ], "Expires": [ "-1" @@ -1222,16 +1222,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1242,22 +1242,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "25ac5424-f9ea-4af0-9a0b-be5c1ea80aeb" + "7b96be7a-eb67-4cb4-a437-e23b599c870f" ], "x-ms-correlation-request-id": [ - "25ac5424-f9ea-4af0-9a0b-be5c1ea80aeb" + "7b96be7a-eb67-4cb4-a437-e23b599c870f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154355Z:25ac5424-f9ea-4af0-9a0b-be5c1ea80aeb" + "FRANCESOUTH:20201029T152802Z:7b96be7a-eb67-4cb4-a437-e23b599c870f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,7 +1266,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:43:54 GMT" + "Thu, 29 Oct 2020 15:28:01 GMT" ], "Expires": [ "-1" @@ -1279,16 +1279,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1299,22 +1299,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "ba29a207-61f2-412d-b957-8a592628d3eb" + "3926eee9-3370-440f-a7ea-1f93b2198d7a" ], "x-ms-correlation-request-id": [ - "ba29a207-61f2-412d-b957-8a592628d3eb" + "3926eee9-3370-440f-a7ea-1f93b2198d7a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154410Z:ba29a207-61f2-412d-b957-8a592628d3eb" + "FRANCESOUTH:20201029T152817Z:3926eee9-3370-440f-a7ea-1f93b2198d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1323,7 +1323,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:44:09 GMT" + "Thu, 29 Oct 2020 15:28:17 GMT" ], "Expires": [ "-1" @@ -1336,16 +1336,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1356,22 +1356,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "e485ad8f-c53c-4fc7-ae03-73f610b672f1" + "af3a6646-0562-42b6-b1ff-1eac65578439" ], "x-ms-correlation-request-id": [ - "e485ad8f-c53c-4fc7-ae03-73f610b672f1" + "af3a6646-0562-42b6-b1ff-1eac65578439" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154425Z:e485ad8f-c53c-4fc7-ae03-73f610b672f1" + "FRANCESOUTH:20201029T152833Z:af3a6646-0562-42b6-b1ff-1eac65578439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,7 +1380,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:44:25 GMT" + "Thu, 29 Oct 2020 15:28:32 GMT" ], "Expires": [ "-1" @@ -1393,16 +1393,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1413,22 +1413,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "134bb478-b9d2-4c0b-a134-1b49e502d39e" + "94605e4a-acc4-4e8d-a689-8470ebf72b32" ], "x-ms-correlation-request-id": [ - "134bb478-b9d2-4c0b-a134-1b49e502d39e" + "94605e4a-acc4-4e8d-a689-8470ebf72b32" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154440Z:134bb478-b9d2-4c0b-a134-1b49e502d39e" + "FRANCESOUTH:20201029T152848Z:94605e4a-acc4-4e8d-a689-8470ebf72b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:44:40 GMT" + "Thu, 29 Oct 2020 15:28:47 GMT" ], "Expires": [ "-1" @@ -1450,16 +1450,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1470,16 +1470,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "aaf2b86a-0987-40bd-b61e-7a0df2debf21" + "452251f7-cc6b-4004-b0f0-0a97a26f2391" ], "x-ms-correlation-request-id": [ - "aaf2b86a-0987-40bd-b61e-7a0df2debf21" + "452251f7-cc6b-4004-b0f0-0a97a26f2391" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154456Z:aaf2b86a-0987-40bd-b61e-7a0df2debf21" + "FRANCESOUTH:20201029T152903Z:452251f7-cc6b-4004-b0f0-0a97a26f2391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1488,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:44:55 GMT" + "Thu, 29 Oct 2020 15:29:02 GMT" ], "Expires": [ "-1" @@ -1501,16 +1501,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NTItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU5USXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1521,16 +1521,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "b82d9605-5007-4248-bb6b-cf2e578bbf54" + "b271ff5b-9415-45bc-94be-d384006a1767" ], "x-ms-correlation-request-id": [ - "b82d9605-5007-4248-bb6b-cf2e578bbf54" + "b271ff5b-9415-45bc-94be-d384006a1767" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T154456Z:b82d9605-5007-4248-bb6b-cf2e578bbf54" + "FRANCESOUTH:20201029T152904Z:b271ff5b-9415-45bc-94be-d384006a1767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,7 +1539,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 15:44:55 GMT" + "Thu, 29 Oct 2020 15:29:03 GMT" ], "Expires": [ "-1" @@ -1554,13 +1554,13 @@ ], "Names": { "Test-AccountActiveDirectory": [ - "ps1619", - "ps7700", - "ps1056", - "ps5977" + "ps2952", + "ps5665", + "ps7467", + "ps7803" ] }, "Variables": { - "SubscriptionId": "0661b131-4a11-479b-96bf-2f95acca2f73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json new file mode 100644 index 000000000000..b84a882a8454 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json @@ -0,0 +1,1651 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8433?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODQzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cf14617-2725-4dcc-9b24-6e7c89964036" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "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": [ + "d8c5c460-ad73-45c1-8195-0dd8c5025f36" + ], + "x-ms-correlation-request-id": [ + "d8c5c460-ad73-45c1-8195-0dd8c5025f36" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141655Z:d8c5c460-ad73-45c1-8195-0dd8c5025f36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:16:54 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433\",\r\n \"name\": \"ps8433\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0462cf93-25e6-4e2e-9685-98d38d7bc963" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "73" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A02.4319365Z'\"" + ], + "x-ms-request-id": [ + "da8f53d5-68b3-4cba-960b-022c05098ecd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6a057d84-2a45-4f1b-9b71-dbb0c6178e92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141703Z:6a057d84-2a45-4f1b-9b71-dbb0c6178e92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:03 GMT" + ], + "Content-Length": [ + "341" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4319365Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": []\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04047299-4fd7-49ff-adfa-372109bb902c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "127" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A40.6531683Z'\"" + ], + "x-ms-request-id": [ + "2bcfb1c1-1698-4477-b11f-216b3edccfaf" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42043c7d-525f-41d0-894e-66d26185b083?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "7ea2b20f-5998-4921-b24c-47025b4a79f8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141740Z:7ea2b20f-5998-4921-b24c-47025b4a79f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:40 GMT" + ], + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A40.6531683Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzVhMzI2MTktZTBjOS00YTQ0LWJjY2ItODg1MzBmMWZmMzg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4fd7d3b8-ed09-4f17-8086-429f017c2ab7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2cafbe15-6edf-4669-b483-4332e4da463b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141734Z:2cafbe15-6edf-4669-b483-4332e4da463b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:34 GMT" + ], + "Content-Length": [ + "489" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386\",\r\n \"name\": \"c5a32619-e0c9-4a44-bccb-88530f1ff386\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T14:17:02.3677362Z\",\r\n \"endTime\": \"2020-10-29T14:17:02.4927449Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\"" + ], + "x-ms-request-id": [ + "1708e3ca-43ff-4fde-b11d-4a236abfd004" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b149ea41-67bf-42b4-b577-1aecf5016154" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141734Z:b149ea41-67bf-42b4-b577-1aecf5016154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:34 GMT" + ], + "Content-Length": [ + "342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c4e3849-eac0-48fc-8273-bcca14f286b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\"" + ], + "x-ms-request-id": [ + "76f3fddc-2c96-43e4-bf87-aea2e242e4c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "aaeeb799-8159-4c38-80ef-e135aea8eead" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141734Z:aaeeb799-8159-4c38-80ef-e135aea8eead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:34 GMT" + ], + "Content-Length": [ + "342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5dc9eb30-ca68-49a7-9347-97c9df281a29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + ], + "x-ms-request-id": [ + "0952b0c7-c845-4684-8fd6-9738fe418c22" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "08128515-020e-463b-a967-a7ee9553439c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141739Z:08128515-020e-463b-a967-a7ee9553439c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:39 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecf0ca38-bb56-4763-a95a-12c7e5581304" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + ], + "x-ms-request-id": [ + "60165508-50b7-4bf4-a498-f4fd5e64524f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b93bcc61-59c0-4ed6-b220-faef0d550f08" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141739Z:b93bcc61-59c0-4ed6-b220-faef0d550f08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:39 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47e7711b-e203-4f1c-8147-41f0b42b0337" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + ], + "x-ms-request-id": [ + "2897f6da-daf5-4e66-9a16-1cb5820617b8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "c6324ab2-c9c8-42cf-8522-60b48a1628f6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141740Z:c6324ab2-c9c8-42cf-8522-60b48a1628f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:39 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d04d2e89-26d3-4558-a6e5-c73169ed5b0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + ], + "x-ms-request-id": [ + "f4f7188b-3ac6-4bdc-b2e8-ec486c653c29" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "05c07462-9799-4d9c-a01a-f93638efd04b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141740Z:05c07462-9799-4d9c-a01a-f93638efd04b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:40 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8822f42-4e91-41bc-8858-694f9d703c36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A41.1405028Z'\"" + ], + "x-ms-request-id": [ + "bf49d4af-0a40-410f-bcb0-a1479fc5c3ed" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "dca21c0f-6fce-4445-8e51-7bc974e75b48" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141756Z:dca21c0f-6fce-4445-8e51-7bc974e75b48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:55 GMT" + ], + "Content-Length": [ + "342" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A41.1405028Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7e56045-0182-45b4-ba6c-9f3136f786fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A17%3A35.0523243Z'\"" + ], + "x-ms-request-id": [ + "419cf492-c594-4c97-9946-92de3f9bd67e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "80846657-3afc-4ab9-bee5-b3031b4cd023" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141739Z:80846657-3afc-4ab9-bee5-b3031b4cd023" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:39 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A35.0523243Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8433?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODQzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0199e1c6-25bc-441d-a18e-ab92b047d23e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + ], + "x-ms-correlation-request-id": [ + "23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141759Z:23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:17:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0629915d-325c-4995-9033-ca3602739884" + ], + "x-ms-correlation-request-id": [ + "0629915d-325c-4995-9033-ca3602739884" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141814Z:0629915d-325c-4995-9033-ca3602739884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:18:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "96060952-2f8c-4bbe-af4f-21d872a85740" + ], + "x-ms-correlation-request-id": [ + "96060952-2f8c-4bbe-af4f-21d872a85740" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141830Z:96060952-2f8c-4bbe-af4f-21d872a85740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:18:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9309632d-a497-4bfc-848a-d1ba4ba45b81" + ], + "x-ms-correlation-request-id": [ + "9309632d-a497-4bfc-848a-d1ba4ba45b81" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141845Z:9309632d-a497-4bfc-848a-d1ba4ba45b81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:18:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "fd9416c6-3f68-4140-9f36-63a1825045ec" + ], + "x-ms-correlation-request-id": [ + "fd9416c6-3f68-4140-9f36-63a1825045ec" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141901Z:fd9416c6-3f68-4140-9f36-63a1825045ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:19:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "345ef767-d5c0-44aa-9571-083559cb2b4e" + ], + "x-ms-correlation-request-id": [ + "345ef767-d5c0-44aa-9571-083559cb2b4e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141916Z:345ef767-d5c0-44aa-9571-083559cb2b4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:19:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "d11b111d-4888-45dd-b0f4-54eb5af0dd24" + ], + "x-ms-correlation-request-id": [ + "d11b111d-4888-45dd-b0f4-54eb5af0dd24" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141931Z:d11b111d-4888-45dd-b0f4-54eb5af0dd24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:19:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "8f78d007-3960-457c-982d-f452edc2da3e" + ], + "x-ms-correlation-request-id": [ + "8f78d007-3960-457c-982d-f452edc2da3e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T141947Z:8f78d007-3960-457c-982d-f452edc2da3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:19:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + ], + "x-ms-correlation-request-id": [ + "1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T142002Z:1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:20:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "da46cfe1-5796-4589-8400-17200fbb7879" + ], + "x-ms-correlation-request-id": [ + "da46cfe1-5796-4589-8400-17200fbb7879" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T142018Z:da46cfe1-5796-4589-8400-17200fbb7879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:20:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + ], + "x-ms-correlation-request-id": [ + "83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T142033Z:83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:20:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + ], + "x-ms-correlation-request-id": [ + "82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T142048Z:82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:20:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "2f212edd-51d8-4163-9fd5-b9c9cf565902" + ], + "x-ms-correlation-request-id": [ + "2f212edd-51d8-4163-9fd5-b9c9cf565902" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T142049Z:2f212edd-51d8-4163-9fd5-b9c9cf565902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:20:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ActiveDirectoryCrud": [ + "ps8433", + "ps3469", + "ps6387", + "ps6814", + "ps9092" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json new file mode 100644 index 000000000000..83b5745708b5 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json @@ -0,0 +1,1358 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps738?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "744e334d-50e1-4acf-bba6-d86aa4cda92e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "46237467-1ffd-49ae-bd5f-f4ec7318eb74" + ], + "x-ms-correlation-request-id": [ + "46237467-1ffd-49ae-bd5f-f4ec7318eb74" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145345Z:46237467-1ffd-49ae-bd5f-f4ec7318eb74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:53:45 GMT" + ], + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738\",\r\n \"name\": \"ps738\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ed95a79-afb2-4acb-9ec8-3efda198b79e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A53%3A52.7440839Z'\"" + ], + "x-ms-request-id": [ + "a0c9a258-4a22-4e0d-8d97-61414c659a71" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "884bfcc6-db78-485a-a99c-58718f7ab69b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145354Z:884bfcc6-db78-485a-a99c-58718f7ab69b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:53:53 GMT" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.7440839Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvM2ViMjYwNzEtNDEyYS00MWZiLWJhOTAtNGM4YzAwMDg4MzFhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6945b0f2-9eb6-4918-bf55-7a0c8d5e1f31" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "dad18285-f9be-4600-b25e-aa24400af2d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145424Z:dad18285-f9be-4600-b25e-aa24400af2d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:24 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a\",\r\n \"name\": \"3eb26071-412a-41fb-ba90-4c8c0008831a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T14:53:52.6346528Z\",\r\n \"endTime\": \"2020-10-29T14:53:52.8690352Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + ], + "x-ms-request-id": [ + "f1dcd774-1869-4744-aa91-cbe1fca668da" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b0be4a56-9693-47b8-8ffa-df3834a43d77" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145424Z:b0be4a56-9693-47b8-8ffa-df3834a43d77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:24 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0f8dc2c-c5da-4ba5-a310-b795ac21653f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + ], + "x-ms-request-id": [ + "418a29d7-bdbb-45a4-b497-f6cb56195475" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "73f046fe-9dce-477b-89fb-34a44039b1da" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145424Z:73f046fe-9dce-477b-89fb-34a44039b1da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:24 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21c61b08-97ef-42b2-b97c-97ddfc74c2f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + ], + "x-ms-request-id": [ + "ea9fec0c-1894-4852-a424-c7ef28bd68ee" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "515253a1-bcd8-4a2f-9223-fba5b395095c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145425Z:515253a1-bcd8-4a2f-9223-fba5b395095c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:24 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d76bcd61-fe1f-431a-8a7b-9c9c02eeab2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\"" + ], + "x-ms-request-id": [ + "bbbb751b-5cf7-4187-9517-29b362e5929a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3d6439c2-2f9c-44c7-ac70-d85778fdfc0a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145426Z:3d6439c2-2f9c-44c7-ac70-d85778fdfc0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:26 GMT" + ], + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef356363-dda3-4d4c-8931-380bd71be4bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\"" + ], + "x-ms-request-id": [ + "e59d11e8-61ba-452f-b024-b49df0c3cb2e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "02f9118e-6d12-4c79-b7b4-51545d58fef5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145426Z:02f9118e-6d12-4c79-b7b4-51545d58fef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:26 GMT" + ], + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff7b95ca-9b2a-4587-895f-0c9e913c196c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T14%3A54%3A25.5527214Z'\"" + ], + "x-ms-request-id": [ + "e864c3f0-39c8-4205-b7be-a029263e7020" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "63d9d44b-aa93-440a-9b5a-4b97d5918cd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145426Z:63d9d44b-aa93-440a-9b5a-4b97d5918cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:25 GMT" + ], + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A25.5527214Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps738?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82b21f63-92e2-461e-88c1-ffc21e533c8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "b6f3185e-8089-4c0b-800a-10c87977c64a" + ], + "x-ms-correlation-request-id": [ + "b6f3185e-8089-4c0b-800a-10c87977c64a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145429Z:b6f3185e-8089-4c0b-800a-10c87977c64a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + ], + "x-ms-correlation-request-id": [ + "e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145444Z:e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b9c77646-3faf-423e-857a-8a1148132c69" + ], + "x-ms-correlation-request-id": [ + "b9c77646-3faf-423e-857a-8a1148132c69" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145459Z:b9c77646-3faf-423e-857a-8a1148132c69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:54:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "718e7d1d-64ca-461c-912b-7a81d81e7b0e" + ], + "x-ms-correlation-request-id": [ + "718e7d1d-64ca-461c-912b-7a81d81e7b0e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145515Z:718e7d1d-64ca-461c-912b-7a81d81e7b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:55:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "82c49285-409b-40ec-98aa-561122a2f307" + ], + "x-ms-correlation-request-id": [ + "82c49285-409b-40ec-98aa-561122a2f307" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145530Z:82c49285-409b-40ec-98aa-561122a2f307" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:55:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + ], + "x-ms-correlation-request-id": [ + "d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145546Z:d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:55:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + ], + "x-ms-correlation-request-id": [ + "9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145601Z:9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:56:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "70200272-904e-458e-9adc-d16220a3d33c" + ], + "x-ms-correlation-request-id": [ + "70200272-904e-458e-9adc-d16220a3d33c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145616Z:70200272-904e-458e-9adc-d16220a3d33c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:56:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "d13f6600-c696-4556-a22b-d3c82b9b8a42" + ], + "x-ms-correlation-request-id": [ + "d13f6600-c696-4556-a22b-d3c82b9b8a42" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145632Z:d13f6600-c696-4556-a22b-d3c82b9b8a42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:56:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "b861fdda-1718-41b5-b2bc-fa12f9578fbe" + ], + "x-ms-correlation-request-id": [ + "b861fdda-1718-41b5-b2bc-fa12f9578fbe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145647Z:b861fdda-1718-41b5-b2bc-fa12f9578fbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:56:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + ], + "x-ms-correlation-request-id": [ + "5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145703Z:5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:57:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + ], + "x-ms-correlation-request-id": [ + "be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T145703Z:be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 14:57:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ActiveDirectoryPipelines": [ + "ps738", + "ps1803", + "ps2646" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json new file mode 100644 index 000000000000..32626fcc2883 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json @@ -0,0 +1,2329 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5945?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23bb4a53-48bb-41a8-938e-d1358d991289" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "990697c8-cab0-478c-a355-713d5ac23e97" + ], + "x-ms-correlation-request-id": [ + "990697c8-cab0-478c-a355-713d5ac23e97" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140531Z:990697c8-cab0-478c-a355-713d5ac23e97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:05:30 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945\",\r\n \"name\": \"ps5945\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbdf96d0-a265-4a12-9421-269f2fe6af82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "77" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A05%3A35.6763712Z'\"" + ], + "x-ms-request-id": [ + "1ae3814c-659b-4ff9-b68a-63d0eb05ce43" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "08c375e4-17a0-4ea6-84b3-df964fccc7b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140536Z:08c375e4-17a0-4ea6-84b3-df964fccc7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:05:36 GMT" + ], + "Content-Length": [ + "345" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\",\r\n \"name\": \"ps3902\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A05%3A35.6763712Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2ViYWY5ZjA3LTYyYmItNDY2My1hZmYzLWVmODQ4ZWZlNTdkZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17ed1b69-3857-405a-8b05-a86adb2d917a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "efb7d6df-ee7e-42ab-b78c-ab68e94ffb34" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140606Z:efb7d6df-ee7e-42ab-b78c-ab68e94ffb34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:06 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd\",\r\n \"name\": \"ebaf9f07-62bb-4663-aff3-ef848efe57dd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:05:35.6338312Z\",\r\n \"endTime\": \"2020-10-26T14:05:35.7488246Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A05%3A35.7434179Z'\"" + ], + "x-ms-request-id": [ + "842b967d-3ab1-42a5-b925-95de40671460" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d5fca569-9298-456c-be08-e69d4c503a83" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140607Z:d5fca569-9298-456c-be08-e69d4c503a83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:06 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\",\r\n \"name\": \"ps3902\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A05%3A35.7434179Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed310911-28ce-47e2-8dde-10f90e33b768" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A08.3841967Z'\"" + ], + "x-ms-request-id": [ + "c64b5e7a-7733-431d-b6a1-ecb957e32537" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "701fb71d-eff7-4745-983b-d7950557817e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140609Z:701fb71d-eff7-4745-983b-d7950557817e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:09 GMT" + ], + "Content-Length": [ + "472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.3841967Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2UzZWI3YTVmLWJmNDYtNDU5My1iOTlmLWQ4Nzc0MWEzMzA5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0579f0a-329a-42c1-9bbd-143f5fee3606" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "4dd45e3e-cbeb-42bf-a7a3-41c7014d64ff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140639Z:4dd45e3e-cbeb-42bf-a7a3-41c7014d64ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:38 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097\",\r\n \"name\": \"e3eb7a5f-bf46-4593-b99f-d87741a33097\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:06:08.312143Z\",\r\n \"endTime\": \"2020-10-26T14:06:08.5544142Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + ], + "x-ms-request-id": [ + "cb5a9cdd-d943-4b94-a316-7fdb80c1a308" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2a028065-0910-4ff3-8b48-50e077ee95fb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140639Z:2a028065-0910-4ff3-8b48-50e077ee95fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:38 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f72b119-c95b-4f1e-aaaa-3735e76470ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + ], + "x-ms-request-id": [ + "12b12003-d1fe-4a71-87b1-8e582abbca8b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "76c931a1-60cf-48e8-b7c4-45ada275faa2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140640Z:76c931a1-60cf-48e8-b7c4-45ada275faa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:39 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26111936-3b49-423c-8d2a-f7e4a9409f5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + ], + "x-ms-request-id": [ + "b22a31f8-c13b-42d1-aa10-da7002e5f775" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2de4b9e2-df76-4677-8b2a-c22313a67f94" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140713Z:2de4b9e2-df76-4677-8b2a-c22313a67f94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:13 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae842625-03b4-44c6-8c73-6e7607f85731" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + ], + "x-ms-request-id": [ + "1d112c77-8738-4600-a275-3e1f12f94e6e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "57a45c84-c1d2-44bc-a436-e1bf9b84ba92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140713Z:57a45c84-c1d2-44bc-a436-e1bf9b84ba92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:13 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27001317-c8fa-4ab8-a96f-9cd5641d3db8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A41.5733587Z'\"" + ], + "x-ms-request-id": [ + "e484d0d7-758d-4e4e-860f-6b5d2fe3da82" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b59fccb8-1817-4190-93fd-900ee02484f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140642Z:b59fccb8-1817-4190-93fd-900ee02484f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:06:41 GMT" + ], + "Content-Length": [ + "472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.5733587Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzY5Y2FjNzk0LWQ0NDMtNDk3Yi05MWNjLWI0YTAzMjhmMGE2Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4431a616-06b3-49cb-99b7-1be01a69f0b6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e7ab47b8-aa0e-479d-9d40-f01ff23f447b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140712Z:e7ab47b8-aa0e-479d-9d40-f01ff23f447b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:12 GMT" + ], + "Content-Length": [ + "515" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66\",\r\n \"name\": \"69cac794-d443-497b-91cc-b4a0328f0a66\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:06:41.5189405Z\",\r\n \"endTime\": \"2020-10-26T14:06:41.7212388Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\"" + ], + "x-ms-request-id": [ + "85ea8b5c-960f-4872-bd79-7f8268b2f0ba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "60fea2c5-44d5-43d4-a0d8-561ab0635a46" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140712Z:60fea2c5-44d5-43d4-a0d8-561ab0635a46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:12 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40db82d2-a096-4c4d-ab87-2625b95e647a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f817f5a7-0a3d-4d1e-ba87-3f397714cc9c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "ba21f78d-de4d-4cdb-b3e8-9ddd3395c713" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140713Z:ba21f78d-de4d-4cdb-b3e8-9ddd3395c713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:12 GMT" + ], + "Content-Length": [ + "1071" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02afef6c-9363-413f-b3d7-93ef508c9f22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c48d2286-b6d8-4471-b144-78aa2c9d61a7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "c66dfc46-c2ae-4664-8e34-5c54ac0870df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140745Z:c66dfc46-c2ae-4664-8e34-5c54ac0870df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:44 GMT" + ], + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9449f9ae-896d-4a88-8e0c-5a59e933252e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5f10e90-8f9f-4939-8007-20c2c8eba315" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "c9641ff3-1fa6-42dc-83e5-d55255665f6e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140816Z:c9641ff3-1fa6-42dc-83e5-d55255665f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:15 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a0499c7-b8cb-4f9e-85f1-2f2954a83c85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + ], + "x-ms-correlation-request-id": [ + "0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140714Z:0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzI0MzVmYTllLTk3NjYtNDkxYy1iM2Q4LWFiZTdkMmNiZTQ1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6b49063-3ae6-48c2-8d35-575ba3961865" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "511e8333-b8d3-4b70-8389-7cf94a564f6b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140744Z:511e8333-b8d3-4b70-8389-7cf94a564f6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:43 GMT" + ], + "Content-Length": [ + "515" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d\",\r\n \"name\": \"2435fa9e-9766-491c-b3d8-abe7d2cbe45d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:07:14.3794003Z\",\r\n \"endTime\": \"2020-10-26T14:07:14.7288794Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzI0MzVmYTllLTk3NjYtNDkxYy1iM2Q4LWFiZTdkMmNiZTQ1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1382885d-207d-4961-acb2-490931f4cc1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "f8af900c-f62c-42b0-9932-1641fa542966" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140744Z:f8af900c-f62c-42b0-9932-1641fa542966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:43 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A07%3A14.4483005Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df06b4b-aae2-43f1-91bf-55439c4c133a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "611fd217-cf5f-4736-9acd-5758cd91ad71" + ], + "x-ms-correlation-request-id": [ + "611fd217-cf5f-4736-9acd-5758cd91ad71" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140745Z:611fd217-cf5f-4736-9acd-5758cd91ad71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:07:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzFhMWEyZGY3LWYzMjEtNDAwNi1hZGUzLTNmZWYzMjg1ZmE2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "88065584-073c-4fe2-8831-fbc31598aea1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "35f92fa3-5b6f-40e3-a6f0-b5fd62aa8534" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140816Z:35f92fa3-5b6f-40e3-a6f0-b5fd62aa8534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:15 GMT" + ], + "Content-Length": [ + "515" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61\",\r\n \"name\": \"1a1a2df7-f321-4006-ade3-3fef3285fa61\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:07:45.7228156Z\",\r\n \"endTime\": \"2020-10-26T14:07:46.0983863Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzFhMWEyZGY3LWYzMjEtNDAwNi1hZGUzLTNmZWYzMjg1ZmE2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ec3f7cf5-3e80-4309-9c95-b8c54dab39eb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2f5c72a8-6ce7-4472-a498-514306b772cb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140816Z:2f5c72a8-6ce7-4472-a498-514306b772cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:15 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A07%3A45.7651986Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5945?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c396930-817c-48f2-b160-ddf71a8418fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "0da60bc0-3f12-4898-866b-659db9056f61" + ], + "x-ms-correlation-request-id": [ + "0da60bc0-3f12-4898-866b-659db9056f61" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140818Z:0da60bc0-3f12-4898-866b-659db9056f61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "478dc955-46ad-44ef-af69-6882e482bb05" + ], + "x-ms-correlation-request-id": [ + "478dc955-46ad-44ef-af69-6882e482bb05" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140833Z:478dc955-46ad-44ef-af69-6882e482bb05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "29eaab0f-ebe2-4e45-9050-ac43ee54d448" + ], + "x-ms-correlation-request-id": [ + "29eaab0f-ebe2-4e45-9050-ac43ee54d448" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140849Z:29eaab0f-ebe2-4e45-9050-ac43ee54d448" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:08:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "73ae02b4-ae55-4b28-a3db-369965f7e7bb" + ], + "x-ms-correlation-request-id": [ + "73ae02b4-ae55-4b28-a3db-369965f7e7bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140904Z:73ae02b4-ae55-4b28-a3db-369965f7e7bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:09:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "3fdaf369-2386-4219-9c6b-34cc358c058e" + ], + "x-ms-correlation-request-id": [ + "3fdaf369-2386-4219-9c6b-34cc358c058e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140919Z:3fdaf369-2386-4219-9c6b-34cc358c058e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:09:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "aaccb502-68d3-4989-b48f-049990ef9c85" + ], + "x-ms-correlation-request-id": [ + "aaccb502-68d3-4989-b48f-049990ef9c85" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140935Z:aaccb502-68d3-4989-b48f-049990ef9c85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:09:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "dd290265-65bf-41b8-9b54-fa310e134e63" + ], + "x-ms-correlation-request-id": [ + "dd290265-65bf-41b8-9b54-fa310e134e63" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T140950Z:dd290265-65bf-41b8-9b54-fa310e134e63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:09:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "ab8c5add-5827-4920-a7dd-06170bb8c337" + ], + "x-ms-correlation-request-id": [ + "ab8c5add-5827-4920-a7dd-06170bb8c337" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141005Z:ab8c5add-5827-4920-a7dd-06170bb8c337" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:10:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "fd0e0308-ceca-4f69-956e-c93766bfe563" + ], + "x-ms-correlation-request-id": [ + "fd0e0308-ceca-4f69-956e-c93766bfe563" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141020Z:fd0e0308-ceca-4f69-956e-c93766bfe563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:10:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "8f703a51-4d50-4ef2-acb7-f575a386d227" + ], + "x-ms-correlation-request-id": [ + "8f703a51-4d50-4ef2-acb7-f575a386d227" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141036Z:8f703a51-4d50-4ef2-acb7-f575a386d227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:10:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + ], + "x-ms-correlation-request-id": [ + "02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141051Z:02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:10:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "84d7c0e2-9699-4eba-b04e-7c467f793d7e" + ], + "x-ms-correlation-request-id": [ + "84d7c0e2-9699-4eba-b04e-7c467f793d7e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141106Z:84d7c0e2-9699-4eba-b04e-7c467f793d7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:11:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "98776873-6ef3-47b8-b016-f757f81e47ba" + ], + "x-ms-correlation-request-id": [ + "98776873-6ef3-47b8-b016-f757f81e47ba" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T141106Z:98776873-6ef3-47b8-b016-f757f81e47ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:11:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPolicyCrud": [ + "ps5945", + "ps3902", + "ps4049", + "ps2734", + "ps9044" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json new file mode 100644 index 000000000000..faf6e873959f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json @@ -0,0 +1,1708 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1997?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17055ef9-dcdc-4dec-926c-0aa609dd1fad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "66522c6d-9f84-47dd-936d-6fa9d157a6b4" + ], + "x-ms-correlation-request-id": [ + "66522c6d-9f84-47dd-936d-6fa9d157a6b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144828Z:66522c6d-9f84-47dd-936d-6fa9d157a6b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:48:27 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997\",\r\n \"name\": \"ps1997\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9c795a5-df50-44e6-931d-c3fc91a0b94c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A48%3A32.2868138Z'\"" + ], + "x-ms-request-id": [ + "b8140f24-53d9-4189-a12f-4710c09356ea" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f127b845-007d-429c-b573-2e97c5217351" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144833Z:f127b845-007d-429c-b573-2e97c5217351" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:48:32 GMT" + ], + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.2868138Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzE3ZDdiMDEyLTVmNGYtNGNlYi1iYzk5LTEwOTljZjZkZDYzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f2936b8-a8b0-40c6-a49d-97d8b24759c6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "4044515f-3b94-4dbd-af1b-4de28919984f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144903Z:4044515f-3b94-4dbd-af1b-4de28919984f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:02 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633\",\r\n \"name\": \"17d7b012-5f4f-4ceb-bc99-1099cf6dd633\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:48:32.2207133Z\",\r\n \"endTime\": \"2020-10-26T14:48:32.3500504Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + ], + "x-ms-request-id": [ + "bd8e78d6-25d3-4bb7-acc1-c62faf4e296e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "5959b66c-1357-4983-a265-ab70d4384aef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144903Z:5959b66c-1357-4983-a265-ab70d4384aef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:02 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "235a2262-0f28-4f10-a1a3-002048e321b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + ], + "x-ms-request-id": [ + "11a5b98c-00c2-4fde-a2f0-18203f125578" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "c85820cd-f10e-4c3d-bf9f-a006b74c0d07" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144903Z:c85820cd-f10e-4c3d-bf9f-a006b74c0d07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:02 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85dad99b-e32c-4dcc-9b0a-d38361db7b62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + ], + "x-ms-request-id": [ + "a234b62b-8138-4d6a-bb0c-71fb811cb646" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "3eba00e2-af57-4ecf-9bb9-0f3ddb19e05c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144936Z:3eba00e2-af57-4ecf-9bb9-0f3ddb19e05c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:35 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7bfc2a4-73bb-4857-95ec-9fb7a40fbfca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A49%3A04.9027451Z'\"" + ], + "x-ms-request-id": [ + "bf3d8dd5-73f1-417e-8f09-fedcc02774bb" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "5896cd15-cae7-4ed2-ad47-a479c0465932" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144905Z:5896cd15-cae7-4ed2-ad47-a479c0465932" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:04 GMT" + ], + "Content-Length": [ + "472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A04.9027451Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2EyZTU3OWZiLTM5ZGQtNGIwZC04MTEwLTZlYmYzMzQ0MDQ2Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "274bfaed-13c5-46f4-9120-5d11462464dc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "25f77a29-cffb-4c17-bbab-324d71b67e91" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144935Z:25f77a29-cffb-4c17-bbab-324d71b67e91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:35 GMT" + ], + "Content-Length": [ + "515" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c\",\r\n \"name\": \"a2e579fb-39dd-4b0d-8110-6ebf3344046c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:49:04.8161873Z\",\r\n \"endTime\": \"2020-10-26T14:49:05.0908669Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A49%3A05.087876Z'\"" + ], + "x-ms-request-id": [ + "a1b5daca-8985-4c00-b02c-693337323040" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c97b9c30-4d5b-4651-89e4-7c1d70da70ac" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144936Z:c97b9c30-4d5b-4651-89e4-7c1d70da70ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:35 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A05.087876Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"64e7123c-179a-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "856591c3-9085-42e2-93fd-73be40811828" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T14%3A49%3A05.087876Z'\"" + ], + "x-ms-request-id": [ + "e252001f-8fac-4730-9e46-afbf3a295814" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "d746ab04-4583-4c9c-8e8f-184899084db0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144936Z:d746ab04-4583-4c9c-8e8f-184899084db0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:36 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A05.087876Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"64e7123c-179a-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1997?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c20c42e-44ca-4ed5-a26d-75e5d6a0d3aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "b83a46cd-2951-4c36-9de5-c8c1e83511f3" + ], + "x-ms-correlation-request-id": [ + "b83a46cd-2951-4c36-9de5-c8c1e83511f3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144938Z:b83a46cd-2951-4c36-9de5-c8c1e83511f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c420c410-dc6f-43a0-84f1-d9710c62d9d1" + ], + "x-ms-correlation-request-id": [ + "c420c410-dc6f-43a0-84f1-d9710c62d9d1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T144954Z:c420c410-dc6f-43a0-84f1-d9710c62d9d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:49:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ed9e6cbf-6596-4ef3-8726-3d2140010726" + ], + "x-ms-correlation-request-id": [ + "ed9e6cbf-6596-4ef3-8726-3d2140010726" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145009Z:ed9e6cbf-6596-4ef3-8726-3d2140010726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:50:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5724a93d-fa16-4dbd-89a3-4b39acd91f84" + ], + "x-ms-correlation-request-id": [ + "5724a93d-fa16-4dbd-89a3-4b39acd91f84" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145024Z:5724a93d-fa16-4dbd-89a3-4b39acd91f84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:50:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + ], + "x-ms-correlation-request-id": [ + "1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145039Z:1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:50:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "fac35ac7-9dde-45a0-9374-869b48d4b55a" + ], + "x-ms-correlation-request-id": [ + "fac35ac7-9dde-45a0-9374-869b48d4b55a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145055Z:fac35ac7-9dde-45a0-9374-869b48d4b55a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:50:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4b559385-5536-41e0-88ba-045e62156fa6" + ], + "x-ms-correlation-request-id": [ + "4b559385-5536-41e0-88ba-045e62156fa6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145110Z:4b559385-5536-41e0-88ba-045e62156fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:51:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + ], + "x-ms-correlation-request-id": [ + "8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145125Z:8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:51:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "924dbd25-7430-4181-b6b0-be5db890959a" + ], + "x-ms-correlation-request-id": [ + "924dbd25-7430-4181-b6b0-be5db890959a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145140Z:924dbd25-7430-4181-b6b0-be5db890959a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:51:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + ], + "x-ms-correlation-request-id": [ + "8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145156Z:8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:51:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "78a6b4af-5145-456b-bd11-63865901d04f" + ], + "x-ms-correlation-request-id": [ + "78a6b4af-5145-456b-bd11-63865901d04f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145211Z:78a6b4af-5145-456b-bd11-63865901d04f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:52:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "4a299121-d53a-4d83-b604-75837b732411" + ], + "x-ms-correlation-request-id": [ + "4a299121-d53a-4d83-b604-75837b732411" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145226Z:4a299121-d53a-4d83-b604-75837b732411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:52:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "a4b081f6-0b33-43a1-ad2a-d70c059e6275" + ], + "x-ms-correlation-request-id": [ + "a4b081f6-0b33-43a1-ad2a-d70c059e6275" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145242Z:a4b081f6-0b33-43a1-ad2a-d70c059e6275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:52:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "4d05b607-9bcd-47c6-9275-5cfc9b246308" + ], + "x-ms-correlation-request-id": [ + "4d05b607-9bcd-47c6-9275-5cfc9b246308" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145257Z:4d05b607-9bcd-47c6-9275-5cfc9b246308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:52:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "748c96d0-042b-4e65-9cdd-91f18b32584f" + ], + "x-ms-correlation-request-id": [ + "748c96d0-042b-4e65-9cdd-91f18b32584f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145312Z:748c96d0-042b-4e65-9cdd-91f18b32584f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:53:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "c11aa5a3-6445-49eb-8cae-ff39d02bd870" + ], + "x-ms-correlation-request-id": [ + "c11aa5a3-6445-49eb-8cae-ff39d02bd870" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145327Z:c11aa5a3-6445-49eb-8cae-ff39d02bd870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:53:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "4ca2abbe-0355-4787-b33e-121feddafeb7" + ], + "x-ms-correlation-request-id": [ + "4ca2abbe-0355-4787-b33e-121feddafeb7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T145328Z:4ca2abbe-0355-4787-b33e-121feddafeb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 14:53:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPolicyPipelines": [ + "ps1997", + "ps6528", + "ps2966", + "ps1057", + "ps9448" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json new file mode 100644 index 000000000000..0c29f78cccc2 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json @@ -0,0 +1,5287 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8fe9fa5-5844-4a59-b36c-aa0a935a01ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "91bc6813-a735-4938-9cc0-562f649d8d29" + ], + "x-ms-correlation-request-id": [ + "91bc6813-a735-4938-9cc0-562f649d8d29" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092409Z:91bc6813-a735-4938-9cc0-562f649d8d29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:09 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533\",\r\n \"name\": \"ps4533\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c02a9266-5940-4b8a-b319-f3a33e9623f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + ], + "x-ms-correlation-request-id": [ + "5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092410Z:5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4533-vnet' under resource group 'ps4533' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + ], + "x-ms-request-id": [ + "c68fdea9-375f-47a2-a27b-5029305c2c44" + ], + "x-ms-correlation-request-id": [ + "dc45653b-8836-4f54-bd42-d1c0935862f7" + ], + "x-ms-arm-service-request-id": [ + "e1596a10-72df-4aa4-be3a-c2340aae9fd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092421Z:dc45653b-8836-4f54-bd42-d1c0935862f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:21 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d2b98d3-685c-499e-b133-a17c4fc64f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + ], + "x-ms-request-id": [ + "ad3eca4b-2904-4b89-a961-d5c96d14e22c" + ], + "x-ms-correlation-request-id": [ + "64813585-fadd-4312-a411-7dbee0c532e3" + ], + "x-ms-arm-service-request-id": [ + "c4841f3f-84ae-40d9-b4a3-7cff02cdfbdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092421Z:64813585-fadd-4312-a411-7dbee0c532e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:21 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "198b37ed-0f94-41c3-a88d-0ac3388731eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + ], + "x-ms-request-id": [ + "4f493cce-4f01-4665-a77d-163655e9b874" + ], + "x-ms-correlation-request-id": [ + "6fe01625-9731-4381-85b3-cc1b06f787c9" + ], + "x-ms-arm-service-request-id": [ + "f829ab72-f378-42e0-97fb-391c99948e0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092422Z:6fe01625-9731-4381-85b3-cc1b06f787c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:21 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\"" + ], + "x-ms-request-id": [ + "28a96ca8-fb59-4e3a-986f-1a340b708598" + ], + "x-ms-correlation-request-id": [ + "07a232fa-1bf6-493d-859e-1128ae0a5c4e" + ], + "x-ms-arm-service-request-id": [ + "f5ae425b-5863-4dc2-8aba-db21b834c650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092426Z:07a232fa-1bf6-493d-859e-1128ae0a5c4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:25 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e36b228-6f2f-471b-9d5d-bbb34c61daa3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\"" + ], + "x-ms-request-id": [ + "4e2e4a57-4ae5-4067-938d-53889500bb52" + ], + "x-ms-correlation-request-id": [ + "189d6cf7-3f68-401e-bb9d-4a4de4508b1c" + ], + "x-ms-arm-service-request-id": [ + "133b5e8d-00bb-42d8-806b-9daff4f6e101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092426Z:189d6cf7-3f68-401e-bb9d-4a4de4508b1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:26 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f479be1a-db4a-432e-91c4-20ad9c841942" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "268" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9217b443-cee1-435e-9020-364abb0cb8dd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/9217b443-cee1-435e-9020-364abb0cb8dd?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "74f6f6a7-9288-4a60-a5d7-138a2df17ae8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "83d1ebd0-54ad-4653-bbdf-95e8cbe25811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092418Z:74f6f6a7-9288-4a60-a5d7-138a2df17ae8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:17 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"a87bf870-6aaf-4121-8cb2-0d675145204f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55a3876c-9de2-4ae0-80b1-6c92e9c9702a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1071" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e3be8f26-53fc-4afd-92f0-190ee87f810b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/e3be8f26-53fc-4afd-92f0-190ee87f810b?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "ec3d7850-4ac3-4882-a0fb-3c4d9dda4b2f" + ], + "x-ms-arm-service-request-id": [ + "eee3f192-6145-482f-aac7-1e989354f5ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092423Z:ec3d7850-4ac3-4882-a0fb-3c4d9dda4b2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:22 GMT" + ], + "Content-Length": [ + "2182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/9217b443-cee1-435e-9020-364abb0cb8dd?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85MjE3YjQ0My1jZWUxLTQzNWUtOTAyMC0zNjRhYmIwY2I4ZGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dbd50a6-6b9d-4aa3-bd9a-65d3958524bf" + ], + "x-ms-correlation-request-id": [ + "0cf71ebc-1bf2-4ba9-9943-f087ab9ad424" + ], + "x-ms-arm-service-request-id": [ + "49e0b826-8458-4df4-adbc-c269263509f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092421Z:0cf71ebc-1bf2-4ba9-9943-f087ab9ad424" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:20 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/e3be8f26-53fc-4afd-92f0-190ee87f810b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9lM2JlOGYyNi01M2ZjLTRhZmQtOTJmMC0xOTBlZTg3ZjgxMGI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b7fff58-f13d-473b-96cd-6fa69a459402" + ], + "x-ms-correlation-request-id": [ + "90c2225c-0f9f-4eaa-921e-043ba111eddd" + ], + "x-ms-arm-service-request-id": [ + "0b17e757-f81d-4db2-94a2-41266764e1b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092426Z:90c2225c-0f9f-4eaa-921e-043ba111eddd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:25 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73425049-e8e9-4362-b308-870b298fd818" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A24%3A33.6006859Z'\"" + ], + "x-ms-request-id": [ + "6f371d47-fc22-4969-9d6a-4a800626d369" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d1015d20-81a1-4804-a077-ede21067023d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092434Z:d1015d20-81a1-4804-a077-ede21067023d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:24:34 GMT" + ], + "Content-Length": [ + "348" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\",\r\n \"name\": \"ps7450\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A24%3A33.6006859Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2JlMmQwOGQ4LWI4NGMtNGExNy1iNjVhLWE2ZDQxZTVlNGQ2YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7def0c1d-7bb1-4025-ac85-1f3be202785b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "fb10429c-aa2f-486c-831c-de95c360ff66" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092504Z:fb10429c-aa2f-486c-831c-de95c360ff66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:04 GMT" + ], + "Content-Length": [ + "496" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a\",\r\n \"name\": \"be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:24:33.5182938Z\",\r\n \"endTime\": \"2020-10-28T09:24:33.6589021Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A24%3A33.6607317Z'\"" + ], + "x-ms-request-id": [ + "f6d2d2cd-242a-4374-975a-02e4b516a975" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f451c8b9-8b8e-438b-9546-f94a8dfeeae5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092505Z:f451c8b9-8b8e-438b-9546-f94a8dfeeae5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:04 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\",\r\n \"name\": \"ps7450\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A24%3A33.6607317Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvYmFja3VwUG9saWNpZXMvcHM2NzQyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9657fa2e-b320-4ac6-b569-d802adc750da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "206" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A25%3A06.8138321Z'\"" + ], + "x-ms-request-id": [ + "b925d995-4d73-45e1-bd87-bbf0213b716b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "78649020-5f68-49e0-bc3c-70a564db08f5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092507Z:78649020-5f68-49e0-bc3c-70a564db08f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:07 GMT" + ], + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\",\r\n \"name\": \"ps7450/ps6742\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A06.8138321Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VlYjcxY2FmLTRhNjgtNDJiNC1hNWZhLTM2NTYwMzRmOTU0Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "389b3447-639d-4c36-973e-ab8d2bbc439d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b534e7b7-39c0-4e24-9791-ed6dc0400535" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092538Z:b534e7b7-39c0-4e24-9791-ed6dc0400535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:37 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c\",\r\n \"name\": \"eeb71caf-4a68-42b4-a5fa-3656034f954c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:25:06.7200981Z\",\r\n \"endTime\": \"2020-10-28T09:25:10.8124384Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvYmFja3VwUG9saWNpZXMvcHM2NzQyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A25%3A10.8158618Z'\"" + ], + "x-ms-request-id": [ + "ca6c5b20-2ede-421e-9ec0-db7ed3789246" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "006beb7c-8983-45df-b4c5-680891f61fe5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092538Z:006beb7c-8983-45df-b4c5-680891f61fe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:37 GMT" + ], + "Content-Length": [ + "532" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\",\r\n \"name\": \"ps7450/ps6742\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A10.8158618Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"79faab0f-18ff-11eb-8819-722c3fa6b241\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12ff5b56-835d-411c-80f4-4a11e898fad2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "120" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A25%3A40.6254295Z'\"" + ], + "x-ms-request-id": [ + "019c923b-00c5-4ddf-b34a-fcfb59f5923f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "099ba586-bdb8-4195-80b7-519977e32e57" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092542Z:099ba586-bdb8-4195-80b7-519977e32e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:25:41 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\",\r\n \"name\": \"ps7450/ps6822\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A40.6254295Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzdkNDIwYjQwLTBhNWItNGU3NS1iZDU2LThjNTBmMzk4OTlkZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b568f238-3335-4ec4-9a86-40bd0e60e715" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "31152901-0bf6-44d8-b41c-773dbc55b9d5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092612Z:31152901-0bf6-44d8-b41c-773dbc55b9d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:26:12 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df\",\r\n \"name\": \"7d420b40-0a5b-4e75-bd56-8c50f39899df\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:25:40.534967Z\",\r\n \"endTime\": \"2020-10-28T09:25:40.7849482Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A25%3A40.7865512Z'\"" + ], + "x-ms-request-id": [ + "2d9358b9-2b6e-434f-a521-18da37fc3526" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "db40bcdf-e560-4c6c-a5ad-fb9f479256df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092612Z:db40bcdf-e560-4c6c-a5ad-fb9f479256df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:26:12 GMT" + ], + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\",\r\n \"name\": \"ps7450/ps6822\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A40.7865512Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"df368504-646f-3d54-fcf6-ba01027d12d3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c159f770-f912-4fd0-8eb8-4a12877df386" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "785" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A26%3A14.8673525Z'\"" + ], + "x-ms-request-id": [ + "f5f632ce-19c7-493c-903e-70effb7628ed" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "6646c01d-138f-4e65-94ac-f9b26ef293ed" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092615Z:6646c01d-138f-4e65-94ac-f9b26ef293ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:26:15 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A26%3A14.8673525Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0988e643-9188-42c8-9eef-2150d4dc258c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "8a26f2ee-ee29-4a94-8550-bff4d6850947" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092646Z:8a26f2ee-ee29-4a94-8550-bff4d6850947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:26:45 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3a63c1cb-09a6-4ddf-8ed6-7ecd04c8f667" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "3a7224ff-c810-4c91-82ab-c079962b2f1e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092716Z:3a7224ff-c810-4c91-82ab-c079962b2f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:27:16 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50db542a-9b24-4283-8303-fdc380ea9da8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "a3c2502b-2dfe-4416-9f36-f71cbe672518" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092746Z:a3c2502b-2dfe-4416-9f36-f71cbe672518" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:27:45 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "364aa5c3-6309-4e76-9f3e-777d2c58b274" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "95af5e50-356f-4605-8037-5bea508099d8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092816Z:95af5e50-356f-4605-8037-5bea508099d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:28:16 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "88259d61-e013-4707-a29c-200f16639d4d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "f33a5789-7c31-4465-8e05-1a1037192a5c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092847Z:f33a5789-7c31-4465-8e05-1a1037192a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:28:46 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "866fc1da-141a-46b4-a68f-435b840816b4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "436d5706-f3ef-40f9-a574-b35b0eaef19c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092917Z:436d5706-f3ef-40f9-a574-b35b0eaef19c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:16 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c351ffad-a0c2-4f84-a991-07c4de717cdc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "8d9569cb-3834-4c7e-9aae-b689a1b5842c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092947Z:8d9569cb-3834-4c7e-9aae-b689a1b5842c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:47 GMT" + ], + "Content-Length": [ + "532" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"2020-10-28T09:29:22.5442752Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A29%3A22.5424273Z'\"" + ], + "x-ms-request-id": [ + "a94da288-5fa6-4126-8d87-51e7715df49a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "09ab5658-e648-4011-8233-49a615866a26" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092947Z:09ab5658-e648-4011-8233-49a615866a26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:47 GMT" + ], + "Content-Length": [ + "1536" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A29%3A22.5424273Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"name\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_7c43bb3f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c9be6bc-da3c-4b6c-a750-b7fbcd137cb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fe9d1a11-2077-4b49-97f8-dcc9029e67a9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "cf7409de-449e-4df6-8ad3-30b923d80556" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092948Z:cf7409de-449e-4df6-8ad3-30b923d80556" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:47 GMT" + ], + "Content-Length": [ + "311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\",\r\n \"name\": \"ps7450/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81d3fbe0-b5ee-4dc2-9566-dff6efbd0dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "314" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T09%3A29%3A48.4419344Z'\"" + ], + "x-ms-request-id": [ + "2a37ae5b-c0e0-41a2-9424-c10f96e0f111" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "0482f764-150c-4169-9cd6-e4405d8d01f9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092952Z:0482f764-150c-4169-9cd6-e4405d8d01f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:52 GMT" + ], + "Content-Length": [ + "1760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A29%3A48.4419344Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"name\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_7c43bb3f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupTest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e17e6cd9-1ede-4430-93b8-c3257a9e064b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "32d4061f-381e-40b4-aa4e-98a9d787af87" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "0b2b7edb-26c5-4bef-bfa7-3b5086fe5228" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T092954Z:0b2b7edb-26c5-4bef-bfa7-3b5086fe5228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:29:54 GMT" + ], + "Content-Length": [ + "449" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"label\": \"powershellBackupTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExNTQ4NjIzLWEzMzktNDhlNi04ODU3LTAyZWFjNzQ3OTFhND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98a90ee2-0121-42ab-8b2c-1a8ed756d6c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "b7320852-0a8f-416b-a597-ead755430196" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093024Z:b7320852-0a8f-416b-a597-ead755430196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:30:23 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4\",\r\n \"name\": \"11548623-a339-48e6-8857-02eac74791a4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:29:54.1698839Z\",\r\n \"endTime\": \"2020-10-28T09:29:54.3729921Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f02c36a-dc35-4e24-b49c-83e6926d8c53" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "2c935fb6-c7da-4ee8-847d-e5cf0842e4b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093027Z:2c935fb6-c7da-4ee8-847d-e5cf0842e4b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:30:27 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e436bbc-e5e1-49e1-9e6f-f0527daf8857" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bef508e-2af6-4e23-b8af-e29b3cee7991" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "037e9154-6707-40c9-bc76-7e6dc2c2b08b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093028Z:037e9154-6707-40c9-bc76-7e6dc2c2b08b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:30:27 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e98a54e9-51d1-4bdb-9256-67f4ea6b8543" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d914711d-ab24-46ba-95ff-c25740338a73" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "8dc80d9d-1296-4c5e-a0dd-fb95d00f0bbf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093104Z:8dc80d9d-1296-4c5e-a0dd-fb95d00f0bbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:04 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d220f1da-e248-4920-8280-0cc94de27bf1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1843d7fe-dce6-40e2-a2c5-743f3c1f186b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "24f5c189-64e8-4049-b494-e414011993a9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093105Z:24f5c189-64e8-4049-b494-e414011993a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:05 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupTest2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "376cb0c8-ff37-4b43-86fb-a37d76c51d11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "90b89e1d-e90c-49a9-9f44-051fcc4c9bd2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "8bfe0f63-e688-4bbf-a465-8229ecd23859" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093028Z:8bfe0f63-e688-4bbf-a465-8229ecd23859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:30:27 GMT" + ], + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"label\": \"powershellBackupTest2\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzMWUxMzcwLTI3NTgtNGMwNS1iYWIxLWMwODQyZmViMmM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f574f992-9a5e-4eed-8ca7-d43cbbfb40de" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "22932a73-41b4-42ed-9843-ffeef925a13a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093058Z:22932a73-41b4-42ed-9843-ffeef925a13a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:30:58 GMT" + ], + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87\",\r\n \"name\": \"631e1370-2758-4c05-bab1-c0842feb2c87\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:30:28.4571404Z\",\r\n \"endTime\": \"2020-10-28T09:30:28.6893206Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "836d55f4-f9ef-4d9d-8eec-503f30e8cc01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "df801f73-1d85-42e6-a382-34b035f2b8bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093104Z:df801f73-1d85-42e6-a382-34b035f2b8bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:03 GMT" + ], + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dafa0bd8-eb3f-4f38-b66f-81311dbdc09d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "133789db-1aed-44b4-8ff3-173fa065616b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "726dd307-2ef5-408e-a53e-46eecf1c643c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093104Z:726dd307-2ef5-408e-a53e-46eecf1c643c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:04 GMT" + ], + "Content-Length": [ + "1037" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60798f20-7c6a-4dc0-9509-b9c3da65a645" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d12ef075-88bc-4217-80ef-93149d9ee48b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "4c0f5564-0c06-44fe-a2c6-3c27f0516692" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093136Z:4c0f5564-0c06-44fe-a2c6-3c27f0516692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:35 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6572c70c-0c08-4051-89c3-b9cee9c13f53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4ce1825-c82d-44ca-9e16-cfa7c4368d4f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "bb0e5c65-d995-4748-8d8c-75be526b42e6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093207Z:bb0e5c65-d995-4748-8d8c-75be526b42e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:07 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9625e9e9-d59c-4ea4-850e-d185ee0a1589" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "5dafe176-2d6b-42d3-acfb-fddbc6e15d7f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "43292e7b-47e6-4c50-a957-a8939d87feed" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093105Z:43292e7b-47e6-4c50-a957-a8939d87feed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlZmY4NWI4LTIyYzktNGRkZC1iODkwLTllMTIwODMzYTlhOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dde4e048-ed36-4f59-b9e8-cc823b63799a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "9de86262-6acd-483b-bf33-eb449a20f8bd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093135Z:9de86262-6acd-483b-bf33-eb449a20f8bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:35 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8\",\r\n \"name\": \"2eff85b8-22c9-4ddd-b890-9e120833a9a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:31:05.4575247Z\",\r\n \"endTime\": \"2020-10-28T09:31:07.5703669Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlZmY4NWI4LTIyYzktNGRkZC1iODkwLTllMTIwODMzYTlhOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0e85f60c-9fb5-4f61-b09e-0acb068e6722" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "7b315648-2080-4f4b-8514-4b802e8c911e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093136Z:7b315648-2080-4f4b-8514-4b802e8c911e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:35 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e659b27-b9ed-436c-a3ec-b5118ff95f9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "3556502e-e7cc-4f36-8b78-727741ee0443" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "cc61a351-ff8d-4bd2-aa64-73af3e01c8a5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093136Z:cc61a351-ff8d-4bd2-aa64-73af3e01c8a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:31:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2EzZDFhODRiLWVkYTAtNGEwNS05OTU4LWQ5ODc3YjA5ODc3OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3ce0a50-55e5-4fc2-80ce-e26f1d0447f3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "cf7684d6-f856-4351-9594-9efeff0dcc5b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093207Z:cf7684d6-f856-4351-9594-9efeff0dcc5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:06 GMT" + ], + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778\",\r\n \"name\": \"a3d1a84b-eda0-4a05-9958-d9877b098778\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:31:36.8001338Z\",\r\n \"endTime\": \"2020-10-28T09:31:44.0394155Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2EzZDFhODRiLWVkYTAtNGEwNS05OTU4LWQ5ODc3YjA5ODc3OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "506d3ad1-084f-4700-870d-72891ec2804d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "c387a687-277d-4d62-a70e-f280ff6b122a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093207Z:c387a687-277d-4d62-a70e-f280ff6b122a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:07 GMT" + ], + "Content-Length": [ + "316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4533?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b9b86ad-3915-472c-953f-2e0d6fe6754a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + ], + "x-ms-correlation-request-id": [ + "54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093211Z:54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4145b793-c36b-4036-88ff-38dd3193a9a8" + ], + "x-ms-correlation-request-id": [ + "4145b793-c36b-4036-88ff-38dd3193a9a8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093226Z:4145b793-c36b-4036-88ff-38dd3193a9a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + ], + "x-ms-correlation-request-id": [ + "7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093241Z:7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + ], + "x-ms-correlation-request-id": [ + "1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093257Z:1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:32:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + ], + "x-ms-correlation-request-id": [ + "59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093312Z:59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:33:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "e3c51082-1115-42ae-835d-addde0a4e8d0" + ], + "x-ms-correlation-request-id": [ + "e3c51082-1115-42ae-835d-addde0a4e8d0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093327Z:e3c51082-1115-42ae-835d-addde0a4e8d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:33:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + ], + "x-ms-correlation-request-id": [ + "3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093343Z:3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:33:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "237434f4-f56d-4060-8247-5c7b72da7e46" + ], + "x-ms-correlation-request-id": [ + "237434f4-f56d-4060-8247-5c7b72da7e46" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093358Z:237434f4-f56d-4060-8247-5c7b72da7e46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:33:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + ], + "x-ms-correlation-request-id": [ + "bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093413Z:bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:34:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + ], + "x-ms-correlation-request-id": [ + "4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093429Z:4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:34:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + ], + "x-ms-correlation-request-id": [ + "a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093444Z:a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:34:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "3340234f-79bd-40ac-8d72-064a5f4fc903" + ], + "x-ms-correlation-request-id": [ + "3340234f-79bd-40ac-8d72-064a5f4fc903" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093500Z:3340234f-79bd-40ac-8d72-064a5f4fc903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:34:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "5669141e-ec1f-4c2a-889e-354809314b4f" + ], + "x-ms-correlation-request-id": [ + "5669141e-ec1f-4c2a-889e-354809314b4f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093515Z:5669141e-ec1f-4c2a-889e-354809314b4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:35:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "0c92de3a-6302-4c0f-b8df-669c466a5c18" + ], + "x-ms-correlation-request-id": [ + "0c92de3a-6302-4c0f-b8df-669c466a5c18" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093530Z:0c92de3a-6302-4c0f-b8df-669c466a5c18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:35:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "714060a9-3507-4c20-bd02-4aef64b4d9b1" + ], + "x-ms-correlation-request-id": [ + "714060a9-3507-4c20-bd02-4aef64b4d9b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093546Z:714060a9-3507-4c20-bd02-4aef64b4d9b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:35:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "750417a0-db0b-4fa7-8781-4f0bf03b230a" + ], + "x-ms-correlation-request-id": [ + "750417a0-db0b-4fa7-8781-4f0bf03b230a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093601Z:750417a0-db0b-4fa7-8781-4f0bf03b230a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:36:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "908a0960-53c3-4b72-91a7-6eab84823138" + ], + "x-ms-correlation-request-id": [ + "908a0960-53c3-4b72-91a7-6eab84823138" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093616Z:908a0960-53c3-4b72-91a7-6eab84823138" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:36:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "0bdfb796-4c94-455d-b02c-8483c8fc32c3" + ], + "x-ms-correlation-request-id": [ + "0bdfb796-4c94-455d-b02c-8483c8fc32c3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093632Z:0bdfb796-4c94-455d-b02c-8483c8fc32c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:36:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "d224ba40-9cd2-4e52-9b83-3995658d9e3c" + ], + "x-ms-correlation-request-id": [ + "d224ba40-9cd2-4e52-9b83-3995658d9e3c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093647Z:d224ba40-9cd2-4e52-9b83-3995658d9e3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:36:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "fe568566-4ddc-4172-8eef-34bda1db0e4b" + ], + "x-ms-correlation-request-id": [ + "fe568566-4ddc-4172-8eef-34bda1db0e4b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093702Z:fe568566-4ddc-4172-8eef-34bda1db0e4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:37:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "2045920b-f8df-4e12-a925-f9e53200e258" + ], + "x-ms-correlation-request-id": [ + "2045920b-f8df-4e12-a925-f9e53200e258" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093718Z:2045920b-f8df-4e12-a925-f9e53200e258" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:37:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "61e3dc99-fdb7-44d6-8aaa-8b781b491697" + ], + "x-ms-correlation-request-id": [ + "61e3dc99-fdb7-44d6-8aaa-8b781b491697" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093733Z:61e3dc99-fdb7-44d6-8aaa-8b781b491697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:37:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "a524ff61-0f58-437f-962c-b09ece69724a" + ], + "x-ms-correlation-request-id": [ + "a524ff61-0f58-437f-962c-b09ece69724a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093749Z:a524ff61-0f58-437f-962c-b09ece69724a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:37:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + ], + "x-ms-correlation-request-id": [ + "a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093804Z:a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:38:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "d2e00e34-0436-4063-aecb-0ea34bd9c08b" + ], + "x-ms-correlation-request-id": [ + "d2e00e34-0436-4063-aecb-0ea34bd9c08b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093819Z:d2e00e34-0436-4063-aecb-0ea34bd9c08b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:38:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "f94d2ff7-c245-47bb-afaf-8874b19135cb" + ], + "x-ms-correlation-request-id": [ + "f94d2ff7-c245-47bb-afaf-8874b19135cb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093835Z:f94d2ff7-c245-47bb-afaf-8874b19135cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:38:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "ffaa107a-b444-4947-9d0f-799d78d53a40" + ], + "x-ms-correlation-request-id": [ + "ffaa107a-b444-4947-9d0f-799d78d53a40" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093850Z:ffaa107a-b444-4947-9d0f-799d78d53a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:38:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "aa2a44a1-eb4d-4893-9e49-8fb017719b92" + ], + "x-ms-correlation-request-id": [ + "aa2a44a1-eb4d-4893-9e49-8fb017719b92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093905Z:aa2a44a1-eb4d-4893-9e49-8fb017719b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:39:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "963d8bbc-8175-4807-bfb0-4d75da78641e" + ], + "x-ms-correlation-request-id": [ + "963d8bbc-8175-4807-bfb0-4d75da78641e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093921Z:963d8bbc-8175-4807-bfb0-4d75da78641e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:39:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + ], + "x-ms-correlation-request-id": [ + "9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093936Z:9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:39:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "c9b8d5da-a3dc-45b6-a067-86c268332d71" + ], + "x-ms-correlation-request-id": [ + "c9b8d5da-a3dc-45b6-a067-86c268332d71" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093951Z:c9b8d5da-a3dc-45b6-a067-86c268332d71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:39:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "94888082-f842-4c84-89b5-d2744e3e08d4" + ], + "x-ms-correlation-request-id": [ + "94888082-f842-4c84-89b5-d2744e3e08d4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T093952Z:94888082-f842-4c84-89b5-d2744e3e08d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 09:39:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupCrud": [ + "ps4533", + "ps7450", + "ps6822", + "ps2320", + "ps3440", + "ps141", + "ps6742", + "ps6278" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json new file mode 100644 index 000000000000..bab25c93e2c7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json @@ -0,0 +1,4797 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7198?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzE5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4e06b63-befa-4513-a475-826703041822" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + ], + "x-ms-correlation-request-id": [ + "c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164311Z:c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:43:10 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198\",\r\n \"name\": \"ps7198\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5205a309-d729-4aaf-88e4-73f7fbc902fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A43%3A18.2981206Z'\"" + ], + "x-ms-request-id": [ + "e6537e91-b88c-471c-969c-09009d18aaa5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0169e309-5cd1-474c-a722-e5ea15111d84" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164319Z:0169e309-5cd1-474c-a722-e5ea15111d84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:43:19 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A18.2981206Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4605626a-1da5-41da-bac9-97ecacc974a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A17.3667923Z'\"" + ], + "x-ms-request-id": [ + "f3056425-5c4c-443d-abb5-841d7f727c32" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1de6314d-ae22-49f7-bf62-a659134d5ff1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164819Z:1de6314d-ae22-49f7-bf62-a659134d5ff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:18 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A17.3667923Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzI3ODJlNjJjLTcxODItNDFkZC1hMjNiLWVjMjhmZDUwOGQ4OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f900c003-34cc-449b-afbb-33caf97947d5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "dfedcbd7-2809-457e-a0c2-e2a5e45a42df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164349Z:dfedcbd7-2809-457e-a0c2-e2a5e45a42df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:43:49 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88\",\r\n \"name\": \"2782e62c-7182-41dd-a23b-ec28fd508d88\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:43:18.242468Z\",\r\n \"endTime\": \"2020-10-28T16:43:18.3675002Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A43%3A18.3731778Z'\"" + ], + "x-ms-request-id": [ + "28165fa4-a02d-4ce7-81c3-fcd0c242ed00" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "835c6fd9-5fd8-4ced-b3ff-7d716be1b6d7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164349Z:835c6fd9-5fd8-4ced-b3ff-7d716be1b6d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:43:49 GMT" + ], + "Content-Length": [ + "321" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A18.3731778Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A17.4318419Z'\"" + ], + "x-ms-request-id": [ + "88a8d8d4-7869-4596-8c42-2fe5a4f37615" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2d44616a-7432-40ab-a44e-078f7d1f4f4c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164850Z:2d44616a-7432-40ab-a44e-078f7d1f4f4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:49 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A17.4318419Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d031ce5d-0642-4655-a6e1-8754880adb43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "120" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A43%3A52.2008194Z'\"" + ], + "x-ms-request-id": [ + "84b94067-d60f-4fd6-83bd-c861f2a36e3f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e4b42252-6ddb-4746-9dbe-cf1e51529ad0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164353Z:e4b42252-6ddb-4746-9dbe-cf1e51529ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:43:53 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.2008194Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFkNDU3OTRiLThhNjYtNGZmMi04MzgxLTMyNzYwOGYzMDQxOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f272e78b-61c8-44cc-9c0e-f76a65db1ad3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "45f978f8-d63a-4f60-a4c4-e93d6e92b282" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164423Z:45f978f8-d63a-4f60-a4c4-e93d6e92b282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:23 GMT" + ], + "Content-Length": [ + "517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419\",\r\n \"name\": \"1d45794b-8a66-4ff2-8381-327608f30419\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:43:52.1252813Z\",\r\n \"endTime\": \"2020-10-28T16:43:52.7625305Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\"" + ], + "x-ms-request-id": [ + "fb548c90-9c1b-4960-8c19-b15f5aff8ad8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "f897b70f-d896-4c82-9c69-14e0c242d687" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164423Z:f897b70f-d896-4c82-9c69-14e0c242d687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:23 GMT" + ], + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a35609c9-ea11-e3a5-4404-b4d1132a28e7\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e8273a3-87e4-4374-b7e8-704088d7bd84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\"" + ], + "x-ms-request-id": [ + "290851bc-29d1-4c04-9e46-48fe20f10fcc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "de18403b-1060-4f26-800c-a9de601aa467" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164440Z:de18403b-1060-4f26-800c-a9de601aa467" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:39 GMT" + ], + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a35609c9-ea11-e3a5-4404-b4d1132a28e7\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2cb8fc6-a5a2-4261-999d-65ab36c8a04f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + ], + "x-ms-correlation-request-id": [ + "ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164424Z:ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7198-vnet' under resource group 'ps7198' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + ], + "x-ms-request-id": [ + "e031733f-1c72-4d07-85a6-349bc8387538" + ], + "x-ms-correlation-request-id": [ + "45d39313-18c5-47f5-8f82-282bc183a5f9" + ], + "x-ms-arm-service-request-id": [ + "55a7a5f9-4b48-4ff1-9b9c-25a3308faa01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164435Z:45d39313-18c5-47f5-8f82-282bc183a5f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:34 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b0780a0-21db-48a0-a832-64d8f5941666" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + ], + "x-ms-request-id": [ + "b74ebb27-b2d7-436d-ae70-d567c0c8cab2" + ], + "x-ms-correlation-request-id": [ + "95d26c2c-7c55-47b6-97c3-5a3b915426b9" + ], + "x-ms-arm-service-request-id": [ + "5ff60756-9dd9-49ee-b178-9fcadcee1053" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164435Z:95d26c2c-7c55-47b6-97c3-5a3b915426b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:34 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c555f2c0-1a5f-4ea2-837a-517cb740d0ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + ], + "x-ms-request-id": [ + "95ec951c-d44f-4de3-babc-bfee4edfdb78" + ], + "x-ms-correlation-request-id": [ + "b911b64d-f5d2-46bc-9b3b-1c44649d1a61" + ], + "x-ms-arm-service-request-id": [ + "e7b9021c-4d59-4cf0-a532-c372d9cacc78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164435Z:b911b64d-f5d2-46bc-9b3b-1c44649d1a61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:34 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a7dc37f3-19c3-431c-a424-986bdef2dad7\"" + ], + "x-ms-request-id": [ + "4b5af1bb-d0ac-46fb-ade6-af49bde92d91" + ], + "x-ms-correlation-request-id": [ + "e333e209-fce0-4998-a4d0-ffd3b6d89e78" + ], + "x-ms-arm-service-request-id": [ + "6aa461a1-f754-483d-a587-8eb2dc8b8056" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164440Z:e333e209-fce0-4998-a4d0-ffd3b6d89e78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:39 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b8a1c39-359e-4655-929c-e24805a23a1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a7dc37f3-19c3-431c-a424-986bdef2dad7\"" + ], + "x-ms-request-id": [ + "c258b65b-dc45-42fa-a0cf-3d8b77362fdd" + ], + "x-ms-correlation-request-id": [ + "4b9dbd3f-bb95-442f-8ef5-bb5cd4ce3f6d" + ], + "x-ms-arm-service-request-id": [ + "128a647f-b69d-4656-979d-09a7290916ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164440Z:4b9dbd3f-bb95-442f-8ef5-bb5cd4ce3f6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:39 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3095499a-e884-461f-9eba-60c0d846bdd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "268" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b299c62c-7898-461e-93d4-49e065345b59" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/b299c62c-7898-461e-93d4-49e065345b59?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "80f00e18-ecef-44b2-bfac-47d631a089c1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "addae080-5cb8-413f-bc89-77be6785886b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164431Z:80f00e18-ecef-44b2-bfac-47d631a089c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:30 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"65a4f5e3-f5fa-47c1-8fec-cb0ba2a73a5b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db66aaf1-27e2-4c42-bbad-156097c79e76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1071" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ccb75040-ae76-497f-b50a-e5494f7bf929" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/ccb75040-ae76-497f-b50a-e5494f7bf929?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "3aba9fc1-3e67-4068-adf8-adc43b13ef4f" + ], + "x-ms-arm-service-request-id": [ + "5b3605e2-5121-458e-b609-f13b7593d084" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164436Z:3aba9fc1-3e67-4068-adf8-adc43b13ef4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:35 GMT" + ], + "Content-Length": [ + "2182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/b299c62c-7898-461e-93d4-49e065345b59?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9iMjk5YzYyYy03ODk4LTQ2MWUtOTNkNC00OWUwNjUzNDViNTk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3a4d0e4-a405-4dbd-bd8f-9a2df23468ad" + ], + "x-ms-correlation-request-id": [ + "c7d214a4-f3ae-4a7a-87b8-e42a00a9945b" + ], + "x-ms-arm-service-request-id": [ + "17850c9e-ba42-4c45-9084-ce5c839ecd2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164434Z:c7d214a4-f3ae-4a7a-87b8-e42a00a9945b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:34 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/ccb75040-ae76-497f-b50a-e5494f7bf929?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jY2I3NTA0MC1hZTc2LTQ5N2YtYjUwYS1lNTQ5NGY3YmY5Mjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d2493df7-e7c0-4f8b-a58c-f071ee6720f1" + ], + "x-ms-correlation-request-id": [ + "21433a92-faa7-4eff-a551-313bd40fba7f" + ], + "x-ms-arm-service-request-id": [ + "6de5a3b6-9332-43aa-b00a-97edad5d8fc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164439Z:21433a92-faa7-4eff-a551-313bd40fba7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:38 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3329224d-2f16-42e0-b62d-82d6807b3d32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "398" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A44%3A42.547975Z'\"" + ], + "x-ms-request-id": [ + "3df90d6e-2db9-45d6-b3c3-aedddd1d61a4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "7ad5bafd-a154-40af-82c5-f2e86a8bf2d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164443Z:7ad5bafd-a154-40af-82c5-f2e86a8bf2d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:44:42 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A44%3A42.547975Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13ace9f1-48c6-481c-8143-d323f09a1a0e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e2ff6130-8406-451b-95b8-cefb7acee5fd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164513Z:e2ff6130-8406-451b-95b8-cefb7acee5fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:45:13 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a4cc1887-37d8-431b-8824-20d5d545b00e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "6acfe07d-a397-4fe6-a85d-1b66ffc29cdd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164544Z:6acfe07d-a397-4fe6-a85d-1b66ffc29cdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:45:43 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c23a19dd-997d-4c22-a648-65c9da7b27ae" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "97facb45-3e1d-4165-a8a4-69846db4903c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164614Z:97facb45-3e1d-4165-a8a4-69846db4903c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:46:13 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb96695d-b068-4c0d-addb-753befd1c7eb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f927a336-75dd-48c1-b04a-01a46081c0bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164644Z:f927a336-75dd-48c1-b04a-01a46081c0bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:46:44 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96de1dfb-a749-4cf8-8f54-188872fd8deb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2bf2c7d7-d571-4403-af8a-2ce09c5705c3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164714Z:2bf2c7d7-d571-4403-af8a-2ce09c5705c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:47:13 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e3709e66-be36-425d-9d31-59aab44bfdd1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "d031f568-c1ae-4f69-9d6a-34bd6c2246ee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164745Z:d031f568-c1ae-4f69-9d6a-34bd6c2246ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:47:44 GMT" + ], + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dabc9ec3-4e12-435a-b3b5-6719802437e0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "90941157-84e5-465a-ba01-aa6b28a08878" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164815Z:90941157-84e5-465a-ba01-aa6b28a08878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:15 GMT" + ], + "Content-Length": [ + "532" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"2020-10-28T16:47:59.0212245Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A47%3A59.0248925Z'\"" + ], + "x-ms-request-id": [ + "7f2b97da-5134-49c0-ab9f-6774381b20ec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "9004ecb0-bb79-43af-be85-1a3127316b70" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164816Z:9004ecb0-bb79-43af-be85-1a3127316b70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:15 GMT" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A47%3A59.0248925Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae4e711d-7ba2-46f3-b93a-d0d0cf109970" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + ], + "x-ms-request-id": [ + "d3519e7e-fded-4c99-9f10-0a50a3ee2d41" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "50ef2e70-29cc-470f-8fec-0afa8e639dae" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164854Z:50ef2e70-29cc-470f-8fec-0afa8e639dae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:53 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4715e52e-a479-4238-aa5a-7d4133704e6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + ], + "x-ms-request-id": [ + "8d28be25-ac26-4b2c-8973-454bba945d5f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "702cb3dd-e117-40b9-b205-c3008ff743f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164925Z:702cb3dd-e117-40b9-b205-c3008ff743f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:25 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11d44cda-e21b-445c-bddd-c0340023ad07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + ], + "x-ms-request-id": [ + "1609f141-3489-4cc4-897a-519ff08920d2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "83e4d50a-4f46-4a63-b1ad-ef4ae2886f8d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165003Z:83e4d50a-4f46-4a63-b1ad-ef4ae2886f8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:02 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzA3NDUzZWYwLTU5NDctNGY0NC05MmQ4LWM3YWNmYjFmYjk2ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a1891fe-0210-4481-8d5c-7297305b08ec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "adc5d66d-f6ae-4433-bdd1-78a3cdebbe9c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164849Z:adc5d66d-f6ae-4433-bdd1-78a3cdebbe9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:49 GMT" + ], + "Content-Length": [ + "496" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d\",\r\n \"name\": \"07453ef0-5947-4f44-92d8-c7acfb1fb96d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:48:17.3230844Z\",\r\n \"endTime\": \"2020-10-28T16:48:17.4324552Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ca9e323-be1e-424b-8d32-25d6fbe36b99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a1319d5-1f22-4b9c-bc73-72f48cd2f339" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "97748a2a-8186-4f1b-afcf-add68db05d79" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164850Z:97748a2a-8186-4f1b-afcf-add68db05d79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:49 GMT" + ], + "Content-Length": [ + "311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\",\r\n \"name\": \"ps3091/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78a095cd-bd93-45ba-87dc-915dacf4e04e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "314" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-28T16%3A48%3A50.7430903Z'\"" + ], + "x-ms-request-id": [ + "a03adbd1-cc38-487d-b36b-0bf9700e13d5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1f3541f0-a2fd-4995-893a-5ebef9f74028" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164853Z:1f3541f0-a2fd-4995-893a-5ebef9f74028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:53 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A50.7430903Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupPipelineTest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15909a80-4c24-4237-b657-17213ebcf7ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.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/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "0603448e-4351-406c-9b23-91c48e610a80" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "13a7dc21-6d50-4c1b-9436-647bf8e51cea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164854Z:13a7dc21-6d50-4c1b-9436-647bf8e51cea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:48:54 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"label\": \"powershellBackupPipelineTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2I0YWJhMzRjLWQ5YzQtNDMwMC04NTBkLWUwZWZhYzc1Yjg5NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cb392fb-ffbb-4fc6-91a7-1b8f9dd448c6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "99cef42c-b39f-4122-a5d9-1b5158c5667e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164925Z:99cef42c-b39f-4122-a5d9-1b5158c5667e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:24 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895\",\r\n \"name\": \"b4aba34c-d9c4-4300-850d-e0efac75b895\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:48:54.7358585Z\",\r\n \"endTime\": \"2020-10-28T16:48:54.9078297Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e1ad08c-c58f-4f73-9748-69b9670d57fb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "3e8150b2-90ee-4ba7-8117-220957c8c57a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164925Z:3e8150b2-90ee-4ba7-8117-220957c8c57a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:25 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0b67056-f3c9-4140-8312-79f0a3494108" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f6e4d542-4e6f-4c38-b36d-56c866ec2b68" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "81c6fbec-e1c2-4a01-86b4-2837cafaf916" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164931Z:81c6fbec-e1c2-4a01-86b4-2837cafaf916" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:31 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"label\": \"powershellUpdateBackupPipelineTest\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "911f8ab1-9d20-401a-a88e-0445bd067405" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "79" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ccb49733-a53a-428c-8756-30a200a18c48" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f41ba1c1-4cdd-4ec5-89b1-4078ec4eb255" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164931Z:f41ba1c1-4cdd-4ec5-89b1-4078ec4eb255" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:30 GMT" + ], + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"etag\": \"10/28/2020 4:49:31 PM\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01a9fefc-0691-4ee9-8d66-06959dc676c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc00256-874f-4b7c-a66a-f83c8e3a198f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "cf8d25e8-5ff8-4687-a0e4-14a4f28d2275" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164931Z:cf8d25e8-5ff8-4687-a0e4-14a4f28d2275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:31 GMT" + ], + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c91f5620-b5b3-44e8-8975-2cd08bcde55c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a3e174c-e3dc-444f-8ef3-807490af36a0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "0b02625f-7e7e-4ccd-8af2-68a830caff26" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165003Z:0b02625f-7e7e-4ccd-8af2-68a830caff26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:02 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054f4967-c232-4314-b5b1-c16023464798" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "a489e2d5-e437-49ac-8ce9-2d795d2f0a02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "f85cf376-084e-4280-8065-7d6976c8e66c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T164932Z:f85cf376-084e-4280-8065-7d6976c8e66c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:49:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExZjY5N2RkLWM4OWEtNDJjNS1hZDJhLWI2NTlhYWYwNjM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a6a3396f-7f0a-442e-b3bc-b867936d2bec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "f0ad8a98-0b6c-4577-8ca6-1bfba4b345e8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165002Z:f0ad8a98-0b6c-4577-8ca6-1bfba4b345e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:01 GMT" + ], + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385\",\r\n \"name\": \"11f697dd-c89a-42c5-ad2a-b659aaf06385\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:49:32.092571Z\",\r\n \"endTime\": \"2020-10-28T16:49:34.2596317Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExZjY5N2RkLWM4OWEtNDJjNS1hZDJhLWI2NTlhYWYwNjM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7453d744-8c90-40e5-9fd5-0038559920fd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "6d0dd149-cfcf-4c54-b65e-308be6461549" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165002Z:6d0dd149-cfcf-4c54-b65e-308be6461549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:01 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7198?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzE5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b5e4533-f33e-4ae3-bb91-6bb77771b474" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9e381341-e368-4386-94e6-db9ae93df4a4" + ], + "x-ms-correlation-request-id": [ + "9e381341-e368-4386-94e6-db9ae93df4a4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165006Z:9e381341-e368-4386-94e6-db9ae93df4a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "816d4279-74eb-4b98-85ed-5d8bfe6192a1" + ], + "x-ms-correlation-request-id": [ + "816d4279-74eb-4b98-85ed-5d8bfe6192a1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165021Z:816d4279-74eb-4b98-85ed-5d8bfe6192a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "42dd542e-7858-4b82-834d-8f88f25a2e5e" + ], + "x-ms-correlation-request-id": [ + "42dd542e-7858-4b82-834d-8f88f25a2e5e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165037Z:42dd542e-7858-4b82-834d-8f88f25a2e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + ], + "x-ms-correlation-request-id": [ + "0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165052Z:0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:50:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + ], + "x-ms-correlation-request-id": [ + "3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165107Z:3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:51:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + ], + "x-ms-correlation-request-id": [ + "9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165123Z:9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:51:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "ff393fd6-68da-4248-8c7c-4867d78c9006" + ], + "x-ms-correlation-request-id": [ + "ff393fd6-68da-4248-8c7c-4867d78c9006" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165138Z:ff393fd6-68da-4248-8c7c-4867d78c9006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:51:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + ], + "x-ms-correlation-request-id": [ + "15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165153Z:15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:51:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + ], + "x-ms-correlation-request-id": [ + "768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165209Z:768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:52:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "1a98413c-c5b5-4143-a904-641697208ff5" + ], + "x-ms-correlation-request-id": [ + "1a98413c-c5b5-4143-a904-641697208ff5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165224Z:1a98413c-c5b5-4143-a904-641697208ff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:52:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "3e080f0a-0713-409b-98d1-ed21d74b94d8" + ], + "x-ms-correlation-request-id": [ + "3e080f0a-0713-409b-98d1-ed21d74b94d8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165239Z:3e080f0a-0713-409b-98d1-ed21d74b94d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:52:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "b13a6746-34bb-4b49-961f-71515e9c4f25" + ], + "x-ms-correlation-request-id": [ + "b13a6746-34bb-4b49-961f-71515e9c4f25" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165254Z:b13a6746-34bb-4b49-961f-71515e9c4f25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:52:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "0899c959-77ae-4eaa-8ad9-c6aad069cf52" + ], + "x-ms-correlation-request-id": [ + "0899c959-77ae-4eaa-8ad9-c6aad069cf52" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165310Z:0899c959-77ae-4eaa-8ad9-c6aad069cf52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:53:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "4f4e07d6-3408-49f9-a724-2544fee0adab" + ], + "x-ms-correlation-request-id": [ + "4f4e07d6-3408-49f9-a724-2544fee0adab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165325Z:4f4e07d6-3408-49f9-a724-2544fee0adab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:53:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "05956b0c-6c0b-488c-84aa-1d180177d8d6" + ], + "x-ms-correlation-request-id": [ + "05956b0c-6c0b-488c-84aa-1d180177d8d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165340Z:05956b0c-6c0b-488c-84aa-1d180177d8d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:53:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "af19fb61-14e5-4542-8380-91b1b618892d" + ], + "x-ms-correlation-request-id": [ + "af19fb61-14e5-4542-8380-91b1b618892d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165356Z:af19fb61-14e5-4542-8380-91b1b618892d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:53:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + ], + "x-ms-correlation-request-id": [ + "01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165411Z:01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:54:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + ], + "x-ms-correlation-request-id": [ + "b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165426Z:b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:54:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "89105fc9-ad58-4329-ad91-f78fca4b4348" + ], + "x-ms-correlation-request-id": [ + "89105fc9-ad58-4329-ad91-f78fca4b4348" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165442Z:89105fc9-ad58-4329-ad91-f78fca4b4348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:54:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + ], + "x-ms-correlation-request-id": [ + "1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165457Z:1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:54:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + ], + "x-ms-correlation-request-id": [ + "a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165513Z:a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:55:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "20199153-fc39-4082-b3fb-ca39d43ac0b6" + ], + "x-ms-correlation-request-id": [ + "20199153-fc39-4082-b3fb-ca39d43ac0b6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165528Z:20199153-fc39-4082-b3fb-ca39d43ac0b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:55:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + ], + "x-ms-correlation-request-id": [ + "4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165543Z:4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:55:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "664925f3-dc83-4c4f-8700-e3436cfa521c" + ], + "x-ms-correlation-request-id": [ + "664925f3-dc83-4c4f-8700-e3436cfa521c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165559Z:664925f3-dc83-4c4f-8700-e3436cfa521c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:55:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + ], + "x-ms-correlation-request-id": [ + "93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165614Z:93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:56:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + ], + "x-ms-correlation-request-id": [ + "7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165629Z:7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:56:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + ], + "x-ms-correlation-request-id": [ + "02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165645Z:02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:56:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + ], + "x-ms-correlation-request-id": [ + "7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201028T165645Z:7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Oct 2020 16:56:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPipelines": [ + "ps7198", + "ps3660", + "ps3091", + "ps3718", + "ps1781", + "ps1187", + "ps3158" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json new file mode 100644 index 000000000000..c8c0191aad11 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json @@ -0,0 +1,1860 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3077?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4162f81b-84cc-4be2-94dd-c73de294e69b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "678c574d-7b09-4026-9a4f-565e94739b54" + ], + "x-ms-correlation-request-id": [ + "678c574d-7b09-4026-9a4f-565e94739b54" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174855Z:678c574d-7b09-4026-9a4f-565e94739b54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:48:54 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077\",\r\n \"name\": \"ps3077\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d82d9f7f-b80d-46e8-a4b9-fe753f4222c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "79" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A00.8384612Z'\"" + ], + "x-ms-request-id": [ + "9edbb701-b6b3-4f24-96ef-ecabc65da6f5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "8da0b7b0-f2ec-46f0-ae5c-d147710f4143" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174901Z:8da0b7b0-f2ec-46f0-ae5c-d147710f4143" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:01 GMT" + ], + "Content-Length": [ + "347" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\",\r\n \"name\": \"ps5700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A00.8384612Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2FkOWRhYzEtM2NiZC00NDc4LTk0YjMtYjk3NzNjY2Y1N2EyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2e90122e-f6d4-46df-96ac-8551b74f3f1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "eeffc221-1786-42a3-927e-dac3979c681c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174932Z:eeffc221-1786-42a3-927e-dac3979c681c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:31 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2\",\r\n \"name\": \"7ad9dac1-3cbd-4478-94b3-b9773ccf57a2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T17:49:00.7540751Z\",\r\n \"endTime\": \"2020-10-25T17:49:00.9103766Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A00.9125139Z'\"" + ], + "x-ms-request-id": [ + "a6c02b49-1be4-4f66-a357-efca4984dc23" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "e0cd351f-6522-4f33-8c2b-ed28d6e9be3e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174932Z:e0cd351f-6522-4f33-8c2b-ed28d6e9be3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:31 GMT" + ], + "Content-Length": [ + "348" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\",\r\n \"name\": \"ps5700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A00.9125139Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "032ba4fc-35d6-40b9-bd5d-d345fed1e6a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "523" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A33.0302529Z'\"" + ], + "x-ms-request-id": [ + "ab866fa6-d4a7-4c93-a25e-2943c655229c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1b687ade-a316-49f5-98f4-6fc0359c88ff?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "70a679aa-8a7c-4944-8828-a9aa538a503b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174933Z:70a679aa-8a7c-4944-8828-a9aa538a503b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:32 GMT" + ], + "Content-Length": [ + "671" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.0302529Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ca8cdbe-f2c4-485d-aadc-36deee281af1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + ], + "x-ms-request-id": [ + "31efb541-5325-420a-b843-cf713add844f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "460554fa-bd0e-4edd-a8de-0f67ef461754" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174933Z:460554fa-bd0e-4edd-a8de-0f67ef461754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:32 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38405d4a-272f-4452-a632-90ccde31019a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + ], + "x-ms-request-id": [ + "253980a2-f637-4593-b48e-5154a49e0fba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "c732d8c2-65f8-45ee-881e-2b56db7bf133" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174934Z:c732d8c2-65f8-45ee-881e-2b56db7bf133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:33 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b188c81c-22ef-4bba-b58a-5b4c89e5cf76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + ], + "x-ms-request-id": [ + "ae15a9dd-55dd-4fad-b2ee-aa37894cbaa4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "e088ca79-620f-41a9-a745-2c880928673a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174934Z:e088ca79-620f-41a9-a745-2c880928673a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:33 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczE3Nzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3306fb10-23b5-4ac3-a567-38ff53771d73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "523" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T17%3A49%3A33.7907898Z'\"" + ], + "x-ms-request-id": [ + "16933584-a300-4b5a-8b58-32219520fee7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ea58545d-55e4-453e-98ac-670ff366a248?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "65e90b87-8194-4e40-b87e-5d3736a0d68b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174933Z:65e90b87-8194-4e40-b87e-5d3736a0d68b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:33 GMT" + ], + "Content-Length": [ + "671" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.7907898Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c72bd46-167e-40d7-beb5-36a26e6bba3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ed2c3664-e9b6-4ac2-8553-c7b51eff8be9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "946c0c2b-fbc8-4ee0-a3d2-ffb0e1396bda" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174934Z:946c0c2b-fbc8-4ee0-a3d2-ffb0e1396bda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:33 GMT" + ], + "Content-Length": [ + "1357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7fee711-ac22-47ff-b6a8-6d8865232d7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24344a5f-5863-4c50-bdde-ed45af7333ff" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "99c375f2-5268-494e-8406-b791023fb33b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175005Z:99c375f2-5268-494e-8406-b791023fb33b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:04 GMT" + ], + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "463ef935-5cb6-491d-979a-dc7a85612de0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f04cdc3a-93e3-4976-a257-4d92fd1fbe0b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "38a470f1-5dd2-4e39-a095-d73573b4bc6e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175006Z:38a470f1-5dd2-4e39-a095-d73573b4bc6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:05 GMT" + ], + "Content-Length": [ + "684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7874b005-16d4-4645-bc00-88bd483f2ea7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "f789d202-3617-4905-8219-0188bff732fc" + ], + "x-ms-correlation-request-id": [ + "f789d202-3617-4905-8219-0188bff732fc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T174935Z:f789d202-3617-4905-8219-0188bff732fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:49:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85f3287a-8575-4368-930f-5f1ad2938b54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "e1366c63-3670-404d-b4bf-e52c23cfd047" + ], + "x-ms-correlation-request-id": [ + "e1366c63-3670-404d-b4bf-e52c23cfd047" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175006Z:e1366c63-3670-404d-b4bf-e52c23cfd047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:05 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkNDAwMDItYTBlNC00MWJhLWE5OGQtZmIwZjVlOWRlYzI5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2063303e-a8ef-45a8-8be1-1a4808a30a3b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "737cef87-b079-434e-8d70-271c3f6ba704" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175005Z:737cef87-b079-434e-8d70-271c3f6ba704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:04 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29\",\r\n \"name\": \"0ad40002-a0e4-41ba-a98d-fb0f5e9dec29\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T17:49:34.9167882Z\",\r\n \"endTime\": \"2020-10-25T17:49:35.0425814Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkNDAwMDItYTBlNC00MWJhLWE5OGQtZmIwZjVlOWRlYzI5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d88f62fb-1d93-43e8-b9af-4b7e7a9a44d9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "cb61e0df-7dc9-4d55-a910-b28dc5e66b30" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175005Z:cb61e0df-7dc9-4d55-a910-b28dc5e66b30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:04 GMT" + ], + "Content-Length": [ + "670" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A35.012657Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3077?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74cf71ee-095a-44f7-a61a-3fdea06227e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + ], + "x-ms-correlation-request-id": [ + "6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175009Z:6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "01b41e6f-0545-499c-80a6-684e74ba4722" + ], + "x-ms-correlation-request-id": [ + "01b41e6f-0545-499c-80a6-684e74ba4722" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175024Z:01b41e6f-0545-499c-80a6-684e74ba4722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "36b891c6-caa1-4582-91c6-72de7edb0f6c" + ], + "x-ms-correlation-request-id": [ + "36b891c6-caa1-4582-91c6-72de7edb0f6c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175039Z:36b891c6-caa1-4582-91c6-72de7edb0f6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "20231d6c-8baf-4c20-83ad-957a075b1c97" + ], + "x-ms-correlation-request-id": [ + "20231d6c-8baf-4c20-83ad-957a075b1c97" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175055Z:20231d6c-8baf-4c20-83ad-957a075b1c97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:50:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "df678e7a-17bd-4346-a2fc-ca3722733b85" + ], + "x-ms-correlation-request-id": [ + "df678e7a-17bd-4346-a2fc-ca3722733b85" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175110Z:df678e7a-17bd-4346-a2fc-ca3722733b85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:51:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "5ccfc894-3feb-43b7-aeec-0d9f1683f678" + ], + "x-ms-correlation-request-id": [ + "5ccfc894-3feb-43b7-aeec-0d9f1683f678" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175126Z:5ccfc894-3feb-43b7-aeec-0d9f1683f678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:51:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "686bd442-db51-4d37-83f2-4aa450797c6e" + ], + "x-ms-correlation-request-id": [ + "686bd442-db51-4d37-83f2-4aa450797c6e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175141Z:686bd442-db51-4d37-83f2-4aa450797c6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:51:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "32309b4c-f447-40b0-9fdb-10da06543f70" + ], + "x-ms-correlation-request-id": [ + "32309b4c-f447-40b0-9fdb-10da06543f70" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175156Z:32309b4c-f447-40b0-9fdb-10da06543f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:51:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + ], + "x-ms-correlation-request-id": [ + "bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175212Z:bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:52:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + ], + "x-ms-correlation-request-id": [ + "220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175227Z:220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:52:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + ], + "x-ms-correlation-request-id": [ + "5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175242Z:5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:52:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "23c8752c-ec73-41a5-b813-1fe57572a8d7" + ], + "x-ms-correlation-request-id": [ + "23c8752c-ec73-41a5-b813-1fe57572a8d7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T175243Z:23c8752c-ec73-41a5-b813-1fe57572a8d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 17:52:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SnapshotPolicyCrud": [ + "ps3077", + "ps5700", + "ps3132", + "ps1778" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json new file mode 100644 index 000000000000..0d09c65665d4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json @@ -0,0 +1,1270 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2641?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00e478ef-a5ae-4666-8ef7-71e64a06b14c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "455013a1-d84e-46dd-b67a-c5a021c0c50d" + ], + "x-ms-correlation-request-id": [ + "455013a1-d84e-46dd-b67a-c5a021c0c50d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194222Z:455013a1-d84e-46dd-b67a-c5a021c0c50d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:42:22 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5676815-362b-413b-821e-88fae7a72e5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T19%3A42%3A28.7567616Z'\"" + ], + "x-ms-request-id": [ + "a481ccf0-0ec0-4edb-a565-d7324ebaabe6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7783425f-17f4-455a-b95a-7dd70fdd96c5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194230Z:7783425f-17f4-455a-b95a-7dd70fdd96c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:42:29 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.7567616Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTFhOTZjNTAtYWQwZS00MGQ5LWFjM2ItNTdjNWEzODY4OTYxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "94bdfa54-f77f-4785-bcba-819d1ba2118b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "16f23706-cd02-4d29-bc1e-75f4e570bb93" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194300Z:16f23706-cd02-4d29-bc1e-75f4e570bb93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:00 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961\",\r\n \"name\": \"91a96c50-ad0e-40d9-ac3b-57c5a3868961\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T19:42:28.2946712Z\",\r\n \"endTime\": \"2020-10-25T19:42:28.8259477Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\"" + ], + "x-ms-request-id": [ + "fc1207b6-f6f5-4d55-86a2-acc6390c3870" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "19dc13fe-8cb2-4abc-8d78-d240e2ad88ce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194300Z:19dc13fe-8cb2-4abc-8d78-d240e2ad88ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:00 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daca0dc8-caab-4825-b3c8-89a953c9c9d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\"" + ], + "x-ms-request-id": [ + "aa58446d-173c-4194-9c65-7b135c64fcb5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "3af8f6d8-55c0-4ec1-a511-13981c31f564" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194301Z:3af8f6d8-55c0-4ec1-a511-13981c31f564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:00 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTYvc25hcHNob3RQb2xpY2llcy9wczI3NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b44d7c55-fdb2-4ec7-8287-68d86c0ca5ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "524" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T19%3A43%3A01.8442602Z'\"" + ], + "x-ms-request-id": [ + "6d4bf0a6-2566-43f5-96dc-86e5a6488d3c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/562e84a8-8735-47f4-801d-f7523afcf904?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "be0ddfae-c853-445c-9526-daa5b73d94ae" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194302Z:be0ddfae-c853-445c-9526-daa5b73d94ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:01 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746\",\r\n \"name\": \"ps1396/ps2746\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A43%3A01.8442602Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2746\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTYvc25hcHNob3RQb2xpY2llcy9wczI3NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b1dffb3-b200-4ac1-b14f-5a8d9aeb5e09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-25T19%3A43%3A01.9083055Z'\"" + ], + "x-ms-request-id": [ + "6711c0d9-c0b5-4b0b-80a1-9a4258bc07db" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "554370ec-dc85-4745-a83d-65b05f0a255d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194302Z:554370ec-dc85-4745-a83d-65b05f0a255d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:01 GMT" + ], + "Content-Length": [ + "673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746\",\r\n \"name\": \"ps1396/ps2746\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A43%3A01.9083055Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2746\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2641?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8222b1f-9e27-43c9-aeaa-1b49b4ffa385" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "83c5d5a2-ce70-40c0-8fba-11765fb5787e" + ], + "x-ms-correlation-request-id": [ + "83c5d5a2-ce70-40c0-8fba-11765fb5787e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194304Z:83c5d5a2-ce70-40c0-8fba-11765fb5787e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fbed0426-d90c-47fa-af3a-24f08172517e" + ], + "x-ms-correlation-request-id": [ + "fbed0426-d90c-47fa-af3a-24f08172517e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194320Z:fbed0426-d90c-47fa-af3a-24f08172517e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9cfec789-7924-44f6-85cb-f7441e3a0bf1" + ], + "x-ms-correlation-request-id": [ + "9cfec789-7924-44f6-85cb-f7441e3a0bf1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194335Z:9cfec789-7924-44f6-85cb-f7441e3a0bf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "27c3d20c-a955-41c1-a4cf-0a50f24a4413" + ], + "x-ms-correlation-request-id": [ + "27c3d20c-a955-41c1-a4cf-0a50f24a4413" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194350Z:27c3d20c-a955-41c1-a4cf-0a50f24a4413" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:43:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + ], + "x-ms-correlation-request-id": [ + "a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194406Z:a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:44:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "70f6b0e9-0270-4312-931a-74252f8cdd05" + ], + "x-ms-correlation-request-id": [ + "70f6b0e9-0270-4312-931a-74252f8cdd05" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194421Z:70f6b0e9-0270-4312-931a-74252f8cdd05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:44:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "af3d8500-bdb6-4256-a611-dde118425cfe" + ], + "x-ms-correlation-request-id": [ + "af3d8500-bdb6-4256-a611-dde118425cfe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194436Z:af3d8500-bdb6-4256-a611-dde118425cfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:44:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "2f0535c3-4b44-418d-bd53-2ec626e77c9d" + ], + "x-ms-correlation-request-id": [ + "2f0535c3-4b44-418d-bd53-2ec626e77c9d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194452Z:2f0535c3-4b44-418d-bd53-2ec626e77c9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:44:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "04f8271b-41c4-4e6d-8b38-6843d8ac645c" + ], + "x-ms-correlation-request-id": [ + "04f8271b-41c4-4e6d-8b38-6843d8ac645c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194507Z:04f8271b-41c4-4e6d-8b38-6843d8ac645c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:45:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "43b54e18-28a5-4e45-9f02-2bc9ece342b4" + ], + "x-ms-correlation-request-id": [ + "43b54e18-28a5-4e45-9f02-2bc9ece342b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194523Z:43b54e18-28a5-4e45-9f02-2bc9ece342b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:45:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "64e2e481-cae7-46bb-8174-9b4e9946971d" + ], + "x-ms-correlation-request-id": [ + "64e2e481-cae7-46bb-8174-9b4e9946971d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194538Z:64e2e481-cae7-46bb-8174-9b4e9946971d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:45:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "963fd6c2-74f2-44c7-afe2-73b76f1d3061" + ], + "x-ms-correlation-request-id": [ + "963fd6c2-74f2-44c7-afe2-73b76f1d3061" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194553Z:963fd6c2-74f2-44c7-afe2-73b76f1d3061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:45:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "7ad21544-0346-4333-bd77-007ba60626fa" + ], + "x-ms-correlation-request-id": [ + "7ad21544-0346-4333-bd77-007ba60626fa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201025T194554Z:7ad21544-0346-4333-bd77-007ba60626fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 25 Oct 2020 19:45:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SnapshotPolicyPipelines": [ + "ps2641", + "ps8762", + "ps1396", + "ps2746", + "ps7053" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json new file mode 100644 index 000000000000..ff8b94057266 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json @@ -0,0 +1,820 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1213?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTIxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4386e2a-a9ce-4f47-b33e-d2bb6d0676e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + ], + "x-ms-correlation-request-id": [ + "80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T091920Z:80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:19:20 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213\",\r\n \"name\": \"ps1213\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cdf5e85-b166-4e55-aade-8561ab02d493" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "77" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T09%3A19%3A26.6390793Z'\"" + ], + "x-ms-request-id": [ + "031e9cda-533c-48fb-a182-aff67a81264b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e3899aaa-a02f-490d-b619-938edb25d1dd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T091927Z:e3899aaa-a02f-490d-b619-938edb25d1dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:19:27 GMT" + ], + "Content-Length": [ + "345" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\",\r\n \"name\": \"ps2196\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T09%3A19%3A26.6390793Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2IwMWZiMmEzLTNiYWQtNDM1Yy05YTVmLTQ4N2Y3MTAwYTQwMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "abb5ecf0-174c-4233-aec7-522024041761" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f9300450-a545-4616-bdff-9798de9cb4ab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T091958Z:f9300450-a545-4616-bdff-9798de9cb4ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:19:57 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402\",\r\n \"name\": \"b01fb2a3-3bad-435c-9a5f-487f7100a402\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T09:19:26.5688784Z\",\r\n \"endTime\": \"2020-10-29T09:19:26.7175142Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-29T09%3A19%3A26.71113Z'\"" + ], + "x-ms-request-id": [ + "aeee0e43-e8c5-4f82-9b39-8a5ea7452ace" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2b06dfa5-44ee-4765-9066-f71a7e8f4add" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T091958Z:2b06dfa5-44ee-4765-9066-f71a7e8f4add" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:19:57 GMT" + ], + "Content-Length": [ + "344" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\",\r\n \"name\": \"ps2196\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T09%3A19%3A26.71113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTYvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26c32aa9-2585-4136-9529-f4ba1273923e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc942acd-de7c-4479-8420-54266cdac544" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "30bffbe5-0348-4bca-b009-e53c3a46fa00" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T091958Z:30bffbe5-0348-4bca-b009-e53c3a46fa00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:19:57 GMT" + ], + "Content-Length": [ + "311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196/vaults/cbsvault\",\r\n \"name\": \"ps2196/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e679c7cc-af9c-11ea-bf72-2e183d486374\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1213?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTIxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c82fbd-20e8-4d66-a8b4-b0ac181c5bec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "7a3f1b6d-1a35-467b-9874-508fdcbd5463" + ], + "x-ms-correlation-request-id": [ + "7a3f1b6d-1a35-467b-9874-508fdcbd5463" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092000Z:7a3f1b6d-1a35-467b-9874-508fdcbd5463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:20:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + ], + "x-ms-correlation-request-id": [ + "5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092015Z:5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:20:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "aa978511-7203-4f64-ba23-11f62f090dd1" + ], + "x-ms-correlation-request-id": [ + "aa978511-7203-4f64-ba23-11f62f090dd1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092030Z:aa978511-7203-4f64-ba23-11f62f090dd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:20:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "55c65f39-d170-4cf0-9608-0c4e764874ac" + ], + "x-ms-correlation-request-id": [ + "55c65f39-d170-4cf0-9608-0c4e764874ac" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092046Z:55c65f39-d170-4cf0-9608-0c4e764874ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:20:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "97311ce2-a229-4750-94cc-dd3239b5dff1" + ], + "x-ms-correlation-request-id": [ + "97311ce2-a229-4750-94cc-dd3239b5dff1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092101Z:97311ce2-a229-4750-94cc-dd3239b5dff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:21:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f642d77c-a765-48c7-a994-b3893dd566ea" + ], + "x-ms-correlation-request-id": [ + "f642d77c-a765-48c7-a994-b3893dd566ea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092116Z:f642d77c-a765-48c7-a994-b3893dd566ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:21:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "cb8248dd-4ae0-434c-9917-61c5b1b42562" + ], + "x-ms-correlation-request-id": [ + "cb8248dd-4ae0-434c-9917-61c5b1b42562" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092132Z:cb8248dd-4ae0-434c-9917-61c5b1b42562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:21:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "33011de7-0cda-4e05-a1ed-4b8ac81bf161" + ], + "x-ms-correlation-request-id": [ + "33011de7-0cda-4e05-a1ed-4b8ac81bf161" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201029T092132Z:33011de7-0cda-4e05-a1ed-4b8ac81bf161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 29 Oct 2020 09:21:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VaultCrud": [ + "ps1213", + "ps2196" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultPipelines.json new file mode 100644 index 000000000000..24034a0213f7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultPipelines.json @@ -0,0 +1,1108 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9633?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTYzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c31235f-a3c3-4b82-88f3-fd421f8eff2f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9f4c4f8a-5a01-49fb-9e50-34d53634e34a" + ], + "x-ms-correlation-request-id": [ + "9f4c4f8a-5a01-49fb-9e50-34d53634e34a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192231Z:9f4c4f8a-5a01-49fb-9e50-34d53634e34a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:22:31 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633\",\r\n \"name\": \"ps9633\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkzMDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49121a8d-d45c-4c2c-8658-c22870c2c820" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T19%3A22%3A36.5396498Z'\"" + ], + "x-ms-request-id": [ + "e41c0893-10fc-4f3a-a3e0-ca7b6012b99a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9dae0a03-d217-4dbb-928b-571a9092670a?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ecb1fd3d-2ea5-45fd-9c6f-83c5c3202257" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192237Z:ecb1fd3d-2ea5-45fd-9c6f-83c5c3202257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:22:37 GMT" + ], + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307\",\r\n \"name\": \"ps9307\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T19%3A22%3A36.5396498Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9dae0a03-d217-4dbb-928b-571a9092670a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzlkYWUwYTAzLWQyMTctNGRiYi05MjhiLTU3MWE5MDkyNjcwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "526a3c49-eb4c-4d41-837a-7233cdab6ddb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "182274bd-2c3c-46e1-9c2b-3c1f5ca12a7a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192307Z:182274bd-2c3c-46e1-9c2b-3c1f5ca12a7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:07 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9dae0a03-d217-4dbb-928b-571a9092670a\",\r\n \"name\": \"9dae0a03-d217-4dbb-928b-571a9092670a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T19:22:36.4800138Z\",\r\n \"endTime\": \"2020-10-26T19:22:36.6223162Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkzMDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T19%3A22%3A36.6137016Z'\"" + ], + "x-ms-request-id": [ + "67fe520c-7740-440f-9ad4-b54efdae92b6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5c3ba2f7-3599-4586-acb7-e8fe12a64204" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192308Z:5c3ba2f7-3599-4586-acb7-e8fe12a64204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:08 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307\",\r\n \"name\": \"ps9307\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T19%3A22%3A36.6137016Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTYzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkzMDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "856321eb-bfa7-40f4-9136-b6980ac18b43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-26T19%3A22%3A36.6137016Z'\"" + ], + "x-ms-request-id": [ + "a2a1b279-dd05-48f9-9436-7c0758c6a913" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7bae2092-24e8-455c-8183-464abf1e3776" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192308Z:7bae2092-24e8-455c-8183-464abf1e3776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:08 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9633/providers/Microsoft.NetApp/netAppAccounts/ps9307\",\r\n \"name\": \"ps9307\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T19%3A22%3A36.6137016Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9633?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTYzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e58349c0-8657-4e4c-85bf-687c77367e42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c5360aa5-d164-49c2-b84b-12a0cfaa3db7" + ], + "x-ms-correlation-request-id": [ + "c5360aa5-d164-49c2-b84b-12a0cfaa3db7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192310Z:c5360aa5-d164-49c2-b84b-12a0cfaa3db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3cb45dee-3c04-4fe9-bd59-efa714eed634" + ], + "x-ms-correlation-request-id": [ + "3cb45dee-3c04-4fe9-bd59-efa714eed634" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192325Z:3cb45dee-3c04-4fe9-bd59-efa714eed634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "50d68dab-474c-4029-82ec-1224ccc17134" + ], + "x-ms-correlation-request-id": [ + "50d68dab-474c-4029-82ec-1224ccc17134" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192340Z:50d68dab-474c-4029-82ec-1224ccc17134" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3f4c6493-1098-4afe-9e45-e685af31cdf0" + ], + "x-ms-correlation-request-id": [ + "3f4c6493-1098-4afe-9e45-e685af31cdf0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192355Z:3f4c6493-1098-4afe-9e45-e685af31cdf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:23:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2735a6de-1d7d-474b-9336-de2879228597" + ], + "x-ms-correlation-request-id": [ + "2735a6de-1d7d-474b-9336-de2879228597" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192411Z:2735a6de-1d7d-474b-9336-de2879228597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:24:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "e4da0066-2d1e-46ec-84a2-ef6bb8d5cca0" + ], + "x-ms-correlation-request-id": [ + "e4da0066-2d1e-46ec-84a2-ef6bb8d5cca0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192426Z:e4da0066-2d1e-46ec-84a2-ef6bb8d5cca0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:24:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "cbac4678-4bf7-4c6f-b672-6598c5437792" + ], + "x-ms-correlation-request-id": [ + "cbac4678-4bf7-4c6f-b672-6598c5437792" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192441Z:cbac4678-4bf7-4c6f-b672-6598c5437792" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:24:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "c9b1c18e-f273-45fa-aa95-662786fae0a5" + ], + "x-ms-correlation-request-id": [ + "c9b1c18e-f273-45fa-aa95-662786fae0a5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192456Z:c9b1c18e-f273-45fa-aa95-662786fae0a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:24:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "5fd92023-6c4d-49b1-844a-6f63b67cd3f4" + ], + "x-ms-correlation-request-id": [ + "5fd92023-6c4d-49b1-844a-6f63b67cd3f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192512Z:5fd92023-6c4d-49b1-844a-6f63b67cd3f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:25:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "ed81735d-3436-4fdb-81fb-c3623ccc2345" + ], + "x-ms-correlation-request-id": [ + "ed81735d-3436-4fdb-81fb-c3623ccc2345" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192527Z:ed81735d-3436-4fdb-81fb-c3623ccc2345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:25:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b0900966-d39c-406d-a43c-2f93000d4b71" + ], + "x-ms-correlation-request-id": [ + "b0900966-d39c-406d-a43c-2f93000d4b71" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192542Z:b0900966-d39c-406d-a43c-2f93000d4b71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:25:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "35984763-1499-445c-a0bf-d7cd93da0e11" + ], + "x-ms-correlation-request-id": [ + "35984763-1499-445c-a0bf-d7cd93da0e11" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192557Z:35984763-1499-445c-a0bf-d7cd93da0e11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:25:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16TXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "6e2970e0-e3ad-4fe3-98da-5e1b38330e06" + ], + "x-ms-correlation-request-id": [ + "6e2970e0-e3ad-4fe3-98da-5e1b38330e06" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201026T192558Z:6e2970e0-e3ad-4fe3-98da-5e1b38330e06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 26 Oct 2020 19:25:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VaultPipelines": [ + "ps9633", + "ps9307" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json new file mode 100644 index 000000000000..e145f7d2b8fa --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json @@ -0,0 +1,4051 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6921?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bd70408-442a-4fdf-bdf6-7c3912332ee2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8e1dab58-928a-4dc3-965a-a8060e898112" + ], + "x-ms-correlation-request-id": [ + "8e1dab58-928a-4dc3-965a-a8060e898112" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202108Z:8e1dab58-928a-4dc3-965a-a8060e898112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:07 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921\",\r\n \"name\": \"ps6921\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bae5774d-a387-485c-8cd2-3f8df0269c12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "16e77f23-7cf1-43eb-857e-fe846a4fd945" + ], + "x-ms-correlation-request-id": [ + "16e77f23-7cf1-43eb-857e-fe846a4fd945" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202109Z:16e77f23-7cf1-43eb-857e-fe846a4fd945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6921-vnet' under resource group 'ps6921' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" + ], + "x-ms-request-id": [ + "f8bc40b0-ddbe-4d02-82f3-2c2eb87fa0e0" + ], + "x-ms-correlation-request-id": [ + "f6bda8e2-7c31-4e7d-a27e-36a230036ad8" + ], + "x-ms-arm-service-request-id": [ + "aecb3a6c-3e0b-421f-8ae6-25afb78fb05f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202121Z:f6bda8e2-7c31-4e7d-a27e-36a230036ad8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:20 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b24f7f8-470a-4925-a998-c6299ff5bf6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" + ], + "x-ms-request-id": [ + "139f067c-0057-4ab9-9ca2-89852ccaef98" + ], + "x-ms-correlation-request-id": [ + "1523c734-8e19-435f-a81a-29413fc882c7" + ], + "x-ms-arm-service-request-id": [ + "7b61be81-9cfa-4d0d-b388-02e52f3445a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202121Z:1523c734-8e19-435f-a81a-29413fc882c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:20 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9daf9831-4999-4435-a4d4-78b9a67120bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" + ], + "x-ms-request-id": [ + "a73f03a1-5f03-46d8-a6c0-4762d51e4f96" + ], + "x-ms-correlation-request-id": [ + "fa25fa17-3e4e-4c68-b5df-b3f6be8041f9" + ], + "x-ms-arm-service-request-id": [ + "a6f139e2-5d02-4f4a-a147-8ccfbaba7c1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202121Z:fa25fa17-3e4e-4c68-b5df-b3f6be8041f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:21 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\"" + ], + "x-ms-request-id": [ + "8625d32e-e529-4c58-a589-c6c2b15ae233" + ], + "x-ms-correlation-request-id": [ + "695aa93e-ce67-470a-abcc-dee7696492e9" + ], + "x-ms-arm-service-request-id": [ + "8d09ceac-f695-46b1-806f-3ae8d2cf977a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202126Z:695aa93e-ce67-470a-abcc-dee7696492e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:25 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "667ca10c-6619-4a2e-bd09-10bafaf9f9ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\"" + ], + "x-ms-request-id": [ + "c3279552-f39e-4762-9045-8393757d43ab" + ], + "x-ms-correlation-request-id": [ + "9402d36e-4a74-4183-8d64-cb40ab126601" + ], + "x-ms-arm-service-request-id": [ + "bf37d85b-29f6-484c-909d-d6a2bd4b5112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202126Z:9402d36e-4a74-4183-8d64-cb40ab126601" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:25 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d9cff01-04ac-474a-9366-07852b1996e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "267" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7770b1e3-7aee-4d24-9917-0781194bb267" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7770b1e3-7aee-4d24-9917-0781194bb267?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "e87fc978-29e7-4c3b-9b56-a4a71a3e471d" + ], + "x-ms-arm-service-request-id": [ + "de1c408d-e983-453b-b881-9d81dc5a8038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202117Z:e87fc978-29e7-4c3b-9b56-a4a71a3e471d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:16 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"fd0b4609-9ec6-4ae8-acae-1ea31ba15088\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67ccd181-7a76-45f6-9ba9-83680620f3ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1070" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "d8507946-174f-4728-9a4d-4672b384732c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8507946-174f-4728-9a4d-4672b384732c?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "8cbb3ca6-c534-4b78-be72-a1645d970540" + ], + "x-ms-arm-service-request-id": [ + "68c494f0-c144-48ea-a196-5aefa0e562a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202122Z:8cbb3ca6-c534-4b78-be72-a1645d970540" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:22 GMT" + ], + "Content-Length": [ + "2155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7770b1e3-7aee-4d24-9917-0781194bb267?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc3NzBiMWUzLTdhZWUtNGQyNC05OTE3LTA3ODExOTRiYjI2Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "473285cd-2f9b-4bd6-9a5c-d73940fa5ef3" + ], + "x-ms-correlation-request-id": [ + "3c7bcab0-5c99-486b-ac14-aadf2568bf9b" + ], + "x-ms-arm-service-request-id": [ + "8b02bf36-8576-4d25-84c3-3891199ee920" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202121Z:3c7bcab0-5c99-486b-ac14-aadf2568bf9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:20 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8507946-174f-4728-9a4d-4672b384732c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q4NTA3OTQ2LTE3NGYtNDcyOC05YTRkLTQ2NzJiMzg0NzMyYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c9f1828-e1df-4414-bf75-df098c6f1108" + ], + "x-ms-correlation-request-id": [ + "6120010a-1c20-4c01-b52e-65e874083d89" + ], + "x-ms-arm-service-request-id": [ + "d63b810b-1280-478f-a785-9b99a01a3193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202125Z:6120010a-1c20-4c01-b52e-65e874083d89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:25 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f3b44e6-5f38-4fe8-9018-f882bb9b5d65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A21%3A30.054506Z'\"" + ], + "x-ms-request-id": [ + "1340c425-9d9f-41c2-a79e-2e103b7105d2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "28231983-1666-4747-8656-9c9531d3fe66" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202131Z:28231983-1666-4747-8656-9c9531d3fe66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:21:30 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\",\r\n \"name\": \"ps1905\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A21%3A30.054506Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODI4MDA0ZGYtMzc1Yi00NDI5LTgwNTYtNzQ4NWU3NjI2ODBiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08e6cd1f-5310-4eba-a7cc-2f99c1a02e26" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "c3468c6f-4960-4fb5-a27d-4d022665479d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202201Z:c3468c6f-4960-4fb5-a27d-4d022665479d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:01 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b\",\r\n \"name\": \"828004df-375b-4429-8056-7485e762680b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:21:29.795319Z\",\r\n \"endTime\": \"2020-10-22T20:21:30.1390757Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A21%3A30.135563Z'\"" + ], + "x-ms-request-id": [ + "939cfc3d-3ebb-46da-8fb3-a88320f8d5b9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "45b035c0-ad7b-42a7-9310-5b3a14211149" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202201Z:45b035c0-ad7b-42a7-9310-5b3a14211149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:01 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\",\r\n \"name\": \"ps1905\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A21%3A30.135563Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c5e5cda-9015-4559-b62b-c2937105094f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A22%3A03.7962261Z'\"" + ], + "x-ms-request-id": [ + "f7081aec-ff84-46d9-adb5-55b7847b4208" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "edb23b11-baf2-4dfe-bab0-d36ff6475a57" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202204Z:edb23b11-baf2-4dfe-bab0-d36ff6475a57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:04 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\",\r\n \"name\": \"ps1905/ps9916\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A03.7962261Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGU1NjU0NTQtYmVkNS00MDZmLWE5ZTQtNzE1ZmVhNGJlMWExP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2fac6be8-9a73-433e-96e9-7c8bc5cf3470" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "1c341adb-4053-4b27-8ed2-f68c0592494e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202235Z:1c341adb-4053-4b27-8ed2-f68c0592494e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:34 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1\",\r\n \"name\": \"0e565454-bed5-406f-a9e4-715fea4be1a1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:22:03.7274226Z\",\r\n \"endTime\": \"2020-10-22T20:22:03.9930984Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A22%3A06.5061307Z'\"" + ], + "x-ms-request-id": [ + "9ca956d7-e442-4783-81cf-66ebb50bf3d0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "47a7e74f-b333-447a-b73b-5a60d3ac7964" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202235Z:47a7e74f-b333-447a-b73b-5a60d3ac7964" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:35 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\",\r\n \"name\": \"ps1905/ps9916\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A06.5061307Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"298f20ab-6d80-4fff-cb4a-b0fa7e2d40e5\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d80be3e-2316-4938-ab80-e318988520e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A22%3A38.2574581Z'\"" + ], + "x-ms-request-id": [ + "7800f20e-ac59-4a44-abb7-d343e26af4a7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "302bbb70-4638-4511-9a36-97e687392e30" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202239Z:302bbb70-4638-4511-9a36-97e687392e30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:22:38 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\",\r\n \"name\": \"ps1905/ps6304\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A38.2574581Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZGQ5NTJhMGQtMDE5My00Zjk5LTkwZjgtZTY2ZWE5NDQ2YTZlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b2a73dc3-d95c-4969-9a3e-77a5aee22e3b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "d57da8d8-570e-4533-b000-c3b6fa17513e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202309Z:d57da8d8-570e-4533-b000-c3b6fa17513e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:23:09 GMT" + ], + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e\",\r\n \"name\": \"dd952a0d-0193-4f99-90f8-e66ea9446a6e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:22:38.1697628Z\",\r\n \"endTime\": \"2020-10-22T20:22:38.4510168Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A22%3A42.4684179Z'\"" + ], + "x-ms-request-id": [ + "9d0d2d54-c96e-46d3-8b8d-3d0950edf7cb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "d45613cc-90c5-4d9d-b34b-03562326a11f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202309Z:d45613cc-90c5-4d9d-b34b-03562326a11f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:23:09 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\",\r\n \"name\": \"ps1905/ps6304\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A42.4684179Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"0e529e8a-e598-7031-f9bd-71d751744b07\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4af84715-dec4-4f4e-9cd6-570d143ed3ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "784" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A23%3A11.8510732Z'\"" + ], + "x-ms-request-id": [ + "ead93f52-e6f0-4087-947e-41affe344346" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "804fedf0-7147-4a87-ab15-cfa5ba1a8bb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202312Z:804fedf0-7147-4a87-ab15-cfa5ba1a8bb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:23:12 GMT" + ], + "Content-Length": [ + "1059" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A23%3A11.8510732Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1461862a-f68b-4f87-8bc8-2cf36ef52707" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "21c66fd9-5121-44d1-aea1-1279a6599f4d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202343Z:21c66fd9-5121-44d1-aea1-1279a6599f4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:23:42 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1516004-bff9-4010-aa45-f6267dcde56e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "40b721e8-311b-4d64-8db0-9fea0d4709ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202413Z:40b721e8-311b-4d64-8db0-9fea0d4709ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:24:13 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "26108a30-34d7-4ce2-9e30-9f5dec654034" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "78fd3fb3-018e-4508-ad95-962c239c717f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202443Z:78fd3fb3-018e-4508-ad95-962c239c717f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:24:43 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1db7ebb0-239c-4d75-bab1-8db5dc3582f4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "d95ef3af-e95d-4ff3-b52c-29f357a0e159" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202514Z:d95ef3af-e95d-4ff3-b52c-29f357a0e159" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:25:13 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "10c8cd4f-f29f-4feb-b8ee-16f2c64c2d18" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "b511318f-be16-4a83-9219-686bce082fe8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202544Z:b511318f-be16-4a83-9219-686bce082fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:25:43 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "984914de-4193-47d2-973c-6e4ad668757a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "a4cba919-16b2-4b7d-9dfe-4aef20b4c155" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202614Z:a4cba919-16b2-4b7d-9dfe-4aef20b4c155" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:26:14 GMT" + ], + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa4a31f5-2322-4687-af06-c174db4a4051" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "a19c8d72-1258-48d9-a81b-a6cf571079ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202644Z:a19c8d72-1258-48d9-a81b-a6cf571079ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:26:44 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"2020-10-22T20:26:23.523014Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\"" + ], + "x-ms-request-id": [ + "025baa89-0613-4eb1-8ed6-eae8b9c3d20f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "88835264-f230-433b-bf6a-6cc6e32a94ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202644Z:88835264-f230-433b-bf6a-6cc6e32a94ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:26:44 GMT" + ], + "Content-Length": [ + "1535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc31ec2c-e5c3-4152-9542-866ab85f3ddc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\"" + ], + "x-ms-request-id": [ + "b179fe44-1223-4d6f-b3a1-fd1e02f33895" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "c72147d1-3938-4d11-9635-7b4ef9b694b8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202645Z:c72147d1-3938-4d11-9635-7b4ef9b694b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:26:44 GMT" + ], + "Content-Length": [ + "1535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111/poolChange?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTEvcG9vbENoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"newPoolResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7837f6e6-24e0-4b4d-bcda-bc0d1cbdbf32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "174" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f6fe1b37-fe78-4d81-b002-33615f53f744" + ], + "x-ms-correlation-request-id": [ + "f6fe1b37-fe78-4d81-b002-33615f53f744" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202646Z:f6fe1b37-fe78-4d81-b002-33615f53f744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:26:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "831f86ae-4d4e-4bd6-bd89-5229ad1bd681" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "7df4ed11-90c4-494c-a87a-7b19c8da9da2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202716Z:7df4ed11-90c4-494c-a87a-7b19c8da9da2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:27:15 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"name\": \"1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"status\": \"ChangePool\",\r\n \"startTime\": \"2020-10-22T20:26:45.8365791Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "040e5947-683e-4376-9725-4b6347f4e6d8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "b4b9af5d-0a3d-47b4-9e00-055138e8ccd3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202747Z:b4b9af5d-0a3d-47b4-9e00-055138e8ccd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:27:46 GMT" + ], + "Content-Length": [ + "531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"name\": \"1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:26:45.8365791Z\",\r\n \"endTime\": \"2020-10-22T20:27:30.6909561Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04ee3014-8fb7-4289-977d-40d4bfac1902" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "a797143a-aa71-4e7c-aba8-e1a96dc7963c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202747Z:a797143a-aa71-4e7c-aba8-e1a96dc7963c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:27:46 GMT" + ], + "Content-Length": [ + "1892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"name\": \"ps1905/ps6304/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A46.069318Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"poolId\": \"0e529e8a-e598-7031-f9bd-71d751744b07\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bd4648b-d46f-4b71-b632-74fb74393bb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-22T20%3A27%3A30.6850321Z'\"" + ], + "x-ms-request-id": [ + "d013b18d-7e21-43bc-9309-8de33d72f58d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "3b875748-03a1-471e-8332-3929e4115abc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202747Z:3b875748-03a1-471e-8332-3929e4115abc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:27:46 GMT" + ], + "Content-Length": [ + "1507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"name\": \"ps1905/ps6304/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A27%3A30.6850321Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6921?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "812033c1-ab4c-4a14-b42c-bf04e414dcba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" + ], + "x-ms-correlation-request-id": [ + "aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202751Z:aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:27:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b4895f1d-6e6c-457c-8296-60de8eb30a8f" + ], + "x-ms-correlation-request-id": [ + "b4895f1d-6e6c-457c-8296-60de8eb30a8f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202806Z:b4895f1d-6e6c-457c-8296-60de8eb30a8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:28:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "289080c7-2d82-4aae-bcef-009ae4483abe" + ], + "x-ms-correlation-request-id": [ + "289080c7-2d82-4aae-bcef-009ae4483abe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202822Z:289080c7-2d82-4aae-bcef-009ae4483abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:28:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" + ], + "x-ms-correlation-request-id": [ + "477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202837Z:477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:28:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "752486e6-a32b-4a32-9d91-6c268a7bac15" + ], + "x-ms-correlation-request-id": [ + "752486e6-a32b-4a32-9d91-6c268a7bac15" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202852Z:752486e6-a32b-4a32-9d91-6c268a7bac15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:28:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" + ], + "x-ms-correlation-request-id": [ + "89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202908Z:89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:29:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "f5b39b1f-e0ac-4738-b258-a48a4f2f185c" + ], + "x-ms-correlation-request-id": [ + "f5b39b1f-e0ac-4738-b258-a48a4f2f185c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202923Z:f5b39b1f-e0ac-4738-b258-a48a4f2f185c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:29:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" + ], + "x-ms-correlation-request-id": [ + "b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202938Z:b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:29:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "3199f69b-1722-4ec2-b5ce-b2617e1e5e32" + ], + "x-ms-correlation-request-id": [ + "3199f69b-1722-4ec2-b5ce-b2617e1e5e32" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T202954Z:3199f69b-1722-4ec2-b5ce-b2617e1e5e32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:29:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "29700e21-9bd0-4b56-a48a-e4f772e3d78b" + ], + "x-ms-correlation-request-id": [ + "29700e21-9bd0-4b56-a48a-e4f772e3d78b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203009Z:29700e21-9bd0-4b56-a48a-e4f772e3d78b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:30:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" + ], + "x-ms-correlation-request-id": [ + "c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203025Z:c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:30:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "672eee87-3cfc-49ce-b611-c466eaa80d11" + ], + "x-ms-correlation-request-id": [ + "672eee87-3cfc-49ce-b611-c466eaa80d11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203040Z:672eee87-3cfc-49ce-b611-c466eaa80d11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:30:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" + ], + "x-ms-correlation-request-id": [ + "19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203055Z:19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:30:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "53c1b667-f557-484c-89fa-bf5d4f9fcbd2" + ], + "x-ms-correlation-request-id": [ + "53c1b667-f557-484c-89fa-bf5d4f9fcbd2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203111Z:53c1b667-f557-484c-89fa-bf5d4f9fcbd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:31:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "7793a4b0-5b3d-4680-9390-eb66b02b6eae" + ], + "x-ms-correlation-request-id": [ + "7793a4b0-5b3d-4680-9390-eb66b02b6eae" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203126Z:7793a4b0-5b3d-4680-9390-eb66b02b6eae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:31:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "12a5531e-c8ca-43df-9e32-ff1b63e58146" + ], + "x-ms-correlation-request-id": [ + "12a5531e-c8ca-43df-9e32-ff1b63e58146" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203142Z:12a5531e-c8ca-43df-9e32-ff1b63e58146" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:31:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" + ], + "x-ms-correlation-request-id": [ + "6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203157Z:6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:31:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "ddfd76fb-2f3b-4319-9989-6004ccabb643" + ], + "x-ms-correlation-request-id": [ + "ddfd76fb-2f3b-4319-9989-6004ccabb643" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203213Z:ddfd76fb-2f3b-4319-9989-6004ccabb643" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:32:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "59fdd61e-27d0-4503-8afc-3875407433f7" + ], + "x-ms-correlation-request-id": [ + "59fdd61e-27d0-4503-8afc-3875407433f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203228Z:59fdd61e-27d0-4503-8afc-3875407433f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:32:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "2a2143c6-0dd3-454d-8c56-8c295b6d1f28" + ], + "x-ms-correlation-request-id": [ + "2a2143c6-0dd3-454d-8c56-8c295b6d1f28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203243Z:2a2143c6-0dd3-454d-8c56-8c295b6d1f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:32:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "341ff25a-a19e-49f4-bdce-76a08f921094" + ], + "x-ms-correlation-request-id": [ + "341ff25a-a19e-49f4-bdce-76a08f921094" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203259Z:341ff25a-a19e-49f4-bdce-76a08f921094" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:32:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "8a2a80a5-3421-4938-9d25-a3011fb8b458" + ], + "x-ms-correlation-request-id": [ + "8a2a80a5-3421-4938-9d25-a3011fb8b458" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203314Z:8a2a80a5-3421-4938-9d25-a3011fb8b458" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:33:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "48ba653b-c1a2-441c-bbcb-903483878d04" + ], + "x-ms-correlation-request-id": [ + "48ba653b-c1a2-441c-bbcb-903483878d04" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203329Z:48ba653b-c1a2-441c-bbcb-903483878d04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:33:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "db903c65-42c9-4325-8005-2faf531a2d9b" + ], + "x-ms-correlation-request-id": [ + "db903c65-42c9-4325-8005-2faf531a2d9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203345Z:db903c65-42c9-4325-8005-2faf531a2d9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:33:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "d3172cb7-590c-4194-8e34-daa7c5046b79" + ], + "x-ms-correlation-request-id": [ + "d3172cb7-590c-4194-8e34-daa7c5046b79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203400Z:d3172cb7-590c-4194-8e34-daa7c5046b79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:33:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" + ], + "x-ms-correlation-request-id": [ + "e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203415Z:e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:34:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" + ], + "x-ms-correlation-request-id": [ + "9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203431Z:9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:34:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "e40a5870-a6a1-425e-8277-d4e3532ef5a7" + ], + "x-ms-correlation-request-id": [ + "e40a5870-a6a1-425e-8277-d4e3532ef5a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201022T203431Z:e40a5870-a6a1-425e-8277-d4e3532ef5a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 20:34:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VolumePoolChange": [ + "ps6921", + "ps1905", + "ps9916", + "ps6304", + "ps8111" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json new file mode 100644 index 000000000000..e39c1c524eee --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json @@ -0,0 +1,15355 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4997?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc8b468e-5ffe-4fba-b74f-00f1d090c807" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "d1632045-c26c-49b5-a3ca-25a0008582fb" + ], + "x-ms-correlation-request-id": [ + "d1632045-c26c-49b5-a3ca-25a0008582fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194325Z:d1632045-c26c-49b5-a3ca-25a0008582fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:24 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997\",\r\n \"name\": \"ps4997\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2981?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d1f1c41-8f32-4c6f-8a9e-55dd8f2bdd0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "efba968e-3f87-488f-9376-bfbbc30b0525" + ], + "x-ms-correlation-request-id": [ + "efba968e-3f87-488f-9376-bfbbc30b0525" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194327Z:efba968e-3f87-488f-9376-bfbbc30b0525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:26 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981\",\r\n \"name\": \"ps2981\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1e4bb6a-9042-4908-9aac-304bb3cc6b29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2f0c0e81-ae22-4d31-9040-aef741d3be55" + ], + "x-ms-correlation-request-id": [ + "2f0c0e81-ae22-4d31-9040-aef741d3be55" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194327Z:2f0c0e81-ae22-4d31-9040-aef741d3be55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4997-vnet' under resource group 'ps4997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + ], + "x-ms-request-id": [ + "c3959b40-2d9e-4a3d-a627-c36fa93a9e62" + ], + "x-ms-correlation-request-id": [ + "5b032242-9996-451d-a329-48a8f723da2f" + ], + "x-ms-arm-service-request-id": [ + "308994d3-22e5-44d6-b041-335b2e06bd0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194336Z:5b032242-9996-451d-a329-48a8f723da2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:35 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dde27cfe-e48a-41d3-bba5-a3ff885b70ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + ], + "x-ms-request-id": [ + "7f57f299-235f-4152-8f18-57664f0bb7ff" + ], + "x-ms-correlation-request-id": [ + "6827286e-59ee-4134-8c2c-cdc93a563a2e" + ], + "x-ms-arm-service-request-id": [ + "76994338-6150-49f5-af77-9bd50d1e8d52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194336Z:6827286e-59ee-4134-8c2c-cdc93a563a2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:36 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63a4f390-6b61-40ed-80a7-de97bd518885" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + ], + "x-ms-request-id": [ + "0ab02d46-b987-4287-8e79-445aa1fbace6" + ], + "x-ms-correlation-request-id": [ + "b5594d89-3ca9-4694-8a54-397eca19b958" + ], + "x-ms-arm-service-request-id": [ + "6510ac02-f788-459f-be20-b42f94915585" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194336Z:b5594d89-3ca9-4694-8a54-397eca19b958" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:36 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\"" + ], + "x-ms-request-id": [ + "97be10a4-7f09-4cce-a540-e8294c2100e2" + ], + "x-ms-correlation-request-id": [ + "919c6f73-df9d-4e3c-9ba9-2f672eff743e" + ], + "x-ms-arm-service-request-id": [ + "b4f6f150-e749-4500-b00e-2e771ba8206c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194341Z:919c6f73-df9d-4e3c-9ba9-2f672eff743e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:41 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c28c7a30-c392-45b8-8e52-ab879dfea54f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\"" + ], + "x-ms-request-id": [ + "4d9e24e1-bc9a-40b6-b800-dbe660ba6218" + ], + "x-ms-correlation-request-id": [ + "8116411e-77b1-447d-a954-1e9a661aae80" + ], + "x-ms-arm-service-request-id": [ + "b1f135af-96ef-4c4f-bd4c-179eadd5e747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194341Z:8116411e-77b1-447d-a954-1e9a661aae80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:41 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6077673-89a4-468d-aa9f-3124ce5168e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "261" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c64ae125-a30d-454b-bfe7-7b23536bdf18" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/c64ae125-a30d-454b-bfe7-7b23536bdf18?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "ec3df87c-8584-4247-878c-634575ab1fb3" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4e81b701-fc87-425b-9cb6-2e06512ef1c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194332Z:ec3df87c-8584-4247-878c-634575ab1fb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:32 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"f82e1a5a-e7d5-493c-ad68-514cd259dd97\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0bdcac0-0712-488a-af08-2ce67ba95411" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1064" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "bb05979f-5bcf-45f0-b31f-f4e1d0e02e65" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/bb05979f-5bcf-45f0-b31f-f4e1d0e02e65?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "6d34c943-b9bb-4796-aaed-3ef9b0dbfd03" + ], + "x-ms-arm-service-request-id": [ + "eb5bde9a-a2dd-4b3c-92f9-9e4407b87708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194338Z:6d34c943-b9bb-4796-aaed-3ef9b0dbfd03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:37 GMT" + ], + "Content-Length": [ + "2149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/c64ae125-a30d-454b-bfe7-7b23536bdf18?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M2NGFlMTI1LWEzMGQtNDU0Yi1iZmU3LTdiMjM1MzZiZGYxOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aeae3e12-5a77-4bc2-811d-59908bc608fb" + ], + "x-ms-correlation-request-id": [ + "15b96736-6393-4bce-aeef-fd70adb25f48" + ], + "x-ms-arm-service-request-id": [ + "b7c97d8f-793c-46e7-bdaa-c88d3a914758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194336Z:15b96736-6393-4bce-aeef-fd70adb25f48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:35 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/bb05979f-5bcf-45f0-b31f-f4e1d0e02e65?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2JiMDU5NzlmLTViY2YtNDVmMC1iMzFmLWY0ZTFkMGUwMmU2NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0355681e-6ce5-4705-8e92-aa700c3d4a3e" + ], + "x-ms-correlation-request-id": [ + "60b25a76-d9ae-4469-8b9f-1e1c558c414c" + ], + "x-ms-arm-service-request-id": [ + "6d50ae6c-4cad-495e-98df-afa8ceacbda2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194341Z:60b25a76-d9ae-4469-8b9f-1e1c558c414c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:40 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1dcfe08-0f5d-49b7-9c50-cada11c36282" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4c388e0f-feca-4c8c-beaf-202063736f9c" + ], + "x-ms-correlation-request-id": [ + "4c388e0f-feca-4c8c-beaf-202063736f9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194342Z:4c388e0f-feca-4c8c-beaf-202063736f9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps2981-vnet' under resource group 'ps2981' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + ], + "x-ms-request-id": [ + "4dbc300a-5f4d-426b-b5af-582383c4436d" + ], + "x-ms-correlation-request-id": [ + "def0d05f-15fa-4d90-9e98-647eea6b5600" + ], + "x-ms-arm-service-request-id": [ + "1145886e-4003-4afb-ac6f-fd00c588ec6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194350Z:def0d05f-15fa-4d90-9e98-647eea6b5600" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:50 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68c53860-cd9f-49ae-88fa-f6258eac0bf5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + ], + "x-ms-request-id": [ + "79c56252-97a9-40e5-9ee3-5fc83a318db6" + ], + "x-ms-correlation-request-id": [ + "41d50934-e88b-47cc-81c3-64b2c36b5e90" + ], + "x-ms-arm-service-request-id": [ + "344fc797-8fee-479d-a871-a945774a2777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194351Z:41d50934-e88b-47cc-81c3-64b2c36b5e90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:50 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6369739e-0d2f-42e2-bd52-d86a9d5f39c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + ], + "x-ms-request-id": [ + "ece01216-005e-4169-8714-f7b8b866d25e" + ], + "x-ms-correlation-request-id": [ + "76123edb-1ee5-43d5-a520-253cdffeaa8d" + ], + "x-ms-arm-service-request-id": [ + "eab3dc63-7d6b-4eb3-8b83-2bede753c494" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194351Z:76123edb-1ee5-43d5-a520-253cdffeaa8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:50 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\"" + ], + "x-ms-request-id": [ + "39ebc2d8-8f3f-4941-a96f-ebc1e41699d7" + ], + "x-ms-correlation-request-id": [ + "4dd91a60-a697-4579-aeb3-10e921e4f73d" + ], + "x-ms-arm-service-request-id": [ + "843e0cea-92c9-4116-8eb9-11b9d48e60a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194355Z:4dd91a60-a697-4579-aeb3-10e921e4f73d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:54 GMT" + ], + "Content-Length": [ + "2150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76fe7ca7-6795-47f7-ac44-9715c85dc1cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\"" + ], + "x-ms-request-id": [ + "8a1c3fc5-78d7-4542-979f-fd7fdcc7cf36" + ], + "x-ms-correlation-request-id": [ + "ae692423-7882-47cb-b7d3-8a63edc92089" + ], + "x-ms-arm-service-request-id": [ + "2752c5aa-3a32-4018-ac2f-b88252427305" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194355Z:ae692423-7882-47cb-b7d3-8a63edc92089" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:54 GMT" + ], + "Content-Length": [ + "2150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae65abe6-9a02-4801-9b29-bda0073ead13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "260" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a59a3372-202e-40b1-a5d1-f84cbe07818e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a59a3372-202e-40b1-a5d1-f84cbe07818e?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "4731cc9b-a9e6-4471-9a7a-825ad12bbaac" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "b4b13ee7-b44f-4085-a6c8-9b66920764e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194347Z:4731cc9b-a9e6-4471-9a7a-825ad12bbaac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:46 GMT" + ], + "Content-Length": [ + "640" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"64e43dc1-42a3-4a52-b1f1-795b92533030\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f223aa8-7a8a-4004-87c8-f6a8a7849896" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1063" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7c947a8f-4834-4b87-85bf-226fe9bda48b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/7c947a8f-4834-4b87-85bf-226fe9bda48b?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "0a84ec18-0d44-4600-b418-ef40d3f201d5" + ], + "x-ms-arm-service-request-id": [ + "8c68e948-1bee-4732-b55b-b4ee8d00d86c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194351Z:0a84ec18-0d44-4600-b418-ef40d3f201d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:51 GMT" + ], + "Content-Length": [ + "2148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a59a3372-202e-40b1-a5d1-f84cbe07818e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTU5YTMzNzItMjAyZS00MGIxLWE1ZDEtZjg0Y2JlMDc4MThlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06845401-7cf5-48d5-9900-0ba4d945f0fa" + ], + "x-ms-correlation-request-id": [ + "e3fef42f-e658-402d-9793-32beca6fb369" + ], + "x-ms-arm-service-request-id": [ + "f829d2a1-e833-4ff6-975a-e66d82110909" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194350Z:e3fef42f-e658-402d-9793-32beca6fb369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:50 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/7c947a8f-4834-4b87-85bf-226fe9bda48b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2M5NDdhOGYtNDgzNC00Yjg3LTg1YmYtMjI2ZmU5YmRhNDhiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17fdb4b4-e76f-409b-8353-0898c6c253e6" + ], + "x-ms-correlation-request-id": [ + "f2bf0d0b-a9bf-455d-b066-720bf256c6f1" + ], + "x-ms-arm-service-request-id": [ + "8adb0256-1b0a-4946-b2d9-6d3f5354f6d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194355Z:f2bf0d0b-a9bf-455d-b066-720bf256c6f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:43:54 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f22ff59-f923-45cc-95af-440c974b6583" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A44%3A02.0328208Z'\"" + ], + "x-ms-request-id": [ + "542d41b3-6839-45e1-9ac2-596eafd80f4a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "669c1235-889e-4bf8-9b7f-44a6166c9d91" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194403Z:669c1235-889e-4bf8-9b7f-44a6166c9d91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:44:03 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\",\r\n \"name\": \"ps5547\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A02.0328208Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmU5YWZjYmMtYjMwMC00YTE4LThjMzktMDBhYjJiZDkxOTIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e40c0a2d-ad5c-463b-ad53-4c50a16f6eb0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1488ac90-4552-4ae8-87fe-15def28995fa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194433Z:1488ac90-4552-4ae8-87fe-15def28995fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:44:33 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923\",\r\n \"name\": \"2e9afcbc-b300-4a18-8c39-00ab2bd91923\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:44:01.9264303Z\",\r\n \"endTime\": \"2020-10-23T19:44:02.116852Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A44%3A02.1118753Z'\"" + ], + "x-ms-request-id": [ + "46f4dd60-da96-47d4-9897-ec46addbd637" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7191d173-90cc-4dcc-b5cd-fc7c93b53db1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194434Z:7191d173-90cc-4dcc-b5cd-fc7c93b53db1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:44:33 GMT" + ], + "Content-Length": [ + "314" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\",\r\n \"name\": \"ps5547\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A02.1118753Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "166d386c-2843-4d14-b0af-b340865893b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A44%3A38.9640141Z'\"" + ], + "x-ms-request-id": [ + "9ec1b3b8-ccdc-4ecc-8d68-dcc061c13c01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "68935918-3853-4c0b-91a8-6ccee27d10a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194440Z:68935918-3853-4c0b-91a8-6ccee27d10a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:44:39 GMT" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\",\r\n \"name\": \"ps7560\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A38.9640141Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yMzYwYzBlMC1mNjNkLTQ5ZGItOGQ2Yy0zMGVlZjlkNzIyOGM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bff4c096-9bbc-45a0-bf2b-9dea7a14fdd2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "efd5b689-0204-4226-aee6-15ec0047376d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194510Z:efd5b689-0204-4226-aee6-15ec0047376d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:10 GMT" + ], + "Content-Length": [ + "488" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c\",\r\n \"name\": \"2360c0e0-f63d-49db-8d6c-30eef9d7228c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:44:38.9036642Z\",\r\n \"endTime\": \"2020-10-23T19:44:39.0286555Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A44%3A39.0330632Z'\"" + ], + "x-ms-request-id": [ + "cbe7dec7-e932-4314-8eb8-26be05591a5e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2c436818-6c73-497f-b3a5-5561c71c27ce" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194510Z:2c436818-6c73-497f-b3a5-5561c71c27ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:10 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\",\r\n \"name\": \"ps7560\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A39.0330632Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7f14625-ece6-4f37-957e-b2e0cc5be798" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A45%3A14.9077574Z'\"" + ], + "x-ms-request-id": [ + "aad38a41-fe80-4912-905c-4dc13eeebd01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "da5adab7-8fce-44c8-86bb-077ce4839086" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194516Z:da5adab7-8fce-44c8-86bb-077ce4839086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:15 GMT" + ], + "Content-Length": [ + "458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\",\r\n \"name\": \"ps5547/ps2914\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A14.9077574Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDExZjFkZGMtNmYwMi00MzU3LTkzYjUtZGE4OWU2NWRlYTc1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b3e669af-7010-46af-b831-54849333a3cc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5d89189d-de35-4127-b9b5-a7895a4c4227" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194546Z:5d89189d-de35-4127-b9b5-a7895a4c4227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:45 GMT" + ], + "Content-Length": [ + "510" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75\",\r\n \"name\": \"011f1ddc-6f02-4357-93b5-da89e65dea75\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:45:14.8532949Z\",\r\n \"endTime\": \"2020-10-23T19:45:15.1504778Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A45%3A15.1479223Z'\"" + ], + "x-ms-request-id": [ + "9ca5adc3-287c-4087-bdf7-5e069361d579" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "fe9e2ae5-405e-49fe-ba6e-af44518bd1af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194546Z:fe9e2ae5-405e-49fe-ba6e-af44518bd1af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:46 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\",\r\n \"name\": \"ps5547/ps2914\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A15.1479223Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"aacde4f6-2cb1-42aa-c50c-e6ede6dafa5a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22521cc9-1d3c-452c-8206-64926adbf3f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A45%3A49.9327139Z'\"" + ], + "x-ms-request-id": [ + "71b32d7c-9364-4801-8f17-8eb4819e3b02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b03c8e99-90fd-4089-8e67-0cf90917df1d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194551Z:b03c8e99-90fd-4089-8e67-0cf90917df1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:45:50 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\",\r\n \"name\": \"ps7560/ps3683\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A49.9327139Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9mNzE0Mzg3YS1lM2M5LTRjZDgtYjVhNC00NzM4NWFhY2NiOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af5e020b-763b-435d-859c-789b3b0f1c2c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "e2999549-f3f3-485a-945b-403e51cafb1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194621Z:e2999549-f3f3-485a-945b-403e51cafb1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:46:20 GMT" + ], + "Content-Length": [ + "509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96\",\r\n \"name\": \"f714387a-e3c9-4cd8-b5a4-47385aaccb96\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:45:49.8901122Z\",\r\n \"endTime\": \"2020-10-23T19:45:50.1870637Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A45%3A50.1918978Z'\"" + ], + "x-ms-request-id": [ + "f948f966-2612-4679-b56e-a00cd5da818f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "8c474eeb-989f-47c5-b128-2f2622e79f28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194621Z:8c474eeb-989f-47c5-b128-2f2622e79f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:46:21 GMT" + ], + "Content-Length": [ + "527" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\",\r\n \"name\": \"ps7560/ps3683\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A50.1918978Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00fd2395-3811-4768-893a-061aea61d6fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "391" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A46%3A25.3652557Z'\"" + ], + "x-ms-request-id": [ + "7a6aaee0-a747-450e-ad87-eae61667d9d4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "142e4f45-adfc-4693-a176-2b90cb51021a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194626Z:142e4f45-adfc-4693-a176-2b90cb51021a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:46:25 GMT" + ], + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A46%3A25.3652557Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2aae31a0-09ee-4afd-9210-3229af80bc36" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "22e973ed-76d5-4cfa-9549-5993622bcf38" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194656Z:22e973ed-76d5-4cfa-9549-5993622bcf38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:46:55 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "afeaed35-3011-483c-83bc-50af0002a458" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2f19dd86-9e81-48d6-b44f-1361fe0ce31a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194726Z:2f19dd86-9e81-48d6-b44f-1361fe0ce31a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:47:26 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ae0428e-323a-4eb7-9f8e-a4b40ac17955" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "875c19bd-f362-49aa-b63d-1c4fdafef87d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194757Z:875c19bd-f362-49aa-b63d-1c4fdafef87d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:47:56 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8292b3f-6228-4dd6-bac9-c9078422c624" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "e6846b86-b6c2-4002-b6e3-98ccefa8c019" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194827Z:e6846b86-b6c2-4002-b6e3-98ccefa8c019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:48:26 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e8e4d15b-61ef-4119-9406-aeade491a5c4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "c28ab928-e97d-4587-939a-ac420066a477" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194857Z:c28ab928-e97d-4587-939a-ac420066a477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:48:57 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df0787bc-cd34-4cbb-a4e4-8ad23aab33d3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "8eeb4d90-c3c1-48a0-b5b7-30720918cfc4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194927Z:8eeb4d90-c3c1-48a0-b5b7-30720918cfc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:49:27 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca953f7d-7b94-403a-9f89-191157adba95" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "846f95c5-b2b6-4525-b008-783e515cfd10" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194958Z:846f95c5-b2b6-4525-b008-783e515cfd10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:49:57 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"2020-10-23T19:49:38.7824944Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + ], + "x-ms-request-id": [ + "22d43afd-7f7d-4ab6-84cf-93d7bfd1fd3b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "442ea5ca-076a-4741-9840-7d64cd4c35dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194959Z:442ea5ca-076a-4741-9840-7d64cd4c35dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:49:58 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd52cc7f-2de1-4a19-b2ec-4fb183401373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + ], + "x-ms-request-id": [ + "0283c625-d1b2-4ce3-b1ac-f4f28545b5b0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "b95ae56d-f279-4def-85fc-5eed042839b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T194959Z:b95ae56d-f279-4def-85fc-5eed042839b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:49:59 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4aaa5be4-691a-4bef-b038-71914a5aab4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + ], + "x-ms-request-id": [ + "d596c81a-695a-46c4-9615-405a7d8d3236" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "9c05fd1c-91aa-4f25-8b63-253a5366065a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195408Z:9c05fd1c-91aa-4f25-8b63-253a5366065a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:07 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7d265c7-85d3-4bb5-b867-279c37be73e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\"" + ], + "x-ms-request-id": [ + "066d0808-2cc6-402d-bb46-b27173160120" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "4471bd3d-0026-43ee-ae82-31a47910cc16" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195513Z:4471bd3d-0026-43ee-ae82-31a47910cc16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:13 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05193a22-a345-467f-b5ba-35eb0a2d9994" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\"" + ], + "x-ms-request-id": [ + "809da387-34e3-46de-ac6d-55ccaaa9d254" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-correlation-request-id": [ + "cebfd4ea-778f-476e-8f1a-48d1c10c33a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195808Z:cebfd4ea-778f-476e-8f1a-48d1c10c33a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:08 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endpointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d9ff2f1-8861-4ecd-955f-0be57c3b3ffa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "768" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A50%3A03.1806294Z'\"" + ], + "x-ms-request-id": [ + "a198bf7f-5a43-421f-a878-273273d5dc07" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "47c0c279-0d8f-4a89-901c-d1df26483b92" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195004Z:47c0c279-0d8f-4a89-901c-d1df26483b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:50:03 GMT" + ], + "Content-Length": [ + "988" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A50%3A03.1806294Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9ef4b5c8-c7ba-4287-b509-503bc8204b0e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "2759ff32-18a7-4b35-871e-f63b1e86e4ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195034Z:2759ff32-18a7-4b35-871e-f63b1e86e4ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:50:33 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7584391e-6f29-472c-8cf9-b9366e055c6b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "696ee1b2-68ef-4497-a448-373919980071" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195104Z:696ee1b2-68ef-4497-a448-373919980071" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:51:04 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c362ed40-5598-45c7-89c6-37b0d31ff786" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "1804feae-ae2d-4f0d-b9df-930005b28fe0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195135Z:1804feae-ae2d-4f0d-b9df-930005b28fe0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:51:34 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3acee7d-4b74-4581-88e1-4a19aad03fd4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "594d8367-e00d-48b6-a7a2-9c26f085705a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195205Z:594d8367-e00d-48b6-a7a2-9c26f085705a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:52:04 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f405d6b-5996-4ad8-ba27-05562030260c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "66a99591-e83a-4585-9435-83398879d6ef" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195235Z:66a99591-e83a-4585-9435-83398879d6ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:52:34 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6fb553d2-eae4-40b8-9552-091c27c8608f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "93f0665a-5098-4990-88c5-c94d47dd9ec2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195305Z:93f0665a-5098-4990-88c5-c94d47dd9ec2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:53:05 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "106fe4ec-5d3a-4a60-9731-c3f1c47b8fee" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "77239b45-9155-4e93-b8c9-3c8aaecae5a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195335Z:77239b45-9155-4e93-b8c9-3c8aaecae5a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:53:35 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73f9d9fb-c910-4871-8dcc-05756de21a1a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "b0fc03b5-aadd-4b96-9edb-864d03f90b86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195406Z:b0fc03b5-aadd-4b96-9edb-864d03f90b86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:05 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"2020-10-23T19:53:56.870084Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + ], + "x-ms-request-id": [ + "7e958859-88e2-4d7e-93d1-e4e866a89bc7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "e77b385c-5a36-4614-ad28-d5c74b271a0e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195406Z:e77b385c-5a36-4614-ad28-d5c74b271a0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:06 GMT" + ], + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5861019e-3fbd-4d9f-8c41-cdca8ff9f3ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + ], + "x-ms-request-id": [ + "a9a32c56-2ecd-45ae-8324-34cbd3993059" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "eeda8b2f-c8fb-428c-87f3-224a299e99e0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195406Z:eeda8b2f-c8fb-428c-87f3-224a299e99e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:06 GMT" + ], + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2649477-eca5-4091-a21e-4213e2aaf48c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + ], + "x-ms-request-id": [ + "b6188f39-4292-42cc-8b5b-f4fc357757b5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "0151450a-74fe-488b-8c32-bc5e5d125570" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195408Z:0151450a-74fe-488b-8c32-bc5e5d125570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:08 GMT" + ], + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a50272a5-e6e8-4998-99b3-8fce72482aec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A55%3A01.5580064Z'\"" + ], + "x-ms-request-id": [ + "d45ae554-4089-49f7-83ac-55a9ef757ac5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "51a77a53-3c27-4965-a572-eef5123424e9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195513Z:51a77a53-3c27-4965-a572-eef5123424e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:13 GMT" + ], + "Content-Length": [ + "1861" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A01.5580064Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1eac8620-893b-45ef-bb24-f77beea30ab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T19%3A57%3A12.679654Z'\"" + ], + "x-ms-request-id": [ + "9b6e26f0-a0c2-4752-a2a7-b1d8e0fda1fa" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-correlation-request-id": [ + "90ead0a4-67db-4176-a72e-cb550bde5c80" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195808Z:90ead0a4-67db-4176-a72e-cb550bde5c80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:08 GMT" + ], + "Content-Length": [ + "1846" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A57%3A12.679654Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085/authorizeReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODUvYXV0aG9yaXplUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7876f482-bfe6-4565-bd52-f2c17c4983e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "194" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + ], + "x-ms-correlation-request-id": [ + "a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195442Z:a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:54:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY0NTAwYTgtMmQ4Ny00YWU4LWE4ODYtZGU1NTQ2MWNkYTk1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f57dc02d-2d3b-4962-8cce-3223ca6fbe1c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "41b527fe-8071-4a62-a06f-69bbf0c047cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195512Z:41b527fe-8071-4a62-a06f-69bbf0c047cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:12 GMT" + ], + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95\",\r\n \"name\": \"0f4500a8-2d87-4ae8-a886-de55461cda95\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:54:41.8746563Z\",\r\n \"endTime\": \"2020-10-23T19:55:03.7678635Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY0NTAwYTgtMmQ4Ny00YWU4LWE4ODYtZGU1NTQ2MWNkYTk1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b43fff3-ffca-43ac-afd1-4070480a6908" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "b0d16ee7-d2c5-4b47-950a-672c43764a97" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195512Z:b0d16ee7-d2c5-4b47-950a-672c43764a97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:12 GMT" + ], + "Content-Length": [ + "2259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A54%3A42.0208094Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"replicationStatus\": \"\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"poolId\": \"aacde4f6-2cb1-42aa-c50c-e6ede6dafa5a\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce4b950a-5ed4-4fee-b031-c036d81168c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "741eca79-3aae-457b-bd04-2e942aa6dda3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "0eb50e0c-d40d-45e4-9e00-7c5aab671dbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195515Z:0eb50e0c-d40d-45e4-9e00-7c5aab671dbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:15 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "575af77d-4547-4bb4-ba47-5e7a096b982f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0063f12-1d55-4bae-94ef-eb4f6aac6dad" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "ae71da60-aeae-4678-83cc-e1a69512d373" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195516Z:ae71da60-aeae-4678-83cc-e1a69512d373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02d0535b-9b6b-433e-81cd-29e24248c33b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e39bdf57-6b08-480e-8d4b-700dd9349d5f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "535440f9-103b-4d13-9ad9-a0f576db31b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195518Z:535440f9-103b-4d13-9ad9-a0f576db31b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:17 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d495c1c-0bea-42e5-9324-e8312818acea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e63c637-40e6-4948-9bf7-298b05b2157f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "e3195f03-5c4d-481b-bf56-fb3ed8eed88b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195519Z:e3195f03-5c4d-481b-bf56-fb3ed8eed88b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b389aef-b0ae-4bd2-a074-694d346cb8c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d3585cc-94ed-4e5e-b2ca-2c956381598b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "a891836f-b241-4451-8977-a55275be156a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195520Z:a891836f-b241-4451-8977-a55275be156a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:20 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6237167-65fa-46ef-bea5-13a4166e3948" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44e38dd9-71fb-48a7-af01-fca8aec31afb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "1d7c9042-7b0e-4e46-a290-7279f79e6dc8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195522Z:1d7c9042-7b0e-4e46-a290-7279f79e6dc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:21 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc3c9751-7433-4f8f-ad9b-d9785ee5beb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6cbfe6a9-500a-4c77-8b5a-e92aa82a2696" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "b377b38e-60dd-44e2-9e1e-d7ff256eca79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195523Z:b377b38e-60dd-44e2-9e1e-d7ff256eca79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a461890a-3d03-4589-bdfe-97d37e274efc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ea295b7-ddbc-4bde-b18c-1e950899a724" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "763dbcc3-4ca1-4077-b416-5b36be22fa80" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195524Z:763dbcc3-4ca1-4077-b416-5b36be22fa80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:24 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66735363-e84f-4443-8b61-e66dbcc6a315" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f84195e4-ab39-4b59-915d-4fd9a57fddd9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "4f8bec5c-4550-4b19-9bff-cfced1355b6a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195526Z:4f8bec5c-4550-4b19-9bff-cfced1355b6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:25 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4b59e66-520c-4e44-b2a9-1bcd9b0e8d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "77cce293-4566-4619-ac94-d412d0812850" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "8b51504b-d57d-4582-a343-a134e78494e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195527Z:8b51504b-d57d-4582-a343-a134e78494e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "332d28d1-4ef4-4a3d-a71d-3e9ea7d575ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ba9b975-d7f4-40b8-8edb-ec7fdb0b4364" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "4b2a4999-61be-4fc8-a810-88f8e639af23" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195528Z:4b2a4999-61be-4fc8-a810-88f8e639af23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:28 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c31d9153-b18d-4232-abc5-06d90ad01ac9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d682f271-e86d-4dc3-b7ed-03efe6e66a41" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "1b18fba9-f3a4-4795-bd0a-33ffd8cb9ec4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195530Z:1b18fba9-f3a4-4795-bd0a-33ffd8cb9ec4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:29 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f5c3204-a42c-4c82-ab01-f6eb5db8f966" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "153f7d55-45ba-4289-90af-ad2d2de7aebe" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "ea34b47e-75b9-425b-b5e8-e26284131380" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195531Z:ea34b47e-75b9-425b-b5e8-e26284131380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7b229da-bf88-4b45-b5d4-f565083ce3b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "12ad8885-c51e-4317-8e18-97586df911b9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "8694b1ca-7884-4516-91dc-fb3507cc37ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195532Z:8694b1ca-7884-4516-91dc-fb3507cc37ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:32 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f09d7c6-f579-432e-bab7-1263852d2be1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6d8161dd-6315-433e-88b0-2eb6494938e4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "4da66c8c-63d2-4ece-959e-14c887b602b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195534Z:4da66c8c-63d2-4ece-959e-14c887b602b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ef13f11-7c07-4fd5-80e4-70dfe75ba19a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7941dcd9-b4be-42b1-b2f6-6aef9c3b73e2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "7ed2be56-feac-4c1f-99fd-84d2b76647b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195535Z:7ed2be56-feac-4c1f-99fd-84d2b76647b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:35 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc5fa3f9-db42-4ef6-ac7c-9f342786c329" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55d93754-f02e-4dbd-9261-bc9fcc2b05af" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "8a3d0f1c-505a-4c86-9e42-e5696f90d13b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195536Z:8a3d0f1c-505a-4c86-9e42-e5696f90d13b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:36 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43d5ded1-4fb6-4b41-b19e-bd2a357b70d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2cb14cb7-9278-4e6a-bdd5-f31060e73e11" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "919a4ad7-b7da-410b-a20f-4b4bf02a396f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195538Z:919a4ad7-b7da-410b-a20f-4b4bf02a396f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dcedccf-5929-4507-ba45-5e56d5c336ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c4287ced-62f0-4d54-a9d0-b15074ce833e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "0e661c2d-521a-4757-8720-0027b0b52052" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195539Z:0e661c2d-521a-4757-8720-0027b0b52052" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:39 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2860dd9-8959-4905-a518-863ebfdaa09d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1914b786-b7e6-4a4d-a675-a611f5081f4b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "de52f2a9-7165-4a7e-afa9-7326a85ce0d0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195541Z:de52f2a9-7165-4a7e-afa9-7326a85ce0d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9aef5ca2-fa55-4634-adc8-35bf6a843671" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ade3731f-1d20-4795-9577-15526e27fc1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "17ba8f29-1260-4b32-9ca3-06e4942ac9f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195542Z:17ba8f29-1260-4b32-9ca3-06e4942ac9f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:42 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5940dc00-f143-4b74-bebf-a69eb8f60874" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d987b93a-dc39-49df-a8f5-88f16634a96b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "6b6e7ff3-ec17-432f-be7b-77e8c4714f6b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195544Z:6b6e7ff3-ec17-432f-be7b-77e8c4714f6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:43 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec4d6323-4c80-486a-b509-9b01132674ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "92c949c0-5e40-4a5a-ad84-1c5aebefec07" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "a773d2f3-adff-42f9-8857-2f11e5bdfae0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195545Z:a773d2f3-adff-42f9-8857-2f11e5bdfae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "531061e6-bc16-4a60-ab6b-543bb3ebf2b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3391b5f7-00f8-4982-b2c4-435da60a964f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "86aa9296-89de-4e3a-97d4-4516faf3fe37" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195546Z:86aa9296-89de-4e3a-97d4-4516faf3fe37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae3860e3-fff2-4648-b0a3-15255f1be36e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98cdea38-2c6b-459b-938a-b48c0f2f717e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "5c246dc7-aed8-4a4c-9267-67829cffd34a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195548Z:5c246dc7-aed8-4a4c-9267-67829cffd34a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c81d4db3-01b1-48f7-b27e-71553fc01d3e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4fc05b7-8ec7-4bc8-a507-e4e4bb4957d6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "2c11a75a-dce5-4a63-a99c-7295af2bbe92" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195549Z:2c11a75a-dce5-4a63-a99c-7295af2bbe92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:49 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b34891f-5a9c-4250-b1f1-dd3c225a20ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bbd68960-83e1-42a5-aa76-55984684bfd3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "45c69326-ced4-479d-9abb-b42c8abc98bc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195550Z:45c69326-ced4-479d-9abb-b42c8abc98bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1b8e67a-38e3-4f7a-b018-e56d3970b6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a81de117-344b-400f-8009-3e6e905ba542" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "4f5a8e5d-4586-4f8a-9f3f-4b1174b316a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195552Z:4f5a8e5d-4586-4f8a-9f3f-4b1174b316a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a0e73fd-2284-4764-9b05-18a5313ea7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "918b9d11-03e2-44de-a7a3-91f0642d831a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "9a014094-4dc6-4215-9ad4-ea1e95af4cc3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195553Z:9a014094-4dc6-4215-9ad4-ea1e95af4cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:53 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "953f40b3-3895-4b5b-a0ab-d2f008aeb5ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "236a7fad-8156-4adf-bf0e-f426131bc2a4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "93c4caa4-0e3d-4feb-b25d-dd92b401a4f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195555Z:93c4caa4-0e3d-4feb-b25d-dd92b401a4f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:55 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe0b0aa9-877d-4d72-bba8-1f6e9f89491f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59752201-80c4-4f2f-90be-821d908aba3f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "61fe8398-734f-424b-87ed-e50814e36d9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195557Z:61fe8398-734f-424b-87ed-e50814e36d9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:56 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62208054-93c5-40b3-b8f2-b0064ae63225" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f54c234-619f-4963-a670-b29908a168f7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "dbf3f567-9225-4604-9d7b-0b8ddb2d3c8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195558Z:dbf3f567-9225-4604-9d7b-0b8ddb2d3c8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751014fc-21ee-4478-8775-21468f73dd4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fef466ba-b96d-4c29-81a0-6250b1561e37" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "8b8e0db8-0792-4b11-95e0-f71ebe2fae88" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195559Z:8b8e0db8-0792-4b11-95e0-f71ebe2fae88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:55:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "970111ac-66d6-4a60-b3ad-864450d53c02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4f11b01-97f5-4bf0-a5dd-3fc717ab094a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "87ed2bec-e65c-40f8-80ce-68d1bdb44f39" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195601Z:87ed2bec-e65c-40f8-80ce-68d1bdb44f39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92cf496a-cd49-4bed-bd2f-28e194a1d068" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36638e81-dc7d-4677-8202-732b94c2cdda" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "edaf2154-cff6-4336-b63d-0cebed261e08" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195602Z:edaf2154-cff6-4336-b63d-0cebed261e08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:02 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "944b62eb-1631-450f-93b5-96c3b0d8a2f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eaba01fc-02d7-4966-ae92-e69a15b20b4b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "fe1f501e-2e07-4b86-8939-4627b8e6b5bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195604Z:fe1f501e-2e07-4b86-8939-4627b8e6b5bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aebff81b-6241-4b82-918c-9b85b3d6163b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "53d79da4-0ac5-4029-abb0-eb849e56a06c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "475294aa-bd88-4632-82d1-e65d8e02fc3e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195605Z:475294aa-bd88-4632-82d1-e65d8e02fc3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec8e0d97-3d03-4dbb-92d5-6290cf26f4ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aaaabc76-2dba-4578-ad68-38435e03e67b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "8547fdcb-e939-4021-824a-027ab3a901dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195607Z:8547fdcb-e939-4021-824a-027ab3a901dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20ef8a70-bf9e-4703-bfbb-b005d10a4f7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "886109ed-af42-463e-8393-245ab5ae9df1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "2b404e61-3c91-4891-8ffb-92f22100f6ab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195608Z:2b404e61-3c91-4891-8ffb-92f22100f6ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d4f51f6-fee5-4bd0-a958-cb15b435cc58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a10fa48d-2e7c-477d-b447-afbe972979df" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "8b18caf7-8f69-45d1-a100-5dbeb1ccd882" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195610Z:8b18caf7-8f69-45d1-a100-5dbeb1ccd882" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:09 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fab5f90-c1cc-4e09-b10c-467d4aacdf30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2af51038-5879-4a17-b004-ed7f1756d681" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "d92374b5-65d6-4a7f-8bc0-845cb5df18f7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195611Z:d92374b5-65d6-4a7f-8bc0-845cb5df18f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:11 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e61836-325d-4eb2-b8f6-828896022cb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "433b5822-d47a-4ded-99f5-cef532b9d25d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "76b309ff-9f9b-4cfb-8421-8db27080a158" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195613Z:76b309ff-9f9b-4cfb-8421-8db27080a158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df2053d7-0f34-4a17-897a-d9986828604f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7934e7aa-09e7-45bd-8968-e04060db7bb3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "4cdbbfbd-c3c5-4dfb-a8e6-5a629260f050" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195614Z:4cdbbfbd-c3c5-4dfb-a8e6-5a629260f050" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:13 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5024e0ae-c682-449a-93d0-d47bd0c5a288" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c418bf0-9cf1-48f3-95d4-a820a0b2ee80" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "a53a1ad8-feff-4b18-a864-2d937e599c1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195615Z:a53a1ad8-feff-4b18-a864-2d937e599c1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:15 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8541857-97d1-4499-90da-cb8d07d07177" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d53660c-3a30-40fa-b932-d598fafea819" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "48e2ee79-7f66-4c22-81f9-100044b6fbeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195617Z:48e2ee79-7f66-4c22-81f9-100044b6fbeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37fbbe5c-6fd8-4206-b44e-bbf5c5f3b644" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dcc0abae-ec61-4de2-8c7d-5115602edb98" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "af713f41-b441-45f8-9833-9aef44745cc3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195618Z:af713f41-b441-45f8-9833-9aef44745cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:18 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "105d871c-fb1e-4b93-9f97-bd4741db2eb1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6ffc3af-ef6e-423e-b2c3-635d06f5903b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-correlation-request-id": [ + "df2cee22-0f76-461a-93b3-f72248de84fb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195620Z:df2cee22-0f76-461a-93b3-f72248de84fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a0e1591-0eb9-4f4f-bb6c-783d47fdf544" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2ff6f34d-ba4d-4217-bfa3-8f8c8f40f9df" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "9890161e-fe97-4a39-af7e-7580ac207b38" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195621Z:9890161e-fe97-4a39-af7e-7580ac207b38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:20 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9518bda-4319-445d-8d85-931db0eb3d62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "82ba4ed3-b263-48da-bf2b-cc6f9219ff26" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "ba3f7798-399d-4b81-b20b-1d498eda5dd7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195622Z:ba3f7798-399d-4b81-b20b-1d498eda5dd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5d39e69-6ce9-49d2-953f-6c5e9e8bea42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c94d7b91-395b-4040-86d5-56bb6b79cd5c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "fa638a71-e0d9-4833-9e39-92fb093401d9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195624Z:fa638a71-e0d9-4833-9e39-92fb093401d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "147fc044-53bc-42d1-b346-9e1769b4d443" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "300c40cc-505e-4c5e-bd12-46b6227a479d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "f4bc1e13-5d37-4a48-af65-e94e4cda812a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195625Z:f4bc1e13-5d37-4a48-af65-e94e4cda812a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:25 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6b7d1ba-3285-4a44-b67e-3672e1f14009" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df5c87e6-0f97-4560-8a7f-33aead7cfc8a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-correlation-request-id": [ + "c16ed2e6-3270-4e64-a400-55ad9a34594d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195627Z:c16ed2e6-3270-4e64-a400-55ad9a34594d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "049557a5-6ef7-4179-ac75-9dcd6ddba32a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02235e8b-8c2e-4a18-adfb-12bfa7b1d306" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "12c261b9-2115-48e3-a6c9-b6e705aa8a41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195628Z:12c261b9-2115-48e3-a6c9-b6e705aa8a41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "780cd9db-8c91-4f67-80d5-2e273b24941b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ba8546a-00fc-4f6a-866c-89e5a8fd111d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "62bdd789-b8fd-428c-a173-4474d81bad0a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195629Z:62bdd789-b8fd-428c-a173-4474d81bad0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:29 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aea7e099-3eeb-471a-ba26-1c78808f2252" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "410d8996-daba-4e06-b2a2-5f5304e90bd0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "d470ecba-b46e-42f8-b190-ae0db634c05f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195631Z:d470ecba-b46e-42f8-b190-ae0db634c05f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18db9eab-e5de-4d45-b8a0-2d4b0dada620" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecc6c616-7caa-4802-80d1-6b7552a19dc0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "2a246b09-a2c9-4805-855c-3ac3fc1e1204" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195632Z:2a246b09-a2c9-4805-855c-3ac3fc1e1204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72f5c72e-8bd1-4535-9b41-c57c35dc7045" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d288522-8570-4872-a81d-617c5649fad1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "78cb58f6-2fb3-4ba8-8105-c80caa87469a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195634Z:78cb58f6-2fb3-4ba8-8105-c80caa87469a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50ef56ee-2360-4538-b8dc-8683b2d600d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41845620-15bf-4c2a-b4a2-4d6d341ed9f3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "ab7b48fc-fd90-4289-a9df-64af942428d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195635Z:ab7b48fc-fd90-4289-a9df-64af942428d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:34 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3773e94-6f27-431e-80de-0dd4de934c88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a673145-b184-4c1d-a3bc-08ad46a05328" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "60d89bfe-03ef-47bd-98d6-da36308fff78" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195636Z:60d89bfe-03ef-47bd-98d6-da36308fff78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:36 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8a0aee7-b921-4b0e-9431-cab495e1680e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8cc6637-d7dd-4c78-a3cf-56b21134284b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "1ee0ed55-92b5-4c63-8c34-c2859baabc9b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195638Z:1ee0ed55-92b5-4c63-8c34-c2859baabc9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:37 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d795bb9-246f-4e24-a74f-0340e2b7a8c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95eb4cda-3395-48f4-9a61-de1a236ae60e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "77a47bb3-fd8f-469b-b657-cf50607a6427" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195639Z:77a47bb3-fd8f-469b-b657-cf50607a6427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b82e1db-a905-4108-9a47-1de452ae8e17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "490e8c7d-16c3-4069-8cbd-b03ec05d0600" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "ed058972-6dff-4913-a450-88659ec23bb8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195641Z:ed058972-6dff-4913-a450-88659ec23bb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b044a298-f024-4d3c-8db5-f55034aa430d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2154c80f-83cd-490c-8e84-adff5522e00d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-correlation-request-id": [ + "a64a2e04-0050-49cb-9fb9-5a34bb88c95a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195642Z:a64a2e04-0050-49cb-9fb9-5a34bb88c95a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4b4bcb5-c474-4ebc-b5e8-7944a3ee1df1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f11817c-28d6-4338-a37e-45a5e8ff0014" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "3bea1000-4bd5-4341-871d-fe72764ca1be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195643Z:3bea1000-4bd5-4341-871d-fe72764ca1be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:43 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8299c14-aabb-4eba-89e3-f70187880afd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d11d8d0d-43cb-45bf-89e9-6d2c097ee6c2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "95c3ba0d-fbd5-4752-a0d8-91e9bc73066a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195645Z:95c3ba0d-fbd5-4752-a0d8-91e9bc73066a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "125def2e-22a7-4af0-ab33-0111f8a04029" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab953063-ea63-42ed-b740-11122bfedecd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-correlation-request-id": [ + "31dc9cc0-af76-4735-b8bd-c28cf6d9cfa6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195646Z:31dc9cc0-af76-4735-b8bd-c28cf6d9cfa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:45 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f119b70-d67a-470c-ac95-0f72f7434475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "466eb705-2d37-4aca-b131-2e607083da83" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "4d034d84-532b-4c9b-a3aa-301b5bd54850" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195647Z:4d034d84-532b-4c9b-a3aa-301b5bd54850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1cc1b07-e3e1-4588-b109-b0840f33161d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64d02a5e-78ba-4f0d-959d-f3f0a227f128" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-correlation-request-id": [ + "257bc9cb-10da-4c32-be12-a0f57cf6f521" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195649Z:257bc9cb-10da-4c32-be12-a0f57cf6f521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d6fa38e-9d80-4b04-82b8-7c49a5aad55a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e76c163-4fba-4a9f-8a39-8cb6cb0840e6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-correlation-request-id": [ + "cb2c58bc-e9ff-4aa3-abd3-9fcb3b073ecb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195650Z:cb2c58bc-e9ff-4aa3-abd3-9fcb3b073ecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:49 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad8bfa4b-e2ed-4670-8a6a-669c73b8cdb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "709590c1-566e-4a61-8217-cad369a57eba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-correlation-request-id": [ + "9b70a1fe-94eb-41bc-ab76-3c5c54f7b2f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195651Z:9b70a1fe-94eb-41bc-ab76-3c5c54f7b2f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:51 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3cfe450-eee0-402f-8e4b-c9dfec6d8b6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1069cec-3b17-4638-8772-027a7fb5c8c4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-correlation-request-id": [ + "f5502b78-b47d-4f8f-96b0-b790c718e0c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195653Z:f5502b78-b47d-4f8f-96b0-b790c718e0c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7629fed0-42ed-4b4c-b527-5080bb7af1da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f28bc2c-e3f9-45c2-a3c8-b5527717e303" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-correlation-request-id": [ + "a3a3df8b-8f4e-4183-9ff0-9f147d9799fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195656Z:a3a3df8b-8f4e-4183-9ff0-9f147d9799fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:55 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eccb1dbd-569a-43be-8d75-79dd27d0cf10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4afdaeba-349d-4dcf-9197-7c9d124f4160" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-correlation-request-id": [ + "5639006c-4e15-4691-a110-e586b229ef90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195658Z:5639006c-4e15-4691-a110-e586b229ef90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5821a2e7-939a-4b30-b2d8-f0f3973c962e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2bdaa178-4a36-4974-aaa1-aa4e126122b6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-correlation-request-id": [ + "972711be-74fc-4aee-9e42-e4893534ae9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195700Z:972711be-74fc-4aee-9e42-e4893534ae9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:56:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b10a4b5-2b3d-45e7-a1e6-a146d72a78c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d7bd5cf-164b-46f9-abf2-4b1676e850e6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-correlation-request-id": [ + "ecd6931d-7e26-45a9-b4b1-bc0a8ce1ba8d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195701Z:ecd6931d-7e26-45a9-b4b1-bc0a8ce1ba8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e118d9a4-7e6c-4e35-a6f4-5812d2433cc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9e37166-a0a4-4bad-8bb6-d3090593eea4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-correlation-request-id": [ + "7afdeda2-68d1-4b79-8386-cbf6b620c1c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195702Z:7afdeda2-68d1-4b79-8386-cbf6b620c1c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:01 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b76859d-43c2-4dab-ac0e-f554d2709847" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ca6638a-f4e7-4b97-819a-5a55a63ddcac" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-correlation-request-id": [ + "9fd8cfc6-9625-4320-846e-2fba2ac7a60a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195704Z:9fd8cfc6-9625-4320-846e-2fba2ac7a60a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "350b731f-010d-4035-b26e-cea515d6483b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0a51b744-e7cd-4784-bbff-613369bb5157" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-correlation-request-id": [ + "36cddb10-5f2e-4d95-8dd9-572449602429" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195736Z:36cddb10-5f2e-4d95-8dd9-572449602429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:36 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "182a6dc5-73a9-4100-8b06-dc151926d5c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa4ae88d-a9c0-4e4c-b68e-bbc011a5cc5c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-correlation-request-id": [ + "6d72ae71-2311-4450-a50a-faa3bff9a872" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195841Z:6d72ae71-2311-4450-a50a-faa3bff9a872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:40 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Transferring\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2708cf84-ed7e-4e8b-97b1-53f5ae1b7151" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a295a295-2aed-4a14-986c-6d658d7379cc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-correlation-request-id": [ + "bfd0fbaa-a98b-43c2-bd79-f1a09d3271c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195944Z:bfd0fbaa-a98b-43c2-bd79-f1a09d3271c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:59:44 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"20352\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68ca47d8-2256-4081-87d3-2b3a48434076" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + ], + "x-ms-correlation-request-id": [ + "fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195705Z:fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"forceBreakReplication\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b7329ab-d833-438d-8acf-eb3000f91df0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "9370c96f-042c-4480-8def-9e62c2a2b45b" + ], + "x-ms-correlation-request-id": [ + "9370c96f-042c-4480-8def-9e62c2a2b45b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195912Z:9370c96f-042c-4480-8def-9e62c2a2b45b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:59:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iM2Y3MzI1My01Y2RhLTQ2YjctOTMzNy1lNjIzZDgxMzEyNGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "491ee76c-6a33-45a7-803d-04e2f645dc6e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-correlation-request-id": [ + "f2d869fb-463a-4aba-bf67-a0709fed5372" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195735Z:f2d869fb-463a-4aba-bf67-a0709fed5372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:35 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d\",\r\n \"name\": \"b3f73253-5cda-46b7-9337-e623d813124d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:57:05.5147445Z\",\r\n \"endTime\": \"2020-10-23T19:57:12.6827981Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iM2Y3MzI1My01Y2RhLTQ2YjctOTMzNy1lNjIzZDgxMzEyNGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c731f280-c827-4d90-b411-101b5bef371a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-correlation-request-id": [ + "9ae62363-e163-48b7-b6b4-9ef72266a0b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195735Z:9ae62363-e163-48b7-b6b4-9ef72266a0b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:57:35 GMT" + ], + "Content-Length": [ + "2361" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A57%3A05.5515615Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/resyncReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVzeW5jUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21fa18b5-886f-4d45-9a0d-93e8cfca6900" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "b28f7baf-32e3-4b85-adf5-66517b28dece" + ], + "x-ms-correlation-request-id": [ + "b28f7baf-32e3-4b85-adf5-66517b28dece" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195810Z:b28f7baf-32e3-4b85-adf5-66517b28dece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8xN2E1NmFjOC05YTA5LTQ1MDYtOWE3OC1lMzdjZmI4MzQxMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df32a820-9fa5-4014-bfbc-1f3bb05f6645" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-correlation-request-id": [ + "024c086c-fe5e-42af-8383-5c7f8749e1f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195840Z:024c086c-fe5e-42af-8383-5c7f8749e1f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:39 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104\",\r\n \"name\": \"17a56ac8-9a09-4506-9a78-e37cfb834104\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:58:10.312434Z\",\r\n \"endTime\": \"2020-10-23T19:58:18.5267153Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8xN2E1NmFjOC05YTA5LTQ1MDYtOWE3OC1lMzdjZmI4MzQxMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8b155b8-0da2-48ef-b841-a0b28addb88d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-correlation-request-id": [ + "e75beb14-70bc-40c2-856f-a0ee765f1017" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195840Z:e75beb14-70bc-40c2-856f-a0ee765f1017" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:58:40 GMT" + ], + "Content-Length": [ + "2396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A58%3A10.3578492Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Mirrored\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zOGNjYWQyNy1iMWZlLTQ4MDgtYjY5NC0zZGZlMTQ4YjYwNjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5831b838-968a-4f6c-a31e-82ae0e3adfd4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-correlation-request-id": [ + "78fb48c4-1b30-4bd2-9139-9d6a1812120b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195942Z:78fb48c4-1b30-4bd2-9139-9d6a1812120b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:59:42 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069\",\r\n \"name\": \"38ccad27-b1fe-4808-b694-3dfe148b6069\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:59:12.4078995Z\",\r\n \"endTime\": \"2020-10-23T19:59:28.242899Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zOGNjYWQyNy1iMWZlLTQ4MDgtYjY5NC0zZGZlMTQ4YjYwNjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "590ce682-c85f-4fb1-8eb6-5e9f58a5d9a5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-correlation-request-id": [ + "ea078a0f-9240-479a-8d45-e7becaa447b4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T195943Z:ea078a0f-9240-479a-8d45-e7becaa447b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 19:59:43 GMT" + ], + "Content-Length": [ + "2361" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A59%3A12.4722106Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/deleteReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvZGVsZXRlUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "620c7c99-1293-4f2b-a0fb-077044818bf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "40483e12-b4b2-4ae9-b62b-45d0522378d5" + ], + "x-ms-correlation-request-id": [ + "40483e12-b4b2-4ae9-b62b-45d0522378d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200015Z:40483e12-b4b2-4ae9-b62b-45d0522378d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:00:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jZmY5MmUyYS03MzNmLTRjZjgtYjNlZi00NmRjYTZmMzdkYzk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd359dcc-b67c-45cf-a783-99e6cb30de0e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-correlation-request-id": [ + "d1be58a9-6f50-44fc-98f5-b2816ee11163" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200046Z:d1be58a9-6f50-44fc-98f5-b2816ee11163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:00:45 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9\",\r\n \"name\": \"cff92e2a-733f-4cf8-b3ef-46dca6f37dc9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T20:00:15.7332537Z\",\r\n \"endTime\": \"2020-10-23T20:00:17.0769684Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jZmY5MmUyYS03MzNmLTRjZjgtYjNlZi00NmRjYTZmMzdkYzk/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a30ae3e1-ef25-4b93-bc89-68276546f524" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-correlation-request-id": [ + "88140b03-c982-43bf-99f1-740201cf94aa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200046Z:88140b03-c982-43bf-99f1-740201cf94aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:00:45 GMT" + ], + "Content-Length": [ + "1798" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T20%3A00%3A15.7804265Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {},\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4997?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ffe27f2-ff05-4a88-be4f-644e980037ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + ], + "x-ms-correlation-request-id": [ + "11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200050Z:11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:00:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + ], + "x-ms-correlation-request-id": [ + "e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200105Z:e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:01:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4e17a664-65b1-4d68-b60a-4102c46dc56d" + ], + "x-ms-correlation-request-id": [ + "4e17a664-65b1-4d68-b60a-4102c46dc56d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200120Z:4e17a664-65b1-4d68-b60a-4102c46dc56d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:01:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "cc6002a8-3e1e-4d0b-b182-73f7353020bd" + ], + "x-ms-correlation-request-id": [ + "cc6002a8-3e1e-4d0b-b182-73f7353020bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200136Z:cc6002a8-3e1e-4d0b-b182-73f7353020bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:01:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7b18e14a-7585-4e62-95fe-0dc362fddcdf" + ], + "x-ms-correlation-request-id": [ + "7b18e14a-7585-4e62-95fe-0dc362fddcdf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200151Z:7b18e14a-7585-4e62-95fe-0dc362fddcdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:01:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + ], + "x-ms-correlation-request-id": [ + "a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200207Z:a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:02:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "952f73dd-0b64-4ca7-a748-26650486da3a" + ], + "x-ms-correlation-request-id": [ + "952f73dd-0b64-4ca7-a748-26650486da3a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200222Z:952f73dd-0b64-4ca7-a748-26650486da3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:02:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "24ffcd37-a6d5-4d11-940f-851ee570555e" + ], + "x-ms-correlation-request-id": [ + "24ffcd37-a6d5-4d11-940f-851ee570555e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200237Z:24ffcd37-a6d5-4d11-940f-851ee570555e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:02:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + ], + "x-ms-correlation-request-id": [ + "e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200253Z:e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:02:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + ], + "x-ms-correlation-request-id": [ + "5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200308Z:5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:03:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "2a11eeee-33f8-4b0f-85e4-c375fc453764" + ], + "x-ms-correlation-request-id": [ + "2a11eeee-33f8-4b0f-85e4-c375fc453764" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200323Z:2a11eeee-33f8-4b0f-85e4-c375fc453764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:03:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "ccfd584f-001d-4184-90b9-74293fbefd8a" + ], + "x-ms-correlation-request-id": [ + "ccfd584f-001d-4184-90b9-74293fbefd8a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200339Z:ccfd584f-001d-4184-90b9-74293fbefd8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:03:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "3233e488-3116-4e56-850c-634f045c9276" + ], + "x-ms-correlation-request-id": [ + "3233e488-3116-4e56-850c-634f045c9276" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200354Z:3233e488-3116-4e56-850c-634f045c9276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:03:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "594a9598-a82b-4860-af3e-c18194295318" + ], + "x-ms-correlation-request-id": [ + "594a9598-a82b-4860-af3e-c18194295318" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200409Z:594a9598-a82b-4860-af3e-c18194295318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:04:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "c8f6a26f-00a0-405b-add2-a8d031f85e9c" + ], + "x-ms-correlation-request-id": [ + "c8f6a26f-00a0-405b-add2-a8d031f85e9c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200425Z:c8f6a26f-00a0-405b-add2-a8d031f85e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:04:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + ], + "x-ms-correlation-request-id": [ + "fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200440Z:fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:04:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "fc1af87f-f671-42c0-bde8-97cb34c0633d" + ], + "x-ms-correlation-request-id": [ + "fc1af87f-f671-42c0-bde8-97cb34c0633d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200456Z:fc1af87f-f671-42c0-bde8-97cb34c0633d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:04:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + ], + "x-ms-correlation-request-id": [ + "49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200511Z:49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:05:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "206a6894-7877-406a-8aff-72abc1aedf6e" + ], + "x-ms-correlation-request-id": [ + "206a6894-7877-406a-8aff-72abc1aedf6e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200527Z:206a6894-7877-406a-8aff-72abc1aedf6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:05:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "2afdd89b-ccca-4270-8cee-81559ad6606c" + ], + "x-ms-correlation-request-id": [ + "2afdd89b-ccca-4270-8cee-81559ad6606c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200542Z:2afdd89b-ccca-4270-8cee-81559ad6606c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:05:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + ], + "x-ms-correlation-request-id": [ + "107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200558Z:107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:05:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "2f7dd116-e759-4ec2-9425-399efbb4ee1c" + ], + "x-ms-correlation-request-id": [ + "2f7dd116-e759-4ec2-9425-399efbb4ee1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200613Z:2f7dd116-e759-4ec2-9425-399efbb4ee1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:06:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "c10dd206-96db-4050-abeb-316d40d20457" + ], + "x-ms-correlation-request-id": [ + "c10dd206-96db-4050-abeb-316d40d20457" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200628Z:c10dd206-96db-4050-abeb-316d40d20457" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:06:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "619c8eb2-1006-4eb8-a756-229696996dc3" + ], + "x-ms-correlation-request-id": [ + "619c8eb2-1006-4eb8-a756-229696996dc3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200644Z:619c8eb2-1006-4eb8-a756-229696996dc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:06:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "6341007c-35a5-4e64-8fc4-09e707191ab4" + ], + "x-ms-correlation-request-id": [ + "6341007c-35a5-4e64-8fc4-09e707191ab4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200659Z:6341007c-35a5-4e64-8fc4-09e707191ab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:06:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + ], + "x-ms-correlation-request-id": [ + "a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200715Z:a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:07:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + ], + "x-ms-correlation-request-id": [ + "d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200730Z:d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:07:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "c55df56a-749b-445c-8d18-9beeb384a15b" + ], + "x-ms-correlation-request-id": [ + "c55df56a-749b-445c-8d18-9beeb384a15b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200745Z:c55df56a-749b-445c-8d18-9beeb384a15b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:07:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "fd011b29-4f3d-4ec4-86f3-d75a8225c445" + ], + "x-ms-correlation-request-id": [ + "fd011b29-4f3d-4ec4-86f3-d75a8225c445" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200801Z:fd011b29-4f3d-4ec4-86f3-d75a8225c445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:08:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "70e7451b-21b6-45e0-b02b-2cb89b13e4db" + ], + "x-ms-correlation-request-id": [ + "70e7451b-21b6-45e0-b02b-2cb89b13e4db" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200816Z:70e7451b-21b6-45e0-b02b-2cb89b13e4db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:08:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + ], + "x-ms-correlation-request-id": [ + "a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200831Z:a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:08:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + ], + "x-ms-correlation-request-id": [ + "992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200847Z:992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:08:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "7bb0052a-e437-4fea-a122-2aca806e9eca" + ], + "x-ms-correlation-request-id": [ + "7bb0052a-e437-4fea-a122-2aca806e9eca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200902Z:7bb0052a-e437-4fea-a122-2aca806e9eca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:09:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "5c81af8a-990f-4996-aebe-fbe9e09e7e06" + ], + "x-ms-correlation-request-id": [ + "5c81af8a-990f-4996-aebe-fbe9e09e7e06" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200917Z:5c81af8a-990f-4996-aebe-fbe9e09e7e06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:09:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "1c44724e-a910-48d5-ab91-cf4abbf0e75d" + ], + "x-ms-correlation-request-id": [ + "1c44724e-a910-48d5-ab91-cf4abbf0e75d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T200933Z:1c44724e-a910-48d5-ab91-cf4abbf0e75d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:09:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "3c22f1ab-9bed-479f-a88b-d61225046b4e" + ], + "x-ms-correlation-request-id": [ + "3c22f1ab-9bed-479f-a88b-d61225046b4e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201001Z:3c22f1ab-9bed-479f-a88b-d61225046b4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "e6f213f9-1342-474d-9372-df15d1138c85" + ], + "x-ms-correlation-request-id": [ + "e6f213f9-1342-474d-9372-df15d1138c85" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201016Z:e6f213f9-1342-474d-9372-df15d1138c85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + ], + "x-ms-correlation-request-id": [ + "145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201032Z:145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + ], + "x-ms-correlation-request-id": [ + "7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201032Z:7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2981?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7235a41-a9c2-4d65-b311-8d055b43c115" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "2c0d1dd6-d122-4ed2-be54-e3ff852674af" + ], + "x-ms-correlation-request-id": [ + "2c0d1dd6-d122-4ed2-be54-e3ff852674af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201035Z:2c0d1dd6-d122-4ed2-be54-e3ff852674af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "9e8114a2-7955-4984-8746-2054f9659de4" + ], + "x-ms-correlation-request-id": [ + "9e8114a2-7955-4984-8746-2054f9659de4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201050Z:9e8114a2-7955-4984-8746-2054f9659de4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:10:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "044861c4-6706-4603-aa09-a332af9234ad" + ], + "x-ms-correlation-request-id": [ + "044861c4-6706-4603-aa09-a332af9234ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201106Z:044861c4-6706-4603-aa09-a332af9234ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:11:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "2352646d-6583-4aa4-9e25-99e5df1c723a" + ], + "x-ms-correlation-request-id": [ + "2352646d-6583-4aa4-9e25-99e5df1c723a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201121Z:2352646d-6583-4aa4-9e25-99e5df1c723a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:11:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "03d833c2-3b65-4db8-99e5-35f9bcf7a582" + ], + "x-ms-correlation-request-id": [ + "03d833c2-3b65-4db8-99e5-35f9bcf7a582" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201136Z:03d833c2-3b65-4db8-99e5-35f9bcf7a582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:11:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "ab2d3aaf-0a85-413e-b024-c2e40888335c" + ], + "x-ms-correlation-request-id": [ + "ab2d3aaf-0a85-413e-b024-c2e40888335c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201152Z:ab2d3aaf-0a85-413e-b024-c2e40888335c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:11:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + ], + "x-ms-correlation-request-id": [ + "8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201207Z:8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:12:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "2494db51-0595-4582-b65e-d61a125b62a3" + ], + "x-ms-correlation-request-id": [ + "2494db51-0595-4582-b65e-d61a125b62a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201222Z:2494db51-0595-4582-b65e-d61a125b62a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:12:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "edccc22e-ce16-41ee-a0c1-e722a6d2c315" + ], + "x-ms-correlation-request-id": [ + "edccc22e-ce16-41ee-a0c1-e722a6d2c315" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201238Z:edccc22e-ce16-41ee-a0c1-e722a6d2c315" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:12:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "327f484e-9e87-49ee-a784-4ef855acca59" + ], + "x-ms-correlation-request-id": [ + "327f484e-9e87-49ee-a784-4ef855acca59" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201253Z:327f484e-9e87-49ee-a784-4ef855acca59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:12:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "37b12dc6-f78a-47c4-b707-8104d8a2791f" + ], + "x-ms-correlation-request-id": [ + "37b12dc6-f78a-47c4-b707-8104d8a2791f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201309Z:37b12dc6-f78a-47c4-b707-8104d8a2791f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:13:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + ], + "x-ms-correlation-request-id": [ + "cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201324Z:cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:13:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "0b270784-d71a-469b-ac2b-841360f9c245" + ], + "x-ms-correlation-request-id": [ + "0b270784-d71a-469b-ac2b-841360f9c245" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201339Z:0b270784-d71a-469b-ac2b-841360f9c245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:13:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + ], + "x-ms-correlation-request-id": [ + "f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201355Z:f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:13:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "0d38548d-f404-4811-904a-558e20198cc8" + ], + "x-ms-correlation-request-id": [ + "0d38548d-f404-4811-904a-558e20198cc8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201410Z:0d38548d-f404-4811-904a-558e20198cc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:14:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "c2f80339-195b-4496-8717-176f096148e1" + ], + "x-ms-correlation-request-id": [ + "c2f80339-195b-4496-8717-176f096148e1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201425Z:c2f80339-195b-4496-8717-176f096148e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:14:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "ab035bc6-f897-4e48-8dfa-f9d13705a08e" + ], + "x-ms-correlation-request-id": [ + "ab035bc6-f897-4e48-8dfa-f9d13705a08e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201441Z:ab035bc6-f897-4e48-8dfa-f9d13705a08e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:14:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "a65664f5-729b-4eb7-9fb9-5f74a728eecf" + ], + "x-ms-correlation-request-id": [ + "a65664f5-729b-4eb7-9fb9-5f74a728eecf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201456Z:a65664f5-729b-4eb7-9fb9-5f74a728eecf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:14:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + ], + "x-ms-correlation-request-id": [ + "4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201511Z:4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:15:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "299b5b02-b224-4fb2-92a0-50bf397ad88f" + ], + "x-ms-correlation-request-id": [ + "299b5b02-b224-4fb2-92a0-50bf397ad88f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201527Z:299b5b02-b224-4fb2-92a0-50bf397ad88f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:15:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "c89f3564-edc8-4447-ae9c-39537e02bb6c" + ], + "x-ms-correlation-request-id": [ + "c89f3564-edc8-4447-ae9c-39537e02bb6c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201542Z:c89f3564-edc8-4447-ae9c-39537e02bb6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:15:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + ], + "x-ms-correlation-request-id": [ + "409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201558Z:409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:15:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + ], + "x-ms-correlation-request-id": [ + "24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201613Z:24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:16:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + ], + "x-ms-correlation-request-id": [ + "8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201628Z:8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:16:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "c02b9df1-8df7-433d-a849-5ef1c98422dd" + ], + "x-ms-correlation-request-id": [ + "c02b9df1-8df7-433d-a849-5ef1c98422dd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201644Z:c02b9df1-8df7-433d-a849-5ef1c98422dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:16:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "9fb3e39b-e38b-45aa-9566-12da81160d85" + ], + "x-ms-correlation-request-id": [ + "9fb3e39b-e38b-45aa-9566-12da81160d85" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201659Z:9fb3e39b-e38b-45aa-9566-12da81160d85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:16:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "8ab1b1f7-2ac0-4307-b988-a634c4331391" + ], + "x-ms-correlation-request-id": [ + "8ab1b1f7-2ac0-4307-b988-a634c4331391" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201714Z:8ab1b1f7-2ac0-4307-b988-a634c4331391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:17:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "b6a29940-6ca1-403f-8206-b0618dab25fd" + ], + "x-ms-correlation-request-id": [ + "b6a29940-6ca1-403f-8206-b0618dab25fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201730Z:b6a29940-6ca1-403f-8206-b0618dab25fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:17:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "814fd5d6-1c97-4f20-9440-21c06b3d28bb" + ], + "x-ms-correlation-request-id": [ + "814fd5d6-1c97-4f20-9440-21c06b3d28bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201745Z:814fd5d6-1c97-4f20-9440-21c06b3d28bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:17:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + ], + "x-ms-correlation-request-id": [ + "1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201800Z:1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:18:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "8de8684b-0bc6-4d33-a65e-39ece2c73708" + ], + "x-ms-correlation-request-id": [ + "8de8684b-0bc6-4d33-a65e-39ece2c73708" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201816Z:8de8684b-0bc6-4d33-a65e-39ece2c73708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:18:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + ], + "x-ms-correlation-request-id": [ + "03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201831Z:03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:18:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "99f9f50e-d572-46f3-8f94-23458b1807ed" + ], + "x-ms-correlation-request-id": [ + "99f9f50e-d572-46f3-8f94-23458b1807ed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201846Z:99f9f50e-d572-46f3-8f94-23458b1807ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:18:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + ], + "x-ms-correlation-request-id": [ + "0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201902Z:0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:19:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "bd186e47-02e2-449b-b278-ef5edf166395" + ], + "x-ms-correlation-request-id": [ + "bd186e47-02e2-449b-b278-ef5edf166395" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201917Z:bd186e47-02e2-449b-b278-ef5edf166395" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:19:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "8e299ef4-4fdd-4119-81b1-c850ced8cc09" + ], + "x-ms-correlation-request-id": [ + "8e299ef4-4fdd-4119-81b1-c850ced8cc09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T201917Z:8e299ef4-4fdd-4119-81b1-c850ced8cc09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 20:19:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VolumeReplication": [ + "ps4997", + "ps2981", + "ps5547", + "ps7560", + "ps2914", + "ps3683", + "ps3085", + "ps8882" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file From e022831f9ca1aed9673dcf0e7d36e1cd86a175c6 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 1 Nov 2020 15:09:51 +0000 Subject: [PATCH 04/22] Update active directory and docs --- .../ScenarioTests/ActiveDirectoryTests.ps1 | 11 +- .../NewNetAppFilesActiveDirectory.cs | 14 +- ...cs => UpdateNetAppFilesActiveDirectory.cs} | 93 ++----- .../help/Get-AzNetAppFilesActiveDirectory.md | 8 +- .../help/Get-AzNetAppFilesBackup.md | 8 +- .../help/Get-AzNetAppFilesBackupPolicy.md | 8 +- .../NetAppFiles/help/Get-AzNetAppFilesPool.md | 5 +- .../help/Get-AzNetAppFilesSnapshotPolicy.md | 8 +- .../help/Get-AzNetAppFilesVault.md | 8 +- .../help/New-AzNetAppFilesActiveDirectory.md | 9 +- .../help/New-AzNetAppFilesBackup.md | 8 +- .../help/New-AzNetAppFilesBackupPolicy.md | 8 +- .../NetAppFiles/help/New-AzNetAppFilesPool.md | 5 +- .../help/New-AzNetAppFilesSnapshotPolicy.md | 29 +- .../Remove-AzNetAppFilesActiveDirectory.md | 8 +- .../help/Remove-AzNetAppFilesBackup.md | 8 +- .../help/Remove-AzNetAppFilesBackupPolicy.md | 8 +- .../Remove-AzNetAppFilesSnapshotPolicy.md | 8 +- .../help/Revert-AzNetAppFilesVolume.md | 253 ------------------ .../Update-AzNetAppFilesActiveDirectory.md | 8 +- .../EnvironmentSetupHelper.cs | 2 +- 21 files changed, 124 insertions(+), 393 deletions(-) rename src/NetAppFiles/NetAppFiles/ActiveDirectory/{UpdateNetAppFilesBackupPolicy.cs => UpdateNetAppFilesActiveDirectory.cs} (71%) delete mode 100644 src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 index 6a6ab3c86b5b..5f658dee5b83 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 @@ -25,12 +25,13 @@ function Test-ActiveDirectoryCrud $accName2 = Get-ResourceName #$resourceLocation = Get-ProviderLocation "Microsoft.NetApp" $resourceLocation = 'westus2' - $adUsername = "sdkuser" + $adUsername = "sdkuser" <#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="...")]#> $adPassword = "sdkpass" $adDomain = "sdkdomain" $adDns = "192.0.2.2" $adSmbServerName = "PSSMBSName" + $adSmbServerName2 = "PSMBSName2" try { @@ -44,7 +45,7 @@ function Test-ActiveDirectoryCrud Assert-AreEqual $accName1 $retrievedAcc.Name $sPass = ConvertTo-SecureString $adPassword -AsPlainText -Force # create and check ActiveDirectory - $retrievedAd = New-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + $retrievedAd = New-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName Assert-AreEqual $activeDirectoryName1 $retrievedAd.AdName Assert-AreEqual $adDomain $retrievedAd.Domain Assert-AreEqual $adUsername $retrievedAd.Username @@ -63,7 +64,11 @@ function Test-ActiveDirectoryCrud Assert-AreEqual $adUsername $getRetrievedAd.Username Assert-AreEqual $adDns $getRetrievedAd.Dns Assert-AreEqual $adSmbServerName $getRetrievedAd.SmbServerName - + + #update AD + $getUpdateddAd = Update-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 -SmbServerName $adSmbServerName2 -Password $sPass + Assert-AreEqual $adSmbServerName2 $getUpdateddAd.SmbServerName + # delete activeDirectory retrieved # but test the WhatIf first, should not be removed Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $getRetrievedAd.AdName -WhatIf diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs index 491bc7bbee9a..f34b4728680c 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs @@ -47,14 +47,6 @@ public class NewAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } - [Parameter( - Mandatory = true, - ParameterSetName = FieldsParameterSet, - HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - [LocationCompleter("Microsoft.NetApp/netAppAccounts/activeDirectory")] - public string Location { get; set; } - [Parameter( Mandatory = true, ParameterSetName = FieldsParameterSet, @@ -156,8 +148,7 @@ public override void ExecuteCmdlet() { if (ParameterSetName == ParentObjectParameterSet) { - ResourceGroupName = AccountObject.ResourceGroupName; - Location = AccountObject.Location; + ResourceGroupName = AccountObject.ResourceGroupName; var NameParts = AccountObject.Name.Split('/'); AccountName = NameParts[0]; } @@ -198,8 +189,7 @@ public override void ExecuteCmdlet() } anfAccount.ActiveDirectories.Add(activeDirectory); var netAppAccountBody = new NetAppAccountPatch() - { - Location = Location, + { ActiveDirectories = anfAccount.ActiveDirectories }; var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs similarity index 71% rename from src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs rename to src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs index 505b362c79c0..ef0f75bb8018 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesBackupPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs @@ -28,7 +28,7 @@ using System.Security; using Microsoft.WindowsAzure.Commands.Common; -namespace Microsoft.Azure.Commands.NetAppFiles.BackupPolicy +namespace Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory { [Cmdlet( "Update", @@ -46,14 +46,6 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } - [Parameter( - Mandatory = true, - ParameterSetName = FieldsParameterSet, - HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - [LocationCompleter("Microsoft.NetApp/netAppAccounts/activeDirectory")] - public string Location { get; set; } - [Parameter( Mandatory = true, ParameterSetName = FieldsParameterSet, @@ -82,19 +74,19 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas public string[] Dns { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "Name of the Active Directory domain")] [ValidateNotNullOrEmpty] public string Domain { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "The Active Directory site the service will limit Domain Controller discovery to")] [ValidateNotNullOrEmpty] public string Site { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "NetBIOS name of the SMB server. This name will be registered as a computer account in the AD and used to mount volumes")] [ValidateNotNullOrEmpty] public string SmbServerName { get; set; } @@ -142,14 +134,6 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas [ValidateNotNullOrEmpty] public string AdName { get; set; } - - [Parameter( - Mandatory = false, - HelpMessage = "A hashtable array which represents resource tags")] - [ValidateNotNullOrEmpty] - [Alias("Tags")] - public Hashtable Tag { get; set; } - [Parameter( ParameterSetName = ParentObjectParameterSet, Mandatory = true, @@ -163,69 +147,46 @@ public override void ExecuteCmdlet() if (ParameterSetName == ParentObjectParameterSet) { ResourceGroupName = AccountObject.ResourceGroupName; - Location = AccountObject.Location; var NameParts = AccountObject.Name.Split('/'); AccountName = NameParts[0]; } - IDictionary tagPairs = null; - - if (Tag != null) - { - tagPairs = new Dictionary(); - - foreach (string key in Tag.Keys) - { - tagPairs.Add(key, Tag[key].ToString()); - } - } if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); if (anfAccount == null) { - throw new ArgumentException("Specified NetAppAccount does not extist"); + throw new ArgumentException($"Specified NetAppAccount with name '{this.Name}' does not extist in Resource Group '{this.ResourceGroupName}'"); } - - var activeDirectory = new Management.NetApp.Models.ActiveDirectory - { - AdName = Name, - Dns = string.Join(",", Dns), - Domain = Domain, - SmbServerName = SmbServerName, - Username = Username, - Password = Password.ConvertToString(), - Site = Site, - OrganizationalUnit = OrganizationalUnit, - BackupOperators = BackupOperators, - KdcIP = KdcIP, - ServerRootCACertificate = ServerRootCACertificate - }; - - var newActiveDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.ActiveDirectoryId == Name); - if (newActiveDirectory != null) + var anfADConfig = anfAccount.ActiveDirectories?.FirstOrDefault(a => a.AdName == Name); + if (anfADConfig == null) { - newActiveDirectory.AdName = Name; - newActiveDirectory.Dns = string.Join(",", Dns); - newActiveDirectory.Domain = Domain; - newActiveDirectory.SmbServerName = SmbServerName; - newActiveDirectory.Username = Username; - newActiveDirectory.Password = Password.ConvertToString(); - newActiveDirectory.Site = Site; - newActiveDirectory.OrganizationalUnit = OrganizationalUnit; - newActiveDirectory.BackupOperators = BackupOperators; - newActiveDirectory.KdcIP = KdcIP; - newActiveDirectory.ServerRootCACertificate = ServerRootCACertificate; + throw new ArgumentException($"ActiveDirectory configuration with name '{this.Name}' in account '{this.AccountName}' is not found. Please use New-AzNetAppFilesActiveDirectory to Create a new ActiveDirectory configuration."); } else { - anfAccount.ActiveDirectories.Add(activeDirectory); + string dnsStr = null; + if (Dns != null) + { + dnsStr = string.Join(",", Dns); + } + + anfADConfig.AdName = Name ?? anfADConfig.AdName; + anfADConfig.Dns = dnsStr ?? anfADConfig.Dns; + anfADConfig.Domain = Domain ?? anfADConfig.Domain; + anfADConfig.SmbServerName = SmbServerName ?? anfADConfig.SmbServerName; + anfADConfig.Username = Username ?? anfADConfig.Username; + anfADConfig.Password = Password.ConvertToString(); + anfADConfig.Site = Site ?? anfADConfig.Site; + anfADConfig.OrganizationalUnit = OrganizationalUnit ?? anfADConfig.Site; + anfADConfig.BackupOperators = BackupOperators ?? anfADConfig.BackupOperators; + anfADConfig.KdcIP = KdcIP ?? anfADConfig.KdcIP; + anfADConfig.ServerRootCACertificate = ServerRootCACertificate ?? anfADConfig.ServerRootCACertificate; } + var netAppAccountBody = new NetAppAccountPatch() { - Location = Location, - ActiveDirectories = anfAccount.ActiveDirectories, - Tags = tagPairs + ActiveDirectories = anfAccount.ActiveDirectories }; var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.AdName == Name); diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md index 23b950bb475a..3ecb06f1c291 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzNetAppFilesActiveDirectory ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets details of an Azure NetApp Files (ANF) Active Directory configuration. ## SYNTAX @@ -25,16 +25,16 @@ Get-AzNetAppFilesActiveDirectory [-Name ] -AccountObject {{ Add example code here }} +PS C:\> Get-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyADConfigName" ``` -{{ Add example description here }} +This command gets the AD configuration named MyADConfigName for the Azure NetApp Files (ANF) account named MyAnfAccount. ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md index c36be6821fbe..287b46bb2aaf 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzNetAppFilesBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets details of an Azure NetApp Files (ANF) Backup. ## SYNTAX @@ -31,16 +31,16 @@ Get-AzNetAppFilesBackup [-Name ] -VolumeObject ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Get-AzNetAppFilesBackup** cmdlet gets details of an ANF backup. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Get-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyBackup" ``` -{{ Add example description here }} +This command gets the backcup named "MyAnfAccount" from the volume named "MyVolume". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md index 003a6c8bc0a4..066b3112d8ec 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzNetAppFilesBackupPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets details of an Azure NetApp Files (ANF) Backup Policy. ## SYNTAX @@ -31,16 +31,16 @@ Get-AzNetAppFilesBackupPolicy [-Name ] -AccountObject {{ Add example code here }} +PS C:\> Get-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyBackupPolicy" ``` -{{ Add example description here }} +This command gets the backup policy named "MyBackupPolicy" for account "MyAnfAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md index 7d64416baf8f..273a89a4fd73 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md @@ -47,7 +47,10 @@ Type : Microsoft.NetApp/netAppAccounts/capacityPools Tags : PoolId : a3a53a09-fd70-37ab-39dc-392a04cba525 Size : 4398046511104 -ServiceLevel : Premium +ServiceLevel : Premium +TotalThroughputMibps: 262.144 +UtilizedThroughputMibps: 164.221 +QosType : Auto ProvisioningState : Succeeded ``` diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md index 16d607811069..2bb65efb2fe0 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzNetAppFilesSnapshotPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets details of an Azure NetApp Files (ANF) snapshot policy. ## SYNTAX @@ -31,16 +31,16 @@ Get-AzNetAppFilesSnapshotPolicy -AccountObject ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Get-AzNetAppFilesSnapshotPolicy** cmdlet gets details of an ANF snapshot policy. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MySnapshotPolicy" ``` -{{ Add example description here }} +This command gets the backup policy named "MyBackupPolicy" for account "MyAnfAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md index 8e0f776335fc..6ffcf61f84cc 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzNetAppFilesVault ## SYNOPSIS -{{ Fill in the Synopsis }} +Gets list of Azure NetApp Files (ANF) Accounts backup vaults. ## SYNTAX @@ -30,16 +30,16 @@ Get-AzNetAppFilesVault -ResourceId [-DefaultProfile {{ Add example code here }} +PS C:\> Get-AzNetAppFilesVault -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" ``` -{{ Add example description here }} +This command gets a list of the backup vaults for Azure NetappFiles (ANF) account "MyAnfAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md index 9e19a9ad37a7..30516183eaff 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzNetAppFilesActiveDirectory ## SYNOPSIS -{{ Fill in the Synopsis }} +Creates a new Azure NetApp Files (ANF) active directory configuration. ## SYNTAX @@ -31,16 +31,17 @@ New-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain {{ Add example code here }} +PS C:\> $pwd_secure_string = Read-Host "Enter a Password" -AsSecureString +PS C:\> New-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -Name "MyADName" -Username "AdUserName -Password $pwd_secure_string -Domain "AdDomain" -Dns "192.0.2.2" -SmbServerName "AdSmbServerName" ``` -{{ Add example description here }} +This command gets the AD password from promt into a secreates the new Active Directory configuration for the ANF account "MyAnfAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md index 6332da2528f3..007e7eafc3b3 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzNetAppFilesBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Creates a new Azure NetApp Files (ANF) backup. ## SYNTAX @@ -26,16 +26,16 @@ New-AzNetAppFilesBackup -Name -Label -VolumeObject {{ Add example code here }} +PS C:\> New-AzNetAppFilesBackup -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyVolumeBackup" -Label "ALabel" ``` -{{ Add example description here }} +This command creates the new ANF backup for volume named account "MyVolume". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md index b09099be7854..da9664d68948 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzNetAppFilesBackupPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Creates a new Azure NetApp Files (ANF) backup policy for an ANF account. ## SYNTAX @@ -29,16 +29,16 @@ New-AzNetAppFilesBackupPolicy -Name [-Enabled] [-DailyBackupsToKeep {{ Add example code here }} +PS C:\> New-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -Name "MyBackupPolicy" -Tag @{"tag1" = "tagValue"} -Enabled -DailyBackupsToKeep 1 -WeeklyBackupsToKeep 2 -MonthlyBackupsToKeep 2 -YearlyBackupsToKeep 1 ``` -{{ Add example description here }} +This command creates the new ANF backup policy for ANF account named account "MyAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md index e7a0d0e11fd6..90fa78497945 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md @@ -33,7 +33,7 @@ The **New-AzNetAppFilesPool** cmdlet creates an ANF pool. ### Example 1: Create an ANF pool ``` -PS C:\>New-AzNetAppFilesPool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyAnfPool" -l "westus2" -PoolSize 4398046511104 -ServiceLevel "Premium" +PS C:\>New-AzNetAppFilesPool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyAnfPool" -l "westus2" -PoolSize 4398046511104 -ServiceLevel "Premium" -QosType "Auto" Output: @@ -45,6 +45,9 @@ Tags : PoolId : a3a53a09-fd70-37ab-39dc-392a04cba525 Size : 4398046511104 ServiceLevel : Premium +TotalThroughputMibps: 262.144 +UtilizedThroughputMibps: 164.221 +QosType : Auto ProvisioningState : Succeeded ``` diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md index 70d518dcaff1..f3fa130ff38e 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzNetAppFilesSnapshotPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Creates a new Azure NetApp Files (ANF) snapshot policy for an ANF account. ## SYNTAX @@ -30,16 +30,37 @@ New-AzNetAppFilesSnapshotPolicy -Name [-Enabled] -HourlySchedule {{ Add example code here }} + $hourlySchedule = @{ + Minute = 2 + SnapshotsToKeep = 6 + } + $dailySchedule = @{ + Hour = 1 + Minute = 2 + SnapshotsToKeep = 6 + } + $weeklySchedule = @{ + Minute = 2 + Hour = 1 + Day = "Sunday,Monday" + SnapshotsToKeep = 6 + } + $monthlySchedule = @{ + Minute = 2 + Hour = 1 + DaysOfMonth = "2,11,21" + SnapshotsToKeep = 6 + } +PS C:\> New-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -Name "MySnapshotPolicy" -Enabled -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule ``` -{{ Add example description here }} +This command creates the new ANF snapshot policy for ANF account named account "MyAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md index 57836b4a285f..fd0ed0d6e8ad 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzNetAppFilesActiveDirectory ## SYNOPSIS -{{ Fill in the Synopsis }} +Deletes an Azure NetApp Files (ANF) active directory configuration. ## SYNTAX @@ -25,16 +25,16 @@ Remove-AzNetAppFilesActiveDirectory [-Name ] -AccountObject {{ Add example code here }} +PS C:\> Remove-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyADName" ``` -{{ Add example description here }} +This command deletes the new ANF active directory configuration with a the name "MyADName". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md index 641f0c8b871c..acad995ec878 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzNetAppFilesBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Deletes an Azure NetApp Files (ANF) backup. ## SYNTAX @@ -38,16 +38,16 @@ Remove-AzNetAppFilesBackup [-Name ] -InputObject [ ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Remove-AzNetAppFilesBackup** cmdlet deletes an ANF account. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Remove-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyBackup" ``` -{{ Add example description here }} +This command deletes the new ANF backup with a the name "MyBackup" for volume "MyVolume". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md index 0ca65a53a8af..f8157717315c 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzNetAppFilesBackupPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Deletes an Azure NetApp Files (ANF) backup policy. ## SYNTAX @@ -37,16 +37,16 @@ Remove-AzNetAppFilesBackupPolicy -Name -InputObject {{ Add example code here }} +PS C:\> Remove-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyBackupPolicy" ``` -{{ Add example description here }} +This command deletes the new ANF backup policy with a the name "MyBackupPolicy" for account "MyAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md index 1e2bd4772a88..4e225bba5a91 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzNetAppFilesSnapshotPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Deletes an Azure NetApp Files (ANF) snapshot policy. ## SYNTAX @@ -37,16 +37,16 @@ Remove-AzNetAppFilesSnapshotPolicy -InputObject [- ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Remove-AzNetAppFilesSnapshotPolicy** cmdlet deletes an ANF snapshot policy. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MySnapshotPolicy" ``` -{{ Add example description here }} +This command deletes the new ANF backup policy with a the name "MyBackupPolicy" for account "MyAccount". ## PARAMETERS diff --git a/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md deleted file mode 100644 index 64b2604155a6..000000000000 --- a/src/NetAppFiles/NetAppFiles/help/Revert-AzNetAppFilesVolume.md +++ /dev/null @@ -1,253 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml -Module Name: Az.NetAppFiles -online version: -schema: 2.0.0 ---- - -# Revert-AzNetAppFilesVolume - -## SYNOPSIS -Revert a volume to one of its snapshots - -## SYNTAX - -### ByFieldsParameterSet (Default) -``` -Revert-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name - [-SnapshotId ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] -``` - -### ByParentObjectParameterSet -``` -Revert-AzNetAppFilesVolume -Name -PoolObject [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### ByResourceIdParameterSet -``` -Revert-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] -``` - -### ByObjectParameterSet -``` -Revert-AzNetAppFilesVolume -InputObject [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -{{ Fill in the Description }} - -## EXAMPLES - -### Example 1 -```powershell -PS C:\> {{ Add example code here }} -``` - -{{ Add example description here }} - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InputObject -The volume object to remove - -```yaml -Type: PSNetAppFilesVolume -Parameter Sets: ByObjectParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The name of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet -Aliases: VolumeName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PassThru -Return whether the specified volume was successfully reverted - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolObject -The pool object containing the volume to remove - -```yaml -Type: PSNetAppFilesPool -Parameter Sets: ByParentObjectParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF volume - -```yaml -Type: String -Parameter Sets: ByResourceIdParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -SnapshotId -SnapshotId of the snapshot. -UUID v4 used to identify the Snapshot - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: 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: 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 - -### System.String - -### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool - -### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume - -## OUTPUTS - -### System.Boolean - -## NOTES - -## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md index 3560f69d54ee..aed9a3e84602 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzNetAppFilesActiveDirectory ## SYNOPSIS -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) active directory configuration to the optional modifiers provided. ## SYNTAX @@ -31,16 +31,16 @@ Update-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain {{ Add example code here }} +PS C:\> Update-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyADName" -Username $adUsername ``` -{{ Add example description here }} +This command performs an update on the given active directory configuration modifying the username to that provided. ## PARAMETERS diff --git a/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs b/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs index efdd5aaf4b3f..bb7e14734972 100644 --- a/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs +++ b/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs @@ -589,7 +589,7 @@ public virtual Collection RunPowerShellTest(params string[] scripts) finally { powershell.Streams.Error.Clear(); - } + } } } From 422b6055e2fccafe8f578dbec50a28f594068ea8 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 1 Nov 2020 15:13:30 +0000 Subject: [PATCH 05/22] Update docs --- .../NetAppFiles/help/Az.NetAppFiles.md | 20 ++++---- .../help/Get-AzNetAppFilesVault.md | 2 +- .../help/New-AzNetAppFilesActiveDirectory.md | 25 ++-------- .../help/New-AzNetAppFilesSnapshotPolicy.md | 2 +- .../Update-AzNetAppFilesActiveDirectory.md | 50 ++++--------------- 5 files changed, 27 insertions(+), 72 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index 1a3bc1f0aa9c..d2d25e85fcb6 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -36,10 +36,10 @@ Get the status of the replication Gets details of an Azure NetApp Files (ANF) snapshot. ### [Get-AzNetAppFilesSnapshotPolicy](Get-AzNetAppFilesSnapshotPolicy.md) -Gets details of an Azure NetApp Files (ANF) Snapshot Policy. +Gets details of an Azure NetApp Files (ANF) snapshot policy. ### [Get-AzNetAppFilesVault](Get-AzNetAppFilesVault.md) -Gets details of an Azure NetApp Files (ANF) Backup Vault. +Gets list of Azure NetApp Files (ANF) Accounts backup vaults. ### [Get-AzNetAppFilesVolume](Get-AzNetAppFilesVolume.md) Gets details of an Azure NetApp Files (ANF) volume. @@ -48,13 +48,13 @@ Gets details of an Azure NetApp Files (ANF) volume. Creates a new Azure NetApp Files (ANF) account. ### [New-AzNetAppFilesActiveDirectory](New-AzNetAppFilesActiveDirectory.md) -Creates a new Azure NetApp Files (ANF) Active Directory configuration. +Creates a new Azure NetApp Files (ANF) active directory configuration. ### [New-AzNetAppFilesBackup](New-AzNetAppFilesBackup.md) -Creates a new Azure NetApp Files (ANF) Backup. +Creates a new Azure NetApp Files (ANF) backup. ### [New-AzNetAppFilesBackupPolicy](New-AzNetAppFilesBackupPolicy.md) -Creates a new Azure NetApp Files (ANF) Backup Policy. +Creates a new Azure NetApp Files (ANF) backup policy for an ANF account. ### [New-AzNetAppFilesPool](New-AzNetAppFilesPool.md) Creates a new Azure NetApp Files (ANF) pool. @@ -63,7 +63,7 @@ Creates a new Azure NetApp Files (ANF) pool. Creates a new Azure NetApp Files (ANF) snapshot. ### [New-AzNetAppFilesSnapshotPolicy](New-AzNetAppFilesSnapshotPolicy.md) -Creates a new Azure NetApp Files (ANF) snapshot policy. +Creates a new Azure NetApp Files (ANF) snapshot policy for an ANF account. ### [New-AzNetAppFilesVolume](New-AzNetAppFilesVolume.md) Creates a new Azure NetApp Files (ANF) volume. @@ -114,19 +114,19 @@ Suspend/break the replication connection on the destination volume Updates an Azure NetApp Files (ANF) account according to the optional modifiers provided. ### [Update-AzNetAppFilesActiveDirectory](Update-AzNetAppFilesActiveDirectory.md) -Updates an Azure NetApp Files (ANF) active directory configuration according to the optional modifiers provided. +Updates an Azure NetApp Files (ANF) active directory configuration to the optional modifiers provided. ### [Update-AzNetAppFilesBackup](Update-AzNetAppFilesBackup.md) -Updates an Azure NetApp Files (ANF) backup according to the optional modifiers provided. +{{ Fill in the Synopsis }} ### [Update-AzNetAppFilesBackupPolicy](Update-AzNetAppFilesBackupPolicy.md) -Updates an Azure NetApp Files (ANF) backup policy according to the optional modifiers provided. +{{ Fill in the Synopsis }} ### [Update-AzNetAppFilesPool](Update-AzNetAppFilesPool.md) Updates an Azure NetApp Files (ANF) pool according to the optional modifiers provided. ### [Update-AzNetAppFilesSnapshotPolicy](Update-AzNetAppFilesSnapshotPolicy.md) -Updates an Azure NetApp Files (ANF) snapshot policy according to the optional modifiers provided. +{{ Fill in the Synopsis }} ### [Update-AzNetAppFilesVolume](Update-AzNetAppFilesVolume.md) Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md index 6ffcf61f84cc..9797aa747fe6 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md @@ -36,7 +36,7 @@ The **Get-AzNetAppFilesVault** cmdlet gets list of an ANF accounts backup vaults ### Example 1 ```powershell -PS C:\> Get-AzNetAppFilesVault -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" +PS C:\> Get-AzNetAppFilesVault -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" ``` This command gets a list of the backup vaults for Azure NetappFiles (ANF) account "MyAnfAccount". diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md index 30516183eaff..aeaf6c548edd 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -14,11 +14,11 @@ Creates a new Azure NetApp Files (ANF) active directory configuration. ### ByFieldsParameterSet (Default) ``` -New-AzNetAppFilesActiveDirectory -ResourceGroupName -Location -AccountName - -Name [-Dns ] -Domain [-Site ] -SmbServerName - [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] - [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +New-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name + [-Dns ] -Domain [-Site ] -SmbServerName [-Username ] + [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] + [-ServerRootCACertificate ] [-AdName ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ByParentObjectParameterSet @@ -168,21 +168,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Location -The location of the resource - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Name The name of the ANF Active Directory diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md index f3fa130ff38e..0b6caf9516f6 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md @@ -36,7 +36,7 @@ The **New-AzNetAppFilesActiveDirectory** cmdlet creates a new snapshot policy fo ### Example 1 ```powershell - $hourlySchedule = @{ +$hourlySchedule = @{ Minute = 2 SnapshotsToKeep = 6 } diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md index aed9a3e84602..779e4321cd1f 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -14,20 +14,20 @@ Updates an Azure NetApp Files (ANF) active directory configuration to the option ### ByFieldsParameterSet (Default) ``` -Update-AzNetAppFilesActiveDirectory -ResourceGroupName -Location -AccountName - -Name [-Dns ] -Domain -Site -SmbServerName [-Username ] +Update-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name + [-Dns ] [-Domain ] [-Site ] [-SmbServerName ] [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] - [-ServerRootCACertificate ] [-AdName ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ServerRootCACertificate ] [-AdName ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Update-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain -Site - -SmbServerName [-Username ] [-Password ] [-OrganizationalUnit ] +Update-AzNetAppFilesActiveDirectory -Name [-Dns ] [-Domain ] [-Site ] + [-SmbServerName ] [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] - [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -144,7 +144,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -167,21 +167,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Location -The location of the resource - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Name The name of the ANF Active Directory @@ -265,7 +250,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -281,21 +266,6 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Tag -A hashtable array which represents resource tags - -```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) -Aliases: Tags - Required: False Position: Named Default value: None From 971a068bccab1a27c521c4305601c188d052f57f Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 1 Nov 2020 15:47:22 +0000 Subject: [PATCH 06/22] Revert c# newer feature not in pipeline --- .../NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs | 2 +- src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs index c8da2c78b3c1..3b18c4cafc70 100644 --- a/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/NewNetAppFilesBackupPolicy.cs @@ -137,7 +137,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfBackupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Create(ResourceGroupName, AccountName, backupPolicyName: Name, backupPolicyBody); + var anfBackupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Create(ResourceGroupName, AccountName, backupPolicyName: Name, body: backupPolicyBody); WriteObject(anfBackupPolicy.ConvertToPs()); } } diff --git a/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs index 4370105c41d1..5ea42d8f227f 100644 --- a/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs +++ b/src/NetAppFiles/NetAppFiles/Backups/NewNetAppFilesBackup.cs @@ -128,7 +128,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfBackupPolicy = AzureNetAppFilesManagementClient.Backups.Create(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, backupBody); + var anfBackupPolicy = AzureNetAppFilesManagementClient.Backups.Create(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, body: backupBody); WriteObject(anfBackupPolicy.ConvertToPs()); } } From 5c989666774cb1da6387539aba62c908c1b098be Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 1 Nov 2020 16:01:44 +0000 Subject: [PATCH 07/22] Fix missing language feature ci/cd issue in pipeline --- .../NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs | 2 +- src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs index 68bdcf04272f..f3004223e82f 100644 --- a/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs @@ -162,7 +162,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfBakcupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Update(ResourceGroupName, AccountName, backupPolicyName: Name, backupPolicyPatch); + var anfBakcupPolicy = AzureNetAppFilesManagementClient.BackupPolicies.Update(ResourceGroupName, AccountName, backupPolicyName: Name, body: backupPolicyPatch); WriteObject(anfBakcupPolicy.ConvertToPs()); } } diff --git a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs index 5fa2ef71fc24..dbc82e6a66a3 100644 --- a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs +++ b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs @@ -180,7 +180,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfBakcupPolicy = AzureNetAppFilesManagementClient.Backups.Update(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, backupPatch); + var anfBakcupPolicy = AzureNetAppFilesManagementClient.Backups.Update(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, body: backupPatch); WriteObject(anfBakcupPolicy.ConvertToPs()); } } From dcfa587c00edcea860889d27ea8c9951db2492fc Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Mon, 2 Nov 2020 14:48:00 +0000 Subject: [PATCH 08/22] Update tests and help --- .../ScenarioTests/BackupPolicyTests.ps1 | 6 +- .../ScenarioTests/BackupTests.ps1 | 6 ++ .../ScenarioTests/SnapshotPolicyTests.ps1 | 21 ++++-- .../NewNetAppFilesActiveDirectory.cs | 2 +- .../RemoveNetAppFilesActiveDirectory.cs | 11 +++- .../UpdateNetAppFilesActiveDirectory.cs | 9 ++- .../RemoveNetAppFilesBackupPolicy.cs | 8 ++- .../UpdateNetAppFilesBackupPolicy.cs | 7 +- .../Backups/RemoveNetAppFilesBackup.cs | 9 ++- .../Backups/UpdateNetAppFilesBackup.cs | 7 +- .../Helpers/SnapshotPolicyExtensions.cs | 2 +- .../RemoveNetAppFilesSnapshotPolicy.cs | 4 ++ .../UpdateNetAppFilesSnapshotPolicy.cs | 17 +++-- .../NetAppFiles/help/Az.NetAppFiles.md | 6 +- .../help/New-AzNetAppFilesActiveDirectory.md | 2 +- .../Remove-AzNetAppFilesActiveDirectory.md | 8 +-- .../help/Remove-AzNetAppFilesBackup.md | 18 ++--- .../help/Remove-AzNetAppFilesBackupPolicy.md | 8 +-- .../Remove-AzNetAppFilesSnapshotPolicy.md | 14 ++-- .../Update-AzNetAppFilesActiveDirectory.md | 2 +- .../help/Update-AzNetAppFilesBackup.md | 27 ++++---- .../help/Update-AzNetAppFilesBackupPolicy.md | 26 ++++---- .../Update-AzNetAppFilesSnapshotPolicy.md | 65 ++++++++++--------- 23 files changed, 171 insertions(+), 114 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 index 9486ab22f2f0..42fdc371f5c5 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 @@ -28,7 +28,7 @@ function Test-BackupPolicyCrud $weeklyBackupsToKeep = 3 $monthlyBackupsToKeep = 2 $yearlyBackupsToKeep = 1 - $backupLocation = "eastus2euap" + $backupLocation = "southcentralus" try { @@ -60,6 +60,10 @@ function Test-BackupPolicyCrud Assert-AreEqual $monthlyBackupsToKeep $getRetrievedBackupPolicy.MonthlyBackupsToKeep #returns 0 atm service side issue #Assert-AreEqual $yearlyBackupsToKeep $retrievedBackupPolicy.YearlyBackupsToKeep + + $updatedDailyBackupsToKeep = 2 + $updatedBackupPolicy = Update-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $backupPolicyName1 -DailyBackupsToKeep $updatedDailyBackupsToKeep + Assert-AreEqual $updatedDailyBackupsToKeep $updatedBackupPolicy.DailyBackupsToKeep #create second BackupPolicy $secondBackupPolicy = New-AzNetAppFilesBackupPolicy -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -Name $backupPolicyName2 -Tag @{$newTagName = $newTagValue} -Enabled -DailyBackupsToKeep $dailyBackupsToKeep -WeeklyBackupsToKeep $weeklyBackupsToKeep -MonthlyBackupsToKeep $monthlyBackupsToKeep -YearlyBackupsToKeep $yearlyBackupsToKeep diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 index e18ed7b3114a..f4567cc197f4 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 @@ -30,6 +30,7 @@ function Test-BackupCrud $resourceLocation = Get-ProviderLocation "Microsoft.NetApp" $backupLocation = "southcentralus" $label = "powershellBackupTest" + $labelUpdate = "powershellBackupTestUpdate" $label2 = "powershellBackupTest2" #voll props $volName1 = Get-ResourceName @@ -120,6 +121,11 @@ function Test-BackupCrud # service side issue does not return label enable when fixed (ANF-8057) # Assert-AreEqual $label $getRetrievedBackup.Label + # update and check a Backup by name and check again + $updateBackup = Update-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 -Label $labelUpdate + # service side issue does not return label enable when fixed (ANF-8057) + #Assert-AreEqual $labelUpdate $updateBackup.Label + #create second Backup $secondBackup = New-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -Location $backupLocation -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName2 -Label $label2 Assert-AreEqual "$accName1/$poolName/$volName1/$backupName2" $secondBackup.Name diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 index 6bad0bfc6dc6..0983f35c925f 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 @@ -59,7 +59,7 @@ function Test-SnapshotPolicyCrud # create and check SnapshotPolicy $retrievedSnapshotPolicy = New-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $snapshotPolicyName1 -Enabled -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule - Assert-AreEqual "$accName/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name + Assert-AreEqual "$accName1/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name Assert-AreEqual $hourlySchedule["Minute"] $retrievedSnapshotPolicy.HourlySchedule.Minute Assert-AreEqual $dailySchedule["Hour"] $retrievedSnapshotPolicy.DailySchedule.Hour Assert-AreEqual $weeklySchedule["Day"] $retrievedSnapshotPolicy.WeeklySchedule.Day @@ -67,15 +67,22 @@ function Test-SnapshotPolicyCrud # get and check a SnapshotPolicy by name and check again $getRetrievedSnapshotPolicy = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 - Assert-AreEqual "$accName/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name + Assert-AreEqual "$accName1/$snapshotPolicyName1" $retrievedSnapshotPolicy.Name Assert-AreEqual $hourlySchedule["Minute"] $getRetrievedSnapshotPolicy.HourlySchedule.Minute Assert-AreEqual $dailySchedule["Hour"] $getRetrievedSnapshotPolicy.DailySchedule.Hour Assert-AreEqual $weeklySchedule["Day"] $getRetrievedSnapshotPolicy.WeeklySchedule.Day Assert-AreEqual $monthlySchedule["DaysOfMonth"] $getRetrievedSnapshotPolicy.MonthlySchedule.DaysOfMonth + $hourlySchedule2 = @{ + Minute = 1 + SnapshotsToKeep = 3 + } + $updatedSnapshotPolicy = Update-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $snapshotPolicyName1 -HourlySchedule $hourlySchedule2 + Assert-AreEqual $hourlySchedule2["Minute"] $updatedSnapshotPolicy.HourlySchedule.Minute + #create second SnapshotPolicy $secondSnapshotPolicy = New-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 -Name $snapshotPolicyName2 -Enabled -HourlySchedule $hourlySchedule -DailySchedule $dailySchedule -WeeklySchedule $weeklySchedule -MonthlySchedule $monthlySchedule - Assert-AreEqual "$accName/$snapshotPolicyName2" $secondSnapshotPolicy.Name + Assert-AreEqual "$accName1/$snapshotPolicyName2" $secondSnapshotPolicy.Name Assert-AreEqual $hourlySchedule["Minute"] $secondSnapshotPolicy.HourlySchedule.Minute Assert-AreEqual $dailySchedule["Hour"] $secondSnapshotPolicy.DailySchedule.Hour Assert-AreEqual $weeklySchedule["Day"] $secondSnapshotPolicy.WeeklySchedule.Day @@ -85,16 +92,16 @@ function Test-SnapshotPolicyCrud $retrievedSnapshotPolicyList = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 # check the names but the order does not appear to be guaranteed (perhaps because the names are randomly generated) Assert-AreEqual 2 $retrievedSnapshotPolicyList.Length - Assert-True {"$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[0].Name -or "$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[0].Name} - Assert-True {"$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[1].Name -or "$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[1].Name} + Assert-True {"$accName1/$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[0].Name -or "$accName1/$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[0].Name} + Assert-True {"$accName1/$snapshotPolicyName1" -eq $retrievedSnapshotPolicyList[1].Name -or "$accName1/$snapshotPolicyName2" -eq $retrievedSnapshotPolicyList[1].Name} # get and check a SnapshotPolicy by name $getRetrievedSnapshotPolicy = Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $snapshotPolicyName1 - Assert-AreEqual "$snapshotPolicyName1" $getRetrievedSnapshotPolicy.Name + Assert-AreEqual "$accName1/$snapshotPolicyName1" $getRetrievedSnapshotPolicy.Name # get and check the SnapshotPolicy again using the resource id just obtained $getRetrievedSnapshotPolicyById = Get-AzNetAppFilesSnapshotPolicy -ResourceId $retrievedSnapshotPolicy.Id - Assert-AreEqual "$snapshotPolicyName1" $getRetrievedSnapshotPolicyById.Name + Assert-AreEqual "$accName1/$snapshotPolicyName1" $getRetrievedSnapshotPolicyById.Name # delete one account retrieved by id and one by name and check removed Remove-AzNetAppFilesSnapshotPolicy -ResourceId $retrievedSnapshotPolicy.Id diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs index f34b4728680c..f1a016a827a4 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs @@ -61,7 +61,7 @@ public class NewAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase Mandatory = true, HelpMessage = "The name of the ANF Active Directory")] [ValidateNotNullOrEmpty] - [Alias("BackupPolicyName")] + [Alias("ActiveDirectoryName")] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activeDirectory", nameof(ResourceGroupName), diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs index d84192097af8..087bbe9810c7 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs @@ -52,10 +52,15 @@ public class RemoveAzureRmNetAppFilesActiveDirectory: AzureNetAppFilesCmdletBase public string AccountName { get; set; } [Parameter( - Mandatory = false, - HelpMessage = "The name of the ANF Active Directory")] + Mandatory = true, + HelpMessage = "The name of the ANF active directory", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF active directory", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] - [Alias("BackupPolicyName")] + [Alias("ActiveDirectoryName")] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activeDirectory", nameof(ResourceGroupName), diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs index ef0f75bb8018..89410729dd98 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs @@ -58,9 +58,14 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF Active Directory")] + HelpMessage = "The name of the ANF active directory", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF active directory", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] - [Alias("BackupPolicyName")] + [Alias("ActiveDirectoryName")] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activeDirectory", nameof(ResourceGroupName), diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs index 586705b0cf91..ddc14e760aff 100644 --- a/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs @@ -53,7 +53,12 @@ public class RemoveAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF backup policy")] + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("BackupPolicyName")] [ResourceNameCompleter( @@ -62,7 +67,6 @@ public class RemoveAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase nameof(AccountName))] public string Name { get; set; } - [Parameter( ParameterSetName = ParentObjectParameterSet, Mandatory = true, diff --git a/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs index f3004223e82f..3a8edc9aab44 100644 --- a/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs @@ -61,7 +61,12 @@ public class UpdateAzureRmNetAppFilesBackupPolicy : AzureNetAppFilesCmdletBase [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF backup policy")] + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("BackupPolicyName")] [ResourceNameCompleter( diff --git a/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs index 61126b96f763..9a6947e1eb8e 100644 --- a/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs +++ b/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs @@ -75,8 +75,13 @@ public class RemoveAzureRmNetAppFilesBackup : AzureNetAppFilesCmdletBase public string VolumeName { get; set; } [Parameter( - Mandatory = false, - HelpMessage = "The name of the ANF backup")] + Mandatory = true, + HelpMessage = "The name of the ANF backup", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("BackupName")] [ResourceNameCompleter( diff --git a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs index dbc82e6a66a3..2e3f57c52e6e 100644 --- a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs +++ b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs @@ -62,7 +62,12 @@ public class UpdateAzureRmNetAppFilesBackup : AzureNetAppFilesCmdletBase [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF backup policy")] + HelpMessage = "The name of the ANF backup", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("BackupPolicyName")] [ResourceNameCompleter( diff --git a/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs index 469f774f8956..a27c60d9ec67 100644 --- a/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs +++ b/src/NetAppFiles/NetAppFiles/Helpers/SnapshotPolicyExtensions.cs @@ -30,7 +30,7 @@ public static PSNetAppFilesSnapshotPolicy ConvertToPs(this Management.NetApp.Mod ResourceGroupName = new ResourceIdentifier(snapshotPolicy.Id).ResourceGroupName, Location = snapshotPolicy.Location, Id = snapshotPolicy.Id, - Name = snapshotPolicy.Name1, + Name = snapshotPolicy.Name, Type = snapshotPolicy.Type, Tags = snapshotPolicy.Tags, ProvisioningState = snapshotPolicy.ProvisioningState, diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs index 2f5708bf9036..ad7a842f3ca0 100644 --- a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.cs @@ -55,6 +55,10 @@ public class RemoveAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase Mandatory = true, HelpMessage = "The name of the ANF snapshot policy", ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("SnapshotPolicyName")] [ResourceNameCompleter( diff --git a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs index 85baae9a8300..654fe8cc3ee4 100644 --- a/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs @@ -61,7 +61,12 @@ public class UpdateAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF snapshot policy")] + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = ParentObjectParameterSet)] [ValidateNotNullOrEmpty] [Alias("SnapshotPolicyName")] [ResourceNameCompleter( @@ -71,31 +76,31 @@ public class UpdateAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase public string Name { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "The property to decide policy is enabled or not")] [ValidateNotNullOrEmpty] public bool? Enabled { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "A hashtable array which represents the hourly Schedule")] [ValidateNotNullOrEmpty] public PSNetAppFilesHourlySchedule HourlySchedule { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "A hashtable array which represents the daily Schedule")] [ValidateNotNullOrEmpty] public PSNetAppFilesDailySchedule DailySchedule { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "A hashtable array which represents the montly Schedule")] [ValidateNotNullOrEmpty] public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "A hashtable array which represents the montly Schedule")] [ValidateNotNullOrEmpty] public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; } diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index d2d25e85fcb6..54a7eca3ba00 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -117,16 +117,16 @@ Updates an Azure NetApp Files (ANF) account according to the optional modifiers Updates an Azure NetApp Files (ANF) active directory configuration to the optional modifiers provided. ### [Update-AzNetAppFilesBackup](Update-AzNetAppFilesBackup.md) -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) backup to the optional modifiers provided. ### [Update-AzNetAppFilesBackupPolicy](Update-AzNetAppFilesBackupPolicy.md) -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) backup policy to the optional modifiers provided. ### [Update-AzNetAppFilesPool](Update-AzNetAppFilesPool.md) Updates an Azure NetApp Files (ANF) pool according to the optional modifiers provided. ### [Update-AzNetAppFilesSnapshotPolicy](Update-AzNetAppFilesSnapshotPolicy.md) -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) snapshot policy to the optional modifiers provided. ### [Update-AzNetAppFilesVolume](Update-AzNetAppFilesVolume.md) Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md index aeaf6c548edd..1b13e953f38a 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -174,7 +174,7 @@ The name of the ANF Active Directory ```yaml Type: System.String Parameter Sets: (All) -Aliases: BackupPolicyName +Aliases: ActiveDirectoryName Required: True Position: Named diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md index fd0ed0d6e8ad..4ca6650503ba 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -14,13 +14,13 @@ Deletes an Azure NetApp Files (ANF) active directory configuration. ### ByFieldsParameterSet (Default) ``` -Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Name ] +Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Remove-AzNetAppFilesActiveDirectory [-Name ] -AccountObject [-PassThru] +Remove-AzNetAppFilesActiveDirectory -Name -AccountObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -89,9 +89,9 @@ The name of the ANF Active Directory ```yaml Type: System.String Parameter Sets: (All) -Aliases: BackupPolicyName +Aliases: ActiveDirectoryName -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md index acad995ec878..c7a6da16cd56 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md @@ -15,25 +15,25 @@ Deletes an Azure NetApp Files (ANF) backup. ### ByFieldsParameterSet (Default) ``` Remove-AzNetAppFilesBackup -ResourceGroupName [-AccountName ] -PoolName - [-VolumeName ] [-Name ] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-VolumeName ] -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### ByResourceIdParameterSet +### ByParentObjectParameterSet ``` -Remove-AzNetAppFilesBackup [-Name ] -ResourceId [-PassThru] +Remove-AzNetAppFilesBackup -Name -VolumeObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### ByParentObjectParameterSet +### ByResourceIdParameterSet ``` -Remove-AzNetAppFilesBackup [-Name ] -VolumeObject [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzNetAppFilesBackup -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Remove-AzNetAppFilesBackup [-Name ] -InputObject [-PassThru] +Remove-AzNetAppFilesBackup -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -101,10 +101,10 @@ The name of the ANF backup ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: BackupName -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md index f8157717315c..b78424f38f77 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md @@ -26,13 +26,13 @@ Remove-AzNetAppFilesBackupPolicy -Name -AccountObject -ResourceId [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzNetAppFilesBackupPolicy -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Remove-AzNetAppFilesBackupPolicy -Name -InputObject [-PassThru] +Remove-AzNetAppFilesBackupPolicy -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -115,7 +115,7 @@ The name of the ANF backup policy ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: BackupPolicyName Required: True diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md index 4e225bba5a91..81e4aaa180b3 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md @@ -18,16 +18,16 @@ Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName -AccountName ] [-WhatIf] [-Confirm] [] ``` -### ByResourceIdParameterSet +### ByParentObjectParameterSet ``` -Remove-AzNetAppFilesSnapshotPolicy -ResourceId [-PassThru] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Remove-AzNetAppFilesSnapshotPolicy -Name -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### ByParentObjectParameterSet +### ByResourceIdParameterSet ``` -Remove-AzNetAppFilesSnapshotPolicy -AccountObject [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzNetAppFilesSnapshotPolicy -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet @@ -115,7 +115,7 @@ The name of the ANF snapshot policy ```yaml Type: System.String -Parameter Sets: ByFieldsParameterSet +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: SnapshotPolicyName Required: True diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md index 779e4321cd1f..03c94e0ebf2e 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -173,7 +173,7 @@ The name of the ANF Active Directory ```yaml Type: System.String Parameter Sets: (All) -Aliases: BackupPolicyName +Aliases: ActiveDirectoryName Required: True Position: Named diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md index f04e48c3a5c7..6d6fc65a3867 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzNetAppFilesBackup ## SYNOPSIS -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) backup to the optional modifiers provided. ## SYNTAX @@ -19,12 +19,6 @@ Update-AzNetAppFilesBackup -ResourceGroupName -Location -Accou [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### ByResourceIdParameterSet -``` -Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] -ResourceId - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - ### ByParentObjectParameterSet ``` Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] @@ -32,24 +26,29 @@ Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] [] ``` +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackup [-Label ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ### ByObjectParameterSet ``` -Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] - -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Update-AzNetAppFilesBackup [-Label ] [-Tag ] -InputObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Update-AzNetAppFilesBackup** cmdlet modifies an ANF backup. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Update-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName $accName1 -Name $backupPolicyObject -Label "updatedLabel" ``` -{{ Add example description here }} +This command performs an update on the given backup modifying the username to that provided. ## PARAMETERS @@ -133,7 +132,7 @@ The name of the ANF backup policy ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: BackupPolicyName Required: True diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md index d86c6c3467c0..97753dcbe3d6 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzNetAppFilesBackupPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) backup policy to the optional modifiers provided. ## SYNTAX @@ -20,13 +20,6 @@ Update-AzNetAppFilesBackupPolicy -ResourceGroupName -Location [-Confirm] [] ``` -### ByResourceIdParameterSet -``` -Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] - [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] -ResourceId - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - ### ByParentObjectParameterSet ``` Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] @@ -35,25 +28,32 @@ Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [- [] ``` +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackupPolicy [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ### ByObjectParameterSet ``` -Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] +Update-AzNetAppFilesBackupPolicy [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Update-AzNetAppFilesBackupPolicy** cmdlet modifies an ANF backup policy . ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Update-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyBackupPolicy" -DailyBackupsToKeep 2 ``` -{{ Add example description here }} +This command changes the ANF backup policy "MyBackupPolicy" to have the given DailyBackupsToKeep. ## PARAMETERS @@ -167,7 +167,7 @@ The name of the ANF backup policy ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: BackupPolicyName Required: True diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md index bb6fc4c2f00b..75e0dbbc6278 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md @@ -8,57 +8,60 @@ schema: 2.0.0 # Update-AzNetAppFilesSnapshotPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Updates an Azure NetApp Files (ANF) snapshot policy to the optional modifiers provided. ## SYNTAX ### ByFieldsParameterSet (Default) ``` Update-AzNetAppFilesSnapshotPolicy -ResourceGroupName -Location -AccountName - -Name -Enabled -HourlySchedule - -DailySchedule -WeeklySchedule - -MonthlySchedule [-Tag ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] -``` - -### ByResourceIdParameterSet -``` -Update-AzNetAppFilesSnapshotPolicy -Name -Enabled - -HourlySchedule -DailySchedule - -WeeklySchedule -MonthlySchedule - -ResourceId [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -Name [-Enabled ] [-HourlySchedule ] + [-DailySchedule ] [-WeeklySchedule ] + [-MonthlySchedule ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Update-AzNetAppFilesSnapshotPolicy -Name -Enabled - -HourlySchedule -DailySchedule - -WeeklySchedule -MonthlySchedule +Update-AzNetAppFilesSnapshotPolicy -Name [-Enabled ] + [-HourlySchedule ] [-DailySchedule ] + [-WeeklySchedule ] [-MonthlySchedule ] [-Tag ] -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesSnapshotPolicy [-Enabled ] [-HourlySchedule ] + [-DailySchedule ] [-WeeklySchedule ] + [-MonthlySchedule ] -ResourceId [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ### ByObjectParameterSet ``` -Update-AzNetAppFilesSnapshotPolicy -Name -Enabled - -HourlySchedule -DailySchedule - -WeeklySchedule -MonthlySchedule - [-Tag ] -InputObject [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Update-AzNetAppFilesSnapshotPolicy [-Enabled ] [-HourlySchedule ] + [-DailySchedule ] [-WeeklySchedule ] + [-MonthlySchedule ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Update-AzNetAppFilesSnapshotPolicy** cmdlet modifies an ANF snapshot policy. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +$hourlySchedule = @{ + Minute = 1 + SnapshotsToKeep = 3 + } +PS C:\> Update-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MySnapshotPolicy" -HourlySchedule $hourlySchedule ``` -{{ Add example description here }} +This command changes the ANF backup policy "MySnapshotPolicy" to have the given HourlySchedule. ## PARAMETERS @@ -100,7 +103,7 @@ Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesDailySchedule Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -130,7 +133,7 @@ Type: System.Nullable`1[System.Boolean] Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -145,7 +148,7 @@ Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesHourlySchedule Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -190,7 +193,7 @@ Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesMonthlySchedule Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -202,7 +205,7 @@ The name of the ANF snapshot policy ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: SnapshotPolicyName Required: True @@ -265,7 +268,7 @@ Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesWeeklySchedule Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False From 9d8e82c6ea83722f2aecc5266049bb3600cae43d Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Mon, 2 Nov 2020 15:35:19 +0000 Subject: [PATCH 09/22] Add missing online link --- .../NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md | 2 +- src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md | 2 +- .../NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md | 2 +- .../NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md | 2 +- src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md | 2 +- .../NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md | 2 +- src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md | 2 +- .../NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md | 2 +- .../NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md | 2 +- .../NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md | 2 +- .../NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md | 2 +- src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md | 2 +- .../NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md | 2 +- .../NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md | 2 +- .../NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md | 2 +- src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md | 2 +- .../NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md | 2 +- .../NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md index 3ecb06f1c291..c71818875a50 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesactivedirectory schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md index 287b46bb2aaf..27582423a134 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesbackup schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md index 066b3112d8ec..ca29ad55c948 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesbackuppolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md index 2bb65efb2fe0..fdbf390af7b7 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshotPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilessnapshotpolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md index 9797aa747fe6..09e7354e0e88 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVault.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesvault schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md index 1b13e953f38a..0dea9fd6ddeb 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilesactivedirectory schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md index 007e7eafc3b3..7d7a9ee7783e 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilesbackup schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md index da9664d68948..7a6e02d38a45 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilesbackuppolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md index 0b6caf9516f6..9e8dc6705c28 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilessnapshotpolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md index 5c0ac8369c68..d85424f27149 100644 --- a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesvolume +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/poolchange-aznetappfilesvolume schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md index 4ca6650503ba..9175d65d4d7f 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesactivedirectory schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md index c7a6da16cd56..675247fcc6b2 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesbackup schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md index b78424f38f77..f4e59decf9a3 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesbackuppolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md index 81e4aaa180b3..f5ac1607e9fc 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshotPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilessnapshotpolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md index 03c94e0ebf2e..3ae63e543284 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/update-aznetappfilesactivedirectory schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md index 6d6fc65a3867..95bbe8f073d2 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/update-aznetappfilesbackup schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md index 97753dcbe3d6..2f9fafb03da1 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/update-aznetappfilesbackuppolicy schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md index 75e0dbbc6278..50f8df86c386 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/update-aznetappfilessnapshotpolicy schema: 2.0.0 --- From b26bb1ff886b367110d9902b7591cd7e2bb34f88 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Mon, 2 Nov 2020 16:00:30 +0000 Subject: [PATCH 10/22] update online link --- .../NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md index 259ac663cd75..fea66961279f 100644 --- a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md +++ b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/resume-aznetappfilesreplication +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/reinitialize-aznetappfilesreplication schema: 2.0.0 --- From 688e0dc14317ebf41a7c9fe70815aec7f2a52667 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 5 Nov 2020 09:41:19 +0000 Subject: [PATCH 11/22] Rename poolchange to switch, refactor activeDirectory --- .../ScenarioTests/ActiveDirectoryTests.ps1 | 20 +- .../ScenarioTests/VolumeTests.cs | 4 +- .../ScenarioTests/VolumeTests.ps1 | 6 +- .../TestActiveDirectoryCrud.json | 559 +- .../TestActiveDirectoryPipelines.json | 376 +- .../TestVaultCrud.json | 257 +- .../TestSwitchVolumePool.json | 4354 ++++ .../TestVolumeReplication - Copy.json | 20191 ++++++++++++++++ .../GetNetAppFilesActiveDirectory.cs | 12 +- .../NewNetAppFilesActiveDirectory.cs | 73 +- .../RemoveNetAppFilesActiveDirectory.cs | 32 +- .../UpdateNetAppFilesActiveDirectory.cs | 79 +- .../NetAppFiles/Az.NetAppFiles.psd1 | 4 +- src/NetAppFiles/NetAppFiles/ChangeLog.md | 5 +- .../NetAppFiles/Helpers/ModelExtensions.cs | 13 +- .../Models/PSNetAppFilesActiveDirectory.cs | 10 + ...lume.cs => SwitchNetAppFilesVolumePool.cs} | 26 +- .../NetAppFiles/help/Az.NetAppFiles.md | 6 +- .../help/Get-AzNetAppFilesActiveDirectory.md | 22 +- .../help/New-AzNetAppFilesActiveDirectory.md | 29 +- .../Reinitialize-AzNetAppFilesReplication.md | 12 +- .../Remove-AzNetAppFilesActiveDirectory.md | 42 +- ...lume.md => Set-AzNetAppFilesVolumePool.md} | 39 +- .../help/Switch-AzNetAppFilesVolumePool.md | 238 + .../Update-AzNetAppFilesActiveDirectory.md | 66 +- 25 files changed, 25730 insertions(+), 745 deletions(-) create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json create mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json rename src/NetAppFiles/NetAppFiles/Volume/{PoolChangeNetAppFilesVolume.cs => SwitchNetAppFilesVolumePool.cs} (92%) rename src/NetAppFiles/NetAppFiles/help/{PoolChange-AzNetAppFilesVolume.md => Set-AzNetAppFilesVolumePool.md} (82%) create mode 100644 src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 index 5f658dee5b83..c2f651a88729 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 @@ -45,8 +45,8 @@ function Test-ActiveDirectoryCrud Assert-AreEqual $accName1 $retrievedAcc.Name $sPass = ConvertTo-SecureString $adPassword -AsPlainText -Force # create and check ActiveDirectory - $retrievedAd = New-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName - Assert-AreEqual $activeDirectoryName1 $retrievedAd.AdName + $retrievedAd = New-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -AdName $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + $activeDirectoryId = $retrievedAd.ActiveDirectoryId Assert-AreEqual $adDomain $retrievedAd.Domain Assert-AreEqual $adUsername $retrievedAd.Username Assert-AreEqual $adDns $retrievedAd.Dns @@ -57,8 +57,8 @@ function Test-ActiveDirectoryCrud Assert-AreEqual $adSmbServerName $retrievedAcc.ActiveDirectories[0].SmbServerName Assert-AreEqual $adUsername $retrievedAcc.ActiveDirectories[0].Username - # get and check a ActiveDirectory by name and check again - $getRetrievedAd = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 + # get and check a ActiveDirectory by id and check again + $getRetrievedAd = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -ActiveDirectoryId $activeDirectoryId Assert-AreEqual $activeDirectoryName1 $getRetrievedAd.AdName Assert-AreEqual $adDomain $getRetrievedAd.Domain Assert-AreEqual $adUsername $getRetrievedAd.Username @@ -66,19 +66,19 @@ function Test-ActiveDirectoryCrud Assert-AreEqual $adSmbServerName $getRetrievedAd.SmbServerName #update AD - $getUpdateddAd = Update-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $activeDirectoryName1 -SmbServerName $adSmbServerName2 -Password $sPass + $getUpdateddAd = Update-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -ActiveDirectoryId $getRetrievedAd.ActiveDirectoryId -SmbServerName $adSmbServerName2 -Password $sPass Assert-AreEqual $adSmbServerName2 $getUpdateddAd.SmbServerName # delete activeDirectory retrieved # but test the WhatIf first, should not be removed - Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $getRetrievedAd.AdName -WhatIf + Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -ActiveDirectoryId $getRetrievedAd.ActiveDirectoryId -WhatIf $retrievedActiveDirectoryList = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 Assert-AreEqual 1 $retrievedActiveDirectoryList.Length #remove by name - Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -Name $getRetrievedAd.AdName + Remove-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 -ActiveDirectoryId $getRetrievedAd.ActiveDirectoryId Start-Sleep -s 15 - $retrievedActiveDirectoryList = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 + $retrievedActiveDirectoryList = Get-AzNetAppFilesActiveDirectory -ResourceGroupName $resourceGroup -AccountName $accName1 Assert-AreEqual 0 $retrievedActiveDirectoryList.Length } finally @@ -114,9 +114,9 @@ function Test-ActiveDirectoryPipelines New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 $sPass = ConvertTo-SecureString $adPassword -AsPlainText -Force #create AD piping in Account - $retrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | New-AzNetAppFilesActiveDirectory -Name $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + $retrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | New-AzNetAppFilesActiveDirectory -AdName $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName - $getRetrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | Get-AzNetAppFilesActiveDirectory -Name $activeDirectoryName1 + $getRetrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | Get-AzNetAppFilesActiveDirectory -ActiveDirectoryId $retrievedAd.ActiveDirectoryId } finally { diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs index 4606d88af8d6..475ab3a9a15c 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs @@ -44,9 +44,9 @@ public void TestVolumeReplication() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestVolumePoolChange() + public void TestSwitchVolumePool() { - TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumePoolChange"); + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SwitchVolumePool"); } [Fact] diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 index 36f45a04d035..ca14d86e0a28 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 @@ -397,9 +397,9 @@ function Test-VolumeReplication <# .SYNOPSIS -Test Volume PoolChange operation +Test Volume Switch-AzNetAppFilesVolumePool operation #> -function Test-VolumePoolChange +function Test-SwitchVolumePool { $currentSub = (Get-AzureRmContext).Subscription $subsid = $currentSub.SubscriptionId @@ -479,7 +479,7 @@ function Test-VolumePoolChange Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name # PoolChange and check the volume - $poolChangeResult = PoolChange-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 -NewPoolResourceId $retrievedPool2.Id + $poolChangeResult = Switch-AzNetAppFilesVolumePool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 -NewPoolResourceId $retrievedPool2.Id # check GET no change to rest of volume $retrievedVolume = Get-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 -VolumeName $volName1 diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json index b84a882a8454..2e801377d7d0 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8433?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODQzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8722?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7cf14617-2725-4dcc-9b24-6e7c89964036" + "e432c665-2839-49f3-904a-78898d8b96ec" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "d8c5c460-ad73-45c1-8195-0dd8c5025f36" + "29b66985-12c5-4140-9674-c554bcaeaeed" ], "x-ms-correlation-request-id": [ - "d8c5c460-ad73-45c1-8195-0dd8c5025f36" + "29b66985-12c5-4140-9674-c554bcaeaeed" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141655Z:d8c5c460-ad73-45c1-8195-0dd8c5025f36" + "FRANCESOUTH:20201104T152326Z:29b66985-12c5-4140-9674-c554bcaeaeed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:16:54 GMT" + "Wed, 04 Nov 2020 15:23:26 GMT" ], "Content-Length": [ "166" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433\",\r\n \"name\": \"ps8433\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722\",\r\n \"name\": \"ps8722\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0462cf93-25e6-4e2e-9685-98d38d7bc963" + "8596eb4a-3f9f-401a-816b-1aa547194716" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A02.4319365Z'\"" + "W/\"datetime'2020-11-04T15%3A23%3A34.0461472Z'\"" ], "x-ms-request-id": [ - "da8f53d5-68b3-4cba-960b-022c05098ecd" + "ba47bafd-43a7-406b-a63b-afacc461c8f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c56296cd-253f-4c92-833c-d3d13e73fd23?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "6a057d84-2a45-4f1b-9b71-dbb0c6178e92" + "f94cb810-0639-4f17-a9f9-d95634a2ea1f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141703Z:6a057d84-2a45-4f1b-9b71-dbb0c6178e92" + "FRANCESOUTH:20201104T152335Z:f94cb810-0639-4f17-a9f9-d95634a2ea1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:03 GMT" + "Wed, 04 Nov 2020 15:23:35 GMT" ], "Content-Length": [ "341" @@ -147,17 +147,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4319365Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A23%3A34.0461472Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"activeDirectories\": []\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04047299-4fd7-49ff-adfa-372109bb902c" + "d9a72c02-778b-4c65-aef3-0c5ba9ae8596" ], "Accept-Language": [ "en-US" @@ -183,13 +183,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A40.6531683Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A15.3748207Z'\"" ], "x-ms-request-id": [ - "2bcfb1c1-1698-4477-b11f-216b3edccfaf" + "6e41aebf-356c-4782-94b3-98bd6f9232d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42043c7d-525f-41d0-894e-66d26185b083?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/151ab59c-7aca-4240-86c3-210523daf049?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -204,13 +204,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "7ea2b20f-5998-4921-b24c-47025b4a79f8" + "d9a692e8-84b6-444e-bfc9-85bce8b441dd" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141740Z:7ea2b20f-5998-4921-b24c-47025b4a79f8" + "FRANCESOUTH:20201104T152415Z:d9a692e8-84b6-444e-bfc9-85bce8b441dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -219,7 +219,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:40 GMT" + "Wed, 04 Nov 2020 15:24:14 GMT" ], "Content-Length": [ "616" @@ -231,12 +231,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A40.6531683Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A15.3748207Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSMBSName2\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzVhMzI2MTktZTBjOS00YTQ0LWJjY2ItODg1MzBmMWZmMzg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c56296cd-253f-4c92-833c-d3d13e73fd23?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzU2Mjk2Y2QtMjUzZi00YzkyLTgzM2MtZDNkMTNlNzNmZDIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -255,7 +255,7 @@ "no-cache" ], "x-ms-request-id": [ - "4fd7d3b8-ed09-4f17-8086-429f017c2ab7" + "4d672aad-4b17-43c2-bd0e-6f75841dd9fd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -270,13 +270,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-correlation-request-id": [ - "2cafbe15-6edf-4669-b483-4332e4da463b" + "20d69f89-28bb-4eb4-ad57-59faa904bb81" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141734Z:2cafbe15-6edf-4669-b483-4332e4da463b" + "FRANCESOUTH:20201104T152405Z:20d69f89-28bb-4eb4-ad57-59faa904bb81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,7 +285,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:34 GMT" + "Wed, 04 Nov 2020 15:24:04 GMT" ], "Content-Length": [ "489" @@ -297,12 +297,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c5a32619-e0c9-4a44-bccb-88530f1ff386\",\r\n \"name\": \"c5a32619-e0c9-4a44-bccb-88530f1ff386\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T14:17:02.3677362Z\",\r\n \"endTime\": \"2020-10-29T14:17:02.4927449Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/c56296cd-253f-4c92-833c-d3d13e73fd23\",\r\n \"name\": \"c56296cd-253f-4c92-833c-d3d13e73fd23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T15:23:33.9825221Z\",\r\n \"endTime\": \"2020-11-04T15:23:34.1231506Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -321,10 +321,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\"" + "W/\"datetime'2020-11-04T15%3A23%3A34.1212011Z'\"" ], "x-ms-request-id": [ - "1708e3ca-43ff-4fde-b11d-4a236abfd004" + "8eb711ee-11b0-4cd2-bfd4-5016e17cee3c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -339,13 +339,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-correlation-request-id": [ - "b149ea41-67bf-42b4-b577-1aecf5016154" + "3979c4bf-7f94-4f75-901f-f6724e3b253a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141734Z:b149ea41-67bf-42b4-b577-1aecf5016154" + "FRANCESOUTH:20201104T152405Z:3979c4bf-7f94-4f75-901f-f6724e3b253a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:34 GMT" + "Wed, 04 Nov 2020 15:24:05 GMT" ], "Content-Length": [ "342" @@ -366,17 +366,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A23%3A34.1212011Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c4e3849-eac0-48fc-8273-bcca14f286b6" + "fd8feb36-8be4-4372-9a60-2cde1b899eb1" ], "Accept-Language": [ "en-US" @@ -396,10 +396,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\"" + "W/\"datetime'2020-11-04T15%3A23%3A34.1212011Z'\"" ], "x-ms-request-id": [ - "76f3fddc-2c96-43e4-bf87-aea2e242e4c9" + "ab912cd8-dba7-4b5c-8e26-c7d7cb5f21cc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -414,13 +414,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-correlation-request-id": [ - "aaeeb799-8159-4c38-80ef-e135aea8eead" + "eeeca85d-bb43-4237-9569-2823d5b8d5c5" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141734Z:aaeeb799-8159-4c38-80ef-e135aea8eead" + "FRANCESOUTH:20201104T152406Z:eeeca85d-bb43-4237-9569-2823d5b8d5c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:34 GMT" + "Wed, 04 Nov 2020 15:24:05 GMT" ], "Content-Length": [ "342" @@ -441,17 +441,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A02.4979819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A23%3A34.1212011Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dc9eb30-ca68-49a7-9347-97c9df281a29" + "f906cc1e-418b-4df5-b734-0a8bbd05eee7" ], "Accept-Language": [ "en-US" @@ -471,10 +471,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\"" ], "x-ms-request-id": [ - "0952b0c7-c845-4684-8fd6-9738fe418c22" + "af70c23f-30ff-439e-a162-aff656f290b9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -489,13 +489,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11985" ], "x-ms-correlation-request-id": [ - "08128515-020e-463b-a967-a7ee9553439c" + "8e05d7cd-fe5c-46b8-8b96-19935e816ef9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141739Z:08128515-020e-463b-a967-a7ee9553439c" + "FRANCESOUTH:20201104T152407Z:8e05d7cd-fe5c-46b8-8b96-19935e816ef9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:39 GMT" + "Wed, 04 Nov 2020 15:24:07 GMT" ], "Content-Length": [ "617" @@ -516,17 +516,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecf0ca38-bb56-4763-a95a-12c7e5581304" + "5b00cfdd-80d3-434b-af95-c2c2b276afa7" ], "Accept-Language": [ "en-US" @@ -546,10 +546,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\"" ], "x-ms-request-id": [ - "60165508-50b7-4bf4-a498-f4fd5e64524f" + "716eec2d-5334-4c45-995e-46a39a4ba2de" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -564,13 +564,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-correlation-request-id": [ - "b93bcc61-59c0-4ed6-b220-faef0d550f08" + "d9e925fb-f908-4544-a12c-5e963d02431e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141739Z:b93bcc61-59c0-4ed6-b220-faef0d550f08" + "FRANCESOUTH:20201104T152407Z:d9e925fb-f908-4544-a12c-5e963d02431e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +579,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:39 GMT" + "Wed, 04 Nov 2020 15:24:07 GMT" ], "Content-Length": [ "617" @@ -591,17 +591,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47e7711b-e203-4f1c-8147-41f0b42b0337" + "d0416c9f-7c93-4604-b160-92951de08390" ], "Accept-Language": [ "en-US" @@ -621,10 +621,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\"" ], "x-ms-request-id": [ - "2897f6da-daf5-4e66-9a16-1cb5820617b8" + "97d7015a-565e-49f5-bd00-c24c5cab92dc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -639,13 +639,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-correlation-request-id": [ - "c6324ab2-c9c8-42cf-8522-60b48a1628f6" + "90494aaf-2068-4595-8ad7-8bc608813d0f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141740Z:c6324ab2-c9c8-42cf-8522-60b48a1628f6" + "FRANCESOUTH:20201104T152408Z:90494aaf-2068-4595-8ad7-8bc608813d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,7 +654,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:39 GMT" + "Wed, 04 Nov 2020 15:24:07 GMT" ], "Content-Length": [ "617" @@ -666,17 +666,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A07.1829368Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d04d2e89-26d3-4558-a6e5-c73169ed5b0e" + "d01aabcb-ec14-4009-936d-76b177ffad13" ], "Accept-Language": [ "en-US" @@ -696,10 +696,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A14.1809645Z'\"" ], "x-ms-request-id": [ - "f4f7188b-3ac6-4bdc-b2e8-ec486c653c29" + "ae0f6df4-69cd-4b4c-a826-d94585becf8d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -714,13 +714,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11982" ], "x-ms-correlation-request-id": [ - "05c07462-9799-4d9c-a01a-f93638efd04b" + "dc219fe3-6bba-4fb3-95b5-baceb3b92af7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141740Z:05c07462-9799-4d9c-a01a-f93638efd04b" + "FRANCESOUTH:20201104T152414Z:dc219fe3-6bba-4fb3-95b5-baceb3b92af7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +729,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:40 GMT" + "Wed, 04 Nov 2020 15:24:14 GMT" ], "Content-Length": [ "617" @@ -741,17 +741,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A39.0640777Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A14.1809645Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSMBSName2\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8822f42-4e91-41bc-8858-694f9d703c36" + "21b21488-fa8c-43ee-915b-4033d134c9ff" ], "Accept-Language": [ "en-US" @@ -771,10 +771,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A41.1405028Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A14.1809645Z'\"" ], "x-ms-request-id": [ - "bf49d4af-0a40-410f-bcb0-a1479fc5c3ed" + "b75e1d5e-2171-4d2e-b4b0-f44a27169fdb" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -789,13 +789,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-correlation-request-id": [ - "dca21c0f-6fce-4445-8e51-7bc974e75b48" + "f8363d15-d3d3-413a-bdd1-b0157371d7f2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141756Z:dca21c0f-6fce-4445-8e51-7bc974e75b48" + "FRANCESOUTH:20201104T152414Z:f8363d15-d3d3-413a-bdd1-b0157371d7f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +804,82 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:55 GMT" + "Wed, 04 Nov 2020 15:24:14 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A14.1809645Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSMBSName2\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bafde7e-d03f-48c5-bf99-feacc384a9c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T15%3A24%3A15.9832585Z'\"" + ], + "x-ms-request-id": [ + "1b20a164-bdff-4c13-ab95-ebe390490a22" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "38ec9066-fbd8-46b1-a6f9-79b213c979bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152430Z:38ec9066-fbd8-46b1-a6f9-79b213c979bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:30 GMT" ], "Content-Length": [ "342" @@ -816,17 +891,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A41.1405028Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A15.9832585Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODQzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7e56045-0182-45b4-ba6c-9f3136f786fb" + "a904be97-b41f-4b93-b59e-ac30c585c995" ], "Accept-Language": [ "en-US" @@ -841,7 +916,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "300" + "274" ] }, "ResponseHeaders": { @@ -852,10 +927,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A17%3A35.0523243Z'\"" + "W/\"datetime'2020-11-04T15%3A24%3A06.7386176Z'\"" ], "x-ms-request-id": [ - "419cf492-c594-4c97-9946-92de3f9bd67e" + "67d6d86f-36db-4b39-a726-3ee1336f97b7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -873,10 +948,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "80846657-3afc-4ab9-bee5-b3031b4cd023" + "44fb683e-7937-45a4-a738-5f7b7886fcce" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141739Z:80846657-3afc-4ab9-bee5-b3031b4cd023" + "FRANCESOUTH:20201104T152407Z:44fb683e-7937-45a4-a738-5f7b7886fcce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +960,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:39 GMT" + "Wed, 04 Nov 2020 15:24:06 GMT" ], "Content-Length": [ "617" @@ -897,17 +972,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8433/providers/Microsoft.NetApp/netAppAccounts/ps3469\",\r\n \"name\": \"ps3469\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A17%3A35.0523243Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"4791c428-0b1a-a811-bc48-136c97a73507\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6387\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A06.7386176Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8433?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODQzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSMBSName2\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0199e1c6-25bc-441d-a18e-ab92b047d23e" + "4246d0d2-a5c9-457e-97d0-55554b8346fa" ], "Accept-Language": [ "en-US" @@ -916,7 +991,13 @@ "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "344" ] }, "ResponseHeaders": { @@ -926,23 +1007,32 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "ETag": [ + "W/\"datetime'2020-11-04T15%3A24%3A08.5569285Z'\"" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "f810e43e-92a2-47b1-9e09-4a6715be06cb" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" ], - "x-ms-request-id": [ - "23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + "720b6699-9c97-416b-89b1-d288a0769f28" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141759Z:23e0f696-96c4-4baa-8ca7-bf3430ea0dc5" + "FRANCESOUTH:20201104T152414Z:720b6699-9c97-416b-89b1-d288a0769f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,24 +1041,33 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:17:58 GMT" + "Wed, 04 Nov 2020 15:24:13 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536\",\r\n \"name\": \"ps3536\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A24%3A08.5569285Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"3c6d0a98-5700-8c9e-010b-a121e4254a5a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSMBSName2\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps6642\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8722?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7dba9ef0-e95a-4adb-9e62-9b866be2f70c" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -984,22 +1083,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-request-id": [ - "0629915d-325c-4995-9033-ca3602739884" + "0d5f9fc9-7986-4f64-af94-6e26a906bd87" ], "x-ms-correlation-request-id": [ - "0629915d-325c-4995-9033-ca3602739884" + "0d5f9fc9-7986-4f64-af94-6e26a906bd87" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141814Z:0629915d-325c-4995-9033-ca3602739884" + "FRANCESOUTH:20201104T152434Z:0d5f9fc9-7986-4f64-af94-6e26a906bd87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +1107,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:18:13 GMT" + "Wed, 04 Nov 2020 15:24:33 GMT" ], "Expires": [ "-1" @@ -1021,8 +1120,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1041,7 +1140,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1050,13 +1149,13 @@ "11988" ], "x-ms-request-id": [ - "96060952-2f8c-4bbe-af4f-21d872a85740" + "81148277-1dd8-4cbb-b406-0a9c44a299e2" ], "x-ms-correlation-request-id": [ - "96060952-2f8c-4bbe-af4f-21d872a85740" + "81148277-1dd8-4cbb-b406-0a9c44a299e2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141830Z:96060952-2f8c-4bbe-af4f-21d872a85740" + "FRANCESOUTH:20201104T152449Z:81148277-1dd8-4cbb-b406-0a9c44a299e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,7 +1164,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:18:29 GMT" + "Wed, 04 Nov 2020 15:24:48 GMT" ], "Expires": [ "-1" @@ -1078,8 +1177,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,7 +1197,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1107,13 +1206,13 @@ "11987" ], "x-ms-request-id": [ - "9309632d-a497-4bfc-848a-d1ba4ba45b81" + "01888b91-ce02-4167-836e-990a312ddd8e" ], "x-ms-correlation-request-id": [ - "9309632d-a497-4bfc-848a-d1ba4ba45b81" + "01888b91-ce02-4167-836e-990a312ddd8e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141845Z:9309632d-a497-4bfc-848a-d1ba4ba45b81" + "FRANCESOUTH:20201104T152504Z:01888b91-ce02-4167-836e-990a312ddd8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,7 +1221,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:18:45 GMT" + "Wed, 04 Nov 2020 15:25:04 GMT" ], "Expires": [ "-1" @@ -1135,8 +1234,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,7 +1254,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1164,13 +1263,13 @@ "11986" ], "x-ms-request-id": [ - "fd9416c6-3f68-4140-9f36-63a1825045ec" + "e0ee4272-da3f-418f-803e-fcfe29f0a0b2" ], "x-ms-correlation-request-id": [ - "fd9416c6-3f68-4140-9f36-63a1825045ec" + "e0ee4272-da3f-418f-803e-fcfe29f0a0b2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141901Z:fd9416c6-3f68-4140-9f36-63a1825045ec" + "FRANCESOUTH:20201104T152520Z:e0ee4272-da3f-418f-803e-fcfe29f0a0b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,7 +1278,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:19:01 GMT" + "Wed, 04 Nov 2020 15:25:19 GMT" ], "Expires": [ "-1" @@ -1192,8 +1291,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1212,7 +1311,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1221,13 +1320,13 @@ "11985" ], "x-ms-request-id": [ - "345ef767-d5c0-44aa-9571-083559cb2b4e" + "653203b5-297c-4342-9676-69da15e1b67b" ], "x-ms-correlation-request-id": [ - "345ef767-d5c0-44aa-9571-083559cb2b4e" + "653203b5-297c-4342-9676-69da15e1b67b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141916Z:345ef767-d5c0-44aa-9571-083559cb2b4e" + "FRANCESOUTH:20201104T152535Z:653203b5-297c-4342-9676-69da15e1b67b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,7 +1335,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:19:16 GMT" + "Wed, 04 Nov 2020 15:25:34 GMT" ], "Expires": [ "-1" @@ -1249,8 +1348,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1269,7 +1368,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1278,13 +1377,13 @@ "11984" ], "x-ms-request-id": [ - "d11b111d-4888-45dd-b0f4-54eb5af0dd24" + "f1da4e34-386d-4e16-bb96-226ae0152973" ], "x-ms-correlation-request-id": [ - "d11b111d-4888-45dd-b0f4-54eb5af0dd24" + "f1da4e34-386d-4e16-bb96-226ae0152973" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141931Z:d11b111d-4888-45dd-b0f4-54eb5af0dd24" + "FRANCESOUTH:20201104T152551Z:f1da4e34-386d-4e16-bb96-226ae0152973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1392,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:19:30 GMT" + "Wed, 04 Nov 2020 15:25:51 GMT" ], "Expires": [ "-1" @@ -1306,8 +1405,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1326,7 +1425,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1335,13 +1434,13 @@ "11983" ], "x-ms-request-id": [ - "8f78d007-3960-457c-982d-f452edc2da3e" + "18d83ce4-3923-41e2-a30b-db3b4cfb5e40" ], "x-ms-correlation-request-id": [ - "8f78d007-3960-457c-982d-f452edc2da3e" + "18d83ce4-3923-41e2-a30b-db3b4cfb5e40" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T141947Z:8f78d007-3960-457c-982d-f452edc2da3e" + "FRANCESOUTH:20201104T152606Z:18d83ce4-3923-41e2-a30b-db3b4cfb5e40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,7 +1449,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:19:46 GMT" + "Wed, 04 Nov 2020 15:26:06 GMT" ], "Expires": [ "-1" @@ -1363,8 +1462,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1383,7 +1482,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1392,13 +1491,13 @@ "11982" ], "x-ms-request-id": [ - "1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + "19eec237-0d33-4450-a477-8e676d7ba0fa" ], "x-ms-correlation-request-id": [ - "1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + "19eec237-0d33-4450-a477-8e676d7ba0fa" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T142002Z:1c2384f6-1c92-47d5-8b5a-a3d8d767bac8" + "FRANCESOUTH:20201104T152622Z:19eec237-0d33-4450-a477-8e676d7ba0fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,7 +1506,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:20:02 GMT" + "Wed, 04 Nov 2020 15:26:21 GMT" ], "Expires": [ "-1" @@ -1420,8 +1519,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1440,7 +1539,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1449,13 +1548,13 @@ "11981" ], "x-ms-request-id": [ - "da46cfe1-5796-4589-8400-17200fbb7879" + "7432b961-4b82-4c42-a699-845da1b086ce" ], "x-ms-correlation-request-id": [ - "da46cfe1-5796-4589-8400-17200fbb7879" + "7432b961-4b82-4c42-a699-845da1b086ce" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T142018Z:da46cfe1-5796-4589-8400-17200fbb7879" + "FRANCESOUTH:20201104T152637Z:7432b961-4b82-4c42-a699-845da1b086ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,7 +1563,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:20:18 GMT" + "Wed, 04 Nov 2020 15:26:37 GMT" ], "Expires": [ "-1" @@ -1477,8 +1576,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1497,7 +1596,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1506,13 +1605,13 @@ "11980" ], "x-ms-request-id": [ - "83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + "083de50d-98b8-4957-b1cb-d941eae5d424" ], "x-ms-correlation-request-id": [ - "83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + "083de50d-98b8-4957-b1cb-d941eae5d424" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T142033Z:83837c73-21f4-4d2d-bb27-5b17c1ef8b0e" + "FRANCESOUTH:20201104T152652Z:083de50d-98b8-4957-b1cb-d941eae5d424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1521,7 +1620,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:20:33 GMT" + "Wed, 04 Nov 2020 15:26:52 GMT" ], "Expires": [ "-1" @@ -1534,8 +1633,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1557,13 +1656,13 @@ "11979" ], "x-ms-request-id": [ - "82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + "1fab20e2-3a3e-4813-a206-503a24b62fcd" ], "x-ms-correlation-request-id": [ - "82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + "1fab20e2-3a3e-4813-a206-503a24b62fcd" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T142048Z:82019eff-2a49-4c9a-8eba-bdc1adf8a2c9" + "FRANCESOUTH:20201104T152708Z:1fab20e2-3a3e-4813-a206-503a24b62fcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1572,7 +1671,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:20:48 GMT" + "Wed, 04 Nov 2020 15:27:07 GMT" ], "Expires": [ "-1" @@ -1585,8 +1684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MzMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME16TXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1608,13 +1707,13 @@ "11978" ], "x-ms-request-id": [ - "2f212edd-51d8-4163-9fd5-b9c9cf565902" + "cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" ], "x-ms-correlation-request-id": [ - "2f212edd-51d8-4163-9fd5-b9c9cf565902" + "cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T142049Z:2f212edd-51d8-4163-9fd5-b9c9cf565902" + "FRANCESOUTH:20201104T152708Z:cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,7 +1722,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:20:48 GMT" + "Wed, 04 Nov 2020 15:27:07 GMT" ], "Expires": [ "-1" @@ -1638,11 +1737,11 @@ ], "Names": { "Test-ActiveDirectoryCrud": [ - "ps8433", - "ps3469", - "ps6387", - "ps6814", - "ps9092" + "ps8722", + "ps3536", + "ps6642", + "ps5180", + "ps9787" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json index 83b5745708b5..c8e204391199 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryPipelines.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps738?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDA4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "744e334d-50e1-4acf-bba6-d86aa4cda92e" + "dfaa1b4a-f3eb-44f1-b777-fa6538ef547a" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "46237467-1ffd-49ae-bd5f-f4ec7318eb74" + "6ed73157-e666-4872-ad3e-de551177a795" ], "x-ms-correlation-request-id": [ - "46237467-1ffd-49ae-bd5f-f4ec7318eb74" + "6ed73157-e666-4872-ad3e-de551177a795" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145345Z:46237467-1ffd-49ae-bd5f-f4ec7318eb74" + "FRANCESOUTH:20201104T152740Z:6ed73157-e666-4872-ad3e-de551177a795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:53:45 GMT" + "Wed, 04 Nov 2020 15:27:40 GMT" ], "Content-Length": [ - "164" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738\",\r\n \"name\": \"ps738\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085\",\r\n \"name\": \"ps4085\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6ed95a79-afb2-4acb-9ec8-3efda198b79e" + "0cc1877b-92af-469d-a173-72b39ff4bede" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A53%3A52.7440839Z'\"" + "W/\"datetime'2020-11-04T15%3A27%3A47.4961249Z'\"" ], "x-ms-request-id": [ - "a0c9a258-4a22-4e0d-8d97-61414c659a71" + "a997f9a2-578e-4601-be48-b0c076eeb647" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/103685fb-e811-4b00-bf92-29f7451949d7?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "884bfcc6-db78-485a-a99c-58718f7ab69b" + "26c0e3b8-4013-4210-9c5d-35d8c282f96d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145354Z:884bfcc6-db78-485a-a99c-58718f7ab69b" + "FRANCESOUTH:20201104T152749Z:26c0e3b8-4013-4210-9c5d-35d8c282f96d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:53:53 GMT" + "Wed, 04 Nov 2020 15:27:48 GMT" ], "Content-Length": [ - "312" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.7440839Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A27%3A47.4961249Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvM2ViMjYwNzEtNDEyYS00MWZiLWJhOTAtNGM4YzAwMDg4MzFhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/103685fb-e811-4b00-bf92-29f7451949d7?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMTAzNjg1ZmItZTgxMS00YjAwLWJmOTItMjlmNzQ1MTk0OWQ3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "6945b0f2-9eb6-4918-bf55-7a0c8d5e1f31" + "c3fc7967-d5dc-4f9b-9673-7edc29f2647e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "dad18285-f9be-4600-b25e-aa24400af2d6" + "4a530e92-206f-47b3-a531-7c03986c179b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145424Z:dad18285-f9be-4600-b25e-aa24400af2d6" + "FRANCESOUTH:20201104T152819Z:4a530e92-206f-47b3-a531-7c03986c179b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,10 +201,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:24 GMT" + "Wed, 04 Nov 2020 15:28:18 GMT" ], "Content-Length": [ - "488" + "489" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/3eb26071-412a-41fb-ba90-4c8c0008831a\",\r\n \"name\": \"3eb26071-412a-41fb-ba90-4c8c0008831a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T14:53:52.6346528Z\",\r\n \"endTime\": \"2020-10-29T14:53:52.8690352Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/103685fb-e811-4b00-bf92-29f7451949d7\",\r\n \"name\": \"103685fb-e811-4b00-bf92-29f7451949d7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T15:27:47.4232732Z\",\r\n \"endTime\": \"2020-11-04T15:27:47.5795392Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + "W/\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\"" ], "x-ms-request-id": [ - "f1dcd774-1869-4744-aa91-cbe1fca668da" + "de6c1cfb-25bb-4f41-8199-57a866af11ed" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "b0be4a56-9693-47b8-8ffa-df3834a43d77" + "31595bad-8cc2-4930-a65d-dac077dcf012" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145424Z:b0be4a56-9693-47b8-8ffa-df3834a43d77" + "FRANCESOUTH:20201104T152819Z:31595bad-8cc2-4930-a65d-dac077dcf012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,10 +270,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:24 GMT" + "Wed, 04 Nov 2020 15:28:19 GMT" ], "Content-Length": [ - "313" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0f8dc2c-c5da-4ba5-a310-b795ac21653f" + "cc09cdeb-3104-4ff5-987f-e306f6d69a3a" ], "Accept-Language": [ "en-US" @@ -312,10 +312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + "W/\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\"" ], "x-ms-request-id": [ - "418a29d7-bdbb-45a4-b497-f6cb56195475" + "a7bce984-4046-42c3-bb04-46de8e73e95f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -333,10 +333,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "73f046fe-9dce-477b-89fb-34a44039b1da" + "627185c7-683f-46a3-8407-99d5e0b2c299" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145424Z:73f046fe-9dce-477b-89fb-34a44039b1da" + "FRANCESOUTH:20201104T152820Z:627185c7-683f-46a3-8407-99d5e0b2c299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,10 +345,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:24 GMT" + "Wed, 04 Nov 2020 15:28:19 GMT" ], "Content-Length": [ - "313" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,17 +357,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21c61b08-97ef-42b2-b97c-97ddfc74c2f6" + "ccb4e6b8-8272-4c75-a54c-8a5ee655f848" ], "Accept-Language": [ "en-US" @@ -387,10 +387,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\"" + "W/\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\"" ], "x-ms-request-id": [ - "ea9fec0c-1894-4852-a424-c7ef28bd68ee" + "f62c2c3f-e11a-441e-ae82-14739952bec4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -408,10 +408,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "515253a1-bcd8-4a2f-9223-fba5b395095c" + "469eaa44-99c7-468d-b045-bffb0408ef71" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145425Z:515253a1-bcd8-4a2f-9223-fba5b395095c" + "FRANCESOUTH:20201104T152820Z:469eaa44-99c7-468d-b045-bffb0408ef71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,10 +420,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:24 GMT" + "Wed, 04 Nov 2020 15:28:19 GMT" ], "Content-Length": [ - "313" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,17 +432,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A53%3A52.8711719Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A27%3A47.5661756Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d76bcd61-fe1f-431a-8a7b-9c9c02eeab2e" + "73442632-97ce-431f-b585-2f5b2214087c" ], "Accept-Language": [ "en-US" @@ -462,10 +462,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\"" + "W/\"datetime'2020-11-04T15%3A28%3A21.3624439Z'\"" ], "x-ms-request-id": [ - "bbbb751b-5cf7-4187-9517-29b362e5929a" + "4603328a-5701-47e6-8098-55af05ddac8d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -483,10 +483,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "3d6439c2-2f9c-44c7-ac70-d85778fdfc0a" + "fbfab21b-d7c7-44c0-9992-ab8b1d1b8b63" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145426Z:3d6439c2-2f9c-44c7-ac70-d85778fdfc0a" + "FRANCESOUTH:20201104T152821Z:fbfab21b-d7c7-44c0-9992-ab8b1d1b8b63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,10 +495,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:26 GMT" + "Wed, 04 Nov 2020 15:28:21 GMT" ], "Content-Length": [ - "588" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,17 +507,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A28%3A21.3624439Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"43714619-51e3-9f67-d0f2-965f64a6236a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps4848\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef356363-dda3-4d4c-8931-380bd71be4bb" + "404a049d-960a-4610-8cf5-21fbb311099a" ], "Accept-Language": [ "en-US" @@ -537,10 +537,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\"" + "W/\"datetime'2020-11-04T15%3A28%3A21.3624439Z'\"" ], "x-ms-request-id": [ - "e59d11e8-61ba-452f-b024-b49df0c3cb2e" + "529be6a8-2f7d-408f-a635-19039fa09d20" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -558,10 +558,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "02f9118e-6d12-4c79-b7b4-51545d58fef5" + "fba18f23-2ec0-4e99-bb92-85b7b78a0358" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145426Z:02f9118e-6d12-4c79-b7b4-51545d58fef5" + "FRANCESOUTH:20201104T152822Z:fba18f23-2ec0-4e99-bb92-85b7b78a0358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,10 +570,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:26 GMT" + "Wed, 04 Nov 2020 15:28:21 GMT" ], "Content-Length": [ - "588" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,17 +582,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A26.0800834Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A28%3A21.3624439Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"43714619-51e3-9f67-d0f2-965f64a6236a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps4848\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTgwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"activeDirectories\": [\r\n {\r\n \"username\": \"sdkuser\",\r\n \"password\": \"sdkpass\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"adName\": \"ps4848\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff7b95ca-9b2a-4587-895f-0c9e913c196c" + "99baaed1-35b2-4521-a83c-976bf4753ab4" ], "Accept-Language": [ "en-US" @@ -607,7 +607,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "300" + "274" ] }, "ResponseHeaders": { @@ -618,10 +618,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T14%3A54%3A25.5527214Z'\"" + "W/\"datetime'2020-11-04T15%3A28%3A20.8750943Z'\"" ], "x-ms-request-id": [ - "e864c3f0-39c8-4205-b7be-a029263e7020" + "4ab57dbe-0925-4404-831f-1a842a4f4405" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -639,10 +639,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "63d9d44b-aa93-440a-9b5a-4b97d5918cd8" + "97e62e6b-c9a6-48cc-8291-57b0fcab4bd2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145426Z:63d9d44b-aa93-440a-9b5a-4b97d5918cd8" + "FRANCESOUTH:20201104T152821Z:97e62e6b-c9a6-48cc-8291-57b0fcab4bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,10 +651,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:25 GMT" + "Wed, 04 Nov 2020 15:28:20 GMT" ], "Content-Length": [ - "588" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,17 +663,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps738/providers/Microsoft.NetApp/netAppAccounts/ps1803\",\r\n \"name\": \"ps1803\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T14%3A54%3A25.5527214Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"31ff9736-1912-c007-08b7-b3d87fe79644\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps2646\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031\",\r\n \"name\": \"ps2031\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T15%3A28%3A20.8750943Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"activeDirectories\": [\r\n {\r\n \"activeDirectoryId\": \"43714619-51e3-9f67-d0f2-965f64a6236a\",\r\n \"username\": \"sdkuser\",\r\n \"password\": \"****************\",\r\n \"domain\": \"sdkdomain\",\r\n \"dns\": \"192.0.2.2\",\r\n \"status\": \"Created\",\r\n \"smbServerName\": \"PSSMBSName\",\r\n \"organizationalUnit\": \"CN=Computers\",\r\n \"adName\": \"ps4848\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps738?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDA4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b21f63-92e2-461e-88c1-ffc21e533c8f" + "d855efb0-a057-4c32-a8c4-cf15a3f90bc4" ], "Accept-Language": [ "en-US" @@ -693,22 +693,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "b6f3185e-8089-4c0b-800a-10c87977c64a" + "2eecedf2-5475-4e8f-aebb-8b098fc2c6df" ], "x-ms-correlation-request-id": [ - "b6f3185e-8089-4c0b-800a-10c87977c64a" + "2eecedf2-5475-4e8f-aebb-8b098fc2c6df" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145429Z:b6f3185e-8089-4c0b-800a-10c87977c64a" + "FRANCESOUTH:20201104T152824Z:2eecedf2-5475-4e8f-aebb-8b098fc2c6df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,7 +717,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:28 GMT" + "Wed, 04 Nov 2020 15:28:24 GMT" ], "Expires": [ "-1" @@ -730,8 +730,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -750,22 +750,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + "93480e40-3aa0-4d72-a16a-4bb55039207e" ], "x-ms-correlation-request-id": [ - "e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + "93480e40-3aa0-4d72-a16a-4bb55039207e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145444Z:e7cadac8-a17c-4fc2-8c0b-005af26d3c76" + "FRANCESOUTH:20201104T152840Z:93480e40-3aa0-4d72-a16a-4bb55039207e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -774,7 +774,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:44 GMT" + "Wed, 04 Nov 2020 15:28:39 GMT" ], "Expires": [ "-1" @@ -787,8 +787,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,22 +807,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "b9c77646-3faf-423e-857a-8a1148132c69" + "966dba3e-632c-4625-a672-6b045ce2ec2a" ], "x-ms-correlation-request-id": [ - "b9c77646-3faf-423e-857a-8a1148132c69" + "966dba3e-632c-4625-a672-6b045ce2ec2a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145459Z:b9c77646-3faf-423e-857a-8a1148132c69" + "FRANCESOUTH:20201104T152855Z:966dba3e-632c-4625-a672-6b045ce2ec2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,7 +831,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:54:59 GMT" + "Wed, 04 Nov 2020 15:28:54 GMT" ], "Expires": [ "-1" @@ -844,8 +844,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,22 +864,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "718e7d1d-64ca-461c-912b-7a81d81e7b0e" + "49924751-afe7-4aaa-8b7a-ba61e4ccb853" ], "x-ms-correlation-request-id": [ - "718e7d1d-64ca-461c-912b-7a81d81e7b0e" + "49924751-afe7-4aaa-8b7a-ba61e4ccb853" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145515Z:718e7d1d-64ca-461c-912b-7a81d81e7b0e" + "FRANCESOUTH:20201104T152911Z:49924751-afe7-4aaa-8b7a-ba61e4ccb853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,7 +888,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:55:15 GMT" + "Wed, 04 Nov 2020 15:29:10 GMT" ], "Expires": [ "-1" @@ -901,8 +901,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,22 +921,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "82c49285-409b-40ec-98aa-561122a2f307" + "7cf22174-a95a-4e67-821b-5cbff0a1c027" ], "x-ms-correlation-request-id": [ - "82c49285-409b-40ec-98aa-561122a2f307" + "7cf22174-a95a-4e67-821b-5cbff0a1c027" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145530Z:82c49285-409b-40ec-98aa-561122a2f307" + "FRANCESOUTH:20201104T152926Z:7cf22174-a95a-4e67-821b-5cbff0a1c027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:55:30 GMT" + "Wed, 04 Nov 2020 15:29:25 GMT" ], "Expires": [ "-1" @@ -958,8 +958,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,22 +978,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + "aa222bcc-acf4-4cde-8e52-028697b278a5" ], "x-ms-correlation-request-id": [ - "d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + "aa222bcc-acf4-4cde-8e52-028697b278a5" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145546Z:d8f24d90-b0d5-4fab-9df9-4386a07c6e7d" + "FRANCESOUTH:20201104T152941Z:aa222bcc-acf4-4cde-8e52-028697b278a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:55:45 GMT" + "Wed, 04 Nov 2020 15:29:40 GMT" ], "Expires": [ "-1" @@ -1015,8 +1015,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1035,22 +1035,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + "a0bbda9d-ad95-446d-8795-c3a6c814770a" ], "x-ms-correlation-request-id": [ - "9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + "a0bbda9d-ad95-446d-8795-c3a6c814770a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145601Z:9e0d39e2-4152-4af3-bfb2-4a0c64e7cfa4" + "FRANCESOUTH:20201104T152957Z:a0bbda9d-ad95-446d-8795-c3a6c814770a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,7 +1059,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:56:01 GMT" + "Wed, 04 Nov 2020 15:29:57 GMT" ], "Expires": [ "-1" @@ -1072,8 +1072,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1092,22 +1092,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-request-id": [ - "70200272-904e-458e-9adc-d16220a3d33c" + "36998fa7-94ed-4846-b507-73d6e69daaf1" ], "x-ms-correlation-request-id": [ - "70200272-904e-458e-9adc-d16220a3d33c" + "36998fa7-94ed-4846-b507-73d6e69daaf1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145616Z:70200272-904e-458e-9adc-d16220a3d33c" + "FRANCESOUTH:20201104T153012Z:36998fa7-94ed-4846-b507-73d6e69daaf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,7 +1116,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:56:15 GMT" + "Wed, 04 Nov 2020 15:30:12 GMT" ], "Expires": [ "-1" @@ -1129,8 +1129,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1149,22 +1149,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "d13f6600-c696-4556-a22b-d3c82b9b8a42" + "1d932c7c-3dc3-4e31-9328-36f26a9252a3" ], "x-ms-correlation-request-id": [ - "d13f6600-c696-4556-a22b-d3c82b9b8a42" + "1d932c7c-3dc3-4e31-9328-36f26a9252a3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145632Z:d13f6600-c696-4556-a22b-d3c82b9b8a42" + "FRANCESOUTH:20201104T153028Z:1d932c7c-3dc3-4e31-9328-36f26a9252a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,7 +1173,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:56:32 GMT" + "Wed, 04 Nov 2020 15:30:27 GMT" ], "Expires": [ "-1" @@ -1186,8 +1186,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1206,22 +1206,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-request-id": [ - "b861fdda-1718-41b5-b2bc-fa12f9578fbe" + "9665ceab-194e-4a41-a1d7-5f81f56b9897" ], "x-ms-correlation-request-id": [ - "b861fdda-1718-41b5-b2bc-fa12f9578fbe" + "9665ceab-194e-4a41-a1d7-5f81f56b9897" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145647Z:b861fdda-1718-41b5-b2bc-fa12f9578fbe" + "FRANCESOUTH:20201104T153043Z:9665ceab-194e-4a41-a1d7-5f81f56b9897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1230,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:56:47 GMT" + "Wed, 04 Nov 2020 15:30:43 GMT" ], "Expires": [ "-1" @@ -1243,8 +1243,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1263,16 +1263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + "3bc5e011-0d18-4f02-a03d-3aed82e76322" ], "x-ms-correlation-request-id": [ - "5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + "3bc5e011-0d18-4f02-a03d-3aed82e76322" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145703Z:5ebd5c6d-485f-4a4c-87c6-14e0e2718197" + "FRANCESOUTH:20201104T153058Z:3bc5e011-0d18-4f02-a03d-3aed82e76322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1281,7 +1281,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:57:02 GMT" + "Wed, 04 Nov 2020 15:30:58 GMT" ], "Expires": [ "-1" @@ -1294,8 +1294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek9DMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1314,16 +1314,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11989" ], "x-ms-request-id": [ - "be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + "942b039d-6ec7-484c-9804-2ae988f4d300" ], "x-ms-correlation-request-id": [ - "be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + "942b039d-6ec7-484c-9804-2ae988f4d300" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T145703Z:be747ec3-1256-4bf1-a7a8-cd781f0abdf8" + "FRANCESOUTH:20201104T153059Z:942b039d-6ec7-484c-9804-2ae988f4d300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,7 +1332,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 14:57:03 GMT" + "Wed, 04 Nov 2020 15:30:58 GMT" ], "Expires": [ "-1" @@ -1347,9 +1347,9 @@ ], "Names": { "Test-ActiveDirectoryPipelines": [ - "ps738", - "ps1803", - "ps2646" + "ps4085", + "ps2031", + "ps4848" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json index ff8b94057266..2fb46ff560ce 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTIxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7046?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4386e2a-a9ce-4f47-b33e-d2bb6d0676e8" + "e40654f5-e501-42ae-b1c0-67d0c979ce68" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + "ef5d1edc-cac1-4d72-9cd2-06b4226a571a" ], "x-ms-correlation-request-id": [ - "80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + "ef5d1edc-cac1-4d72-9cd2-06b4226a571a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T091920Z:80b61fe5-fd3d-49cf-a4bf-bcd01229cc29" + "FRANCESOUTH:20201105T091914Z:ef5d1edc-cac1-4d72-9cd2-06b4226a571a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:19:20 GMT" + "Thu, 05 Nov 2020 09:19:13 GMT" ], "Content-Length": [ "170" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213\",\r\n \"name\": \"ps1213\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046\",\r\n \"name\": \"ps7046\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzA0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cdf5e85-b166-4e55-aade-8561ab02d493" + "f0ef775f-40fd-4e89-b06c-b0ca1860ba42" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T09%3A19%3A26.6390793Z'\"" + "W/\"datetime'2020-11-05T09%3A19%3A20.2244754Z'\"" ], "x-ms-request-id": [ - "031e9cda-533c-48fb-a182-aff67a81264b" + "d60817ba-d758-45b0-8759-ed5d6c03929d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6cae763e-f985-4daa-8b65-498894bc130b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "e3899aaa-a02f-490d-b619-938edb25d1dd" + "6260ae13-2b74-43b7-a581-6af1d48b0dc2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T091927Z:e3899aaa-a02f-490d-b619-938edb25d1dd" + "FRANCESOUTH:20201105T091920Z:6260ae13-2b74-43b7-a581-6af1d48b0dc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:19:27 GMT" + "Thu, 05 Nov 2020 09:19:20 GMT" ], "Content-Length": [ "345" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\",\r\n \"name\": \"ps2196\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T09%3A19%3A26.6390793Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790\",\r\n \"name\": \"ps7790\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-05T09%3A19%3A20.2244754Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2IwMWZiMmEzLTNiYWQtNDM1Yy05YTVmLTQ4N2Y3MTAwYTQwMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6cae763e-f985-4daa-8b65-498894bc130b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzZjYWU3NjNlLWY5ODUtNGRhYS04YjY1LTQ5ODg5NGJjMTMwYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "abb5ecf0-174c-4233-aec7-522024041761" + "dabf6ce4-3ada-4cce-b75b-8afc221c84e5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "f9300450-a545-4616-bdff-9798de9cb4ab" + "78b788c3-c2e4-4bc0-9bd1-c2d8439fc190" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T091958Z:f9300450-a545-4616-bdff-9798de9cb4ab" + "FRANCESOUTH:20201105T091951Z:78b788c3-c2e4-4bc0-9bd1-c2d8439fc190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:19:57 GMT" + "Thu, 05 Nov 2020 09:19:50 GMT" ], "Content-Length": [ "493" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b01fb2a3-3bad-435c-9a5f-487f7100a402\",\r\n \"name\": \"b01fb2a3-3bad-435c-9a5f-487f7100a402\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-29T09:19:26.5688784Z\",\r\n \"endTime\": \"2020-10-29T09:19:26.7175142Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6cae763e-f985-4daa-8b65-498894bc130b\",\r\n \"name\": \"6cae763e-f985-4daa-8b65-498894bc130b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-05T09:19:20.1731877Z\",\r\n \"endTime\": \"2020-11-05T09:19:20.3031928Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzA0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-29T09%3A19%3A26.71113Z'\"" + "W/\"datetime'2020-11-05T09%3A19%3A20.2955281Z'\"" ], "x-ms-request-id": [ - "aeee0e43-e8c5-4f82-9b39-8a5ea7452ace" + "9c8c1caa-cea7-41d5-b717-9b9194fd0d29" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "2b06dfa5-44ee-4765-9066-f71a7e8f4add" + "733a7382-8360-4d8f-bc55-4797370eaddd" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T091958Z:2b06dfa5-44ee-4765-9066-f71a7e8f4add" + "FRANCESOUTH:20201105T091951Z:733a7382-8360-4d8f-bc55-4797370eaddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,10 +270,10 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:19:57 GMT" + "Thu, 05 Nov 2020 09:19:50 GMT" ], "Content-Length": [ - "344" + "346" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196\",\r\n \"name\": \"ps2196\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-29T09%3A19%3A26.71113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790\",\r\n \"name\": \"ps7790\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-05T09%3A19%3A20.2955281Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196/vaults?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIxOTYvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzA0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3OTAvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26c32aa9-2585-4136-9529-f4ba1273923e" + "cddb7e31-0939-4585-9510-a51ae7d40371" ], "Accept-Language": [ "en-US" @@ -312,7 +312,7 @@ "no-cache" ], "x-ms-request-id": [ - "bc942acd-de7c-4479-8420-54266cdac544" + "cd155d7f-f50d-457e-9ab3-b9f7592740a6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -330,10 +330,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "30bffbe5-0348-4bca-b009-e53c3a46fa00" + "249a9421-48c7-4c57-8518-b1e50e122810" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T091958Z:30bffbe5-0348-4bca-b009-e53c3a46fa00" + "FRANCESOUTH:20201105T091951Z:249a9421-48c7-4c57-8518-b1e50e122810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -342,7 +342,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:19:57 GMT" + "Thu, 05 Nov 2020 09:19:51 GMT" ], "Content-Length": [ "311" @@ -354,17 +354,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1213/providers/Microsoft.NetApp/netAppAccounts/ps2196/vaults/cbsvault\",\r\n \"name\": \"ps2196/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e679c7cc-af9c-11ea-bf72-2e183d486374\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790/vaults/cbsvault\",\r\n \"name\": \"ps7790/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"b519b6f1-1ab6-11eb-b21f-863486e19f06\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1213?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTIxMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7046?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10c82fbd-20e8-4d66-a8b4-b0ac181c5bec" + "ea7868f7-bbf2-4077-8368-55ed7bf3f0d4" ], "Accept-Language": [ "en-US" @@ -384,7 +384,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -393,13 +393,13 @@ "14999" ], "x-ms-request-id": [ - "7a3f1b6d-1a35-467b-9874-508fdcbd5463" + "c30bbb12-ad19-457e-9d67-d43bbc5d709c" ], "x-ms-correlation-request-id": [ - "7a3f1b6d-1a35-467b-9874-508fdcbd5463" + "c30bbb12-ad19-457e-9d67-d43bbc5d709c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092000Z:7a3f1b6d-1a35-467b-9874-508fdcbd5463" + "FRANCESOUTH:20201105T091953Z:c30bbb12-ad19-457e-9d67-d43bbc5d709c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -408,7 +408,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:20:00 GMT" + "Thu, 05 Nov 2020 09:19:52 GMT" ], "Expires": [ "-1" @@ -421,8 +421,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -441,7 +441,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -450,13 +450,13 @@ "11999" ], "x-ms-request-id": [ - "5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + "ee303f7b-bc0a-4f49-b912-2e36b68bf39b" ], "x-ms-correlation-request-id": [ - "5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + "ee303f7b-bc0a-4f49-b912-2e36b68bf39b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092015Z:5e3f64e8-9261-4f60-afc9-4f4daec3cb13" + "FRANCESOUTH:20201105T092008Z:ee303f7b-bc0a-4f49-b912-2e36b68bf39b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,7 +465,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:20:15 GMT" + "Thu, 05 Nov 2020 09:20:08 GMT" ], "Expires": [ "-1" @@ -478,8 +478,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,7 +498,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -507,13 +507,13 @@ "11998" ], "x-ms-request-id": [ - "aa978511-7203-4f64-ba23-11f62f090dd1" + "b74b3931-7c75-4ea0-93fe-e0e41d6980e4" ], "x-ms-correlation-request-id": [ - "aa978511-7203-4f64-ba23-11f62f090dd1" + "b74b3931-7c75-4ea0-93fe-e0e41d6980e4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092030Z:aa978511-7203-4f64-ba23-11f62f090dd1" + "FRANCESOUTH:20201105T092023Z:b74b3931-7c75-4ea0-93fe-e0e41d6980e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +522,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:20:30 GMT" + "Thu, 05 Nov 2020 09:20:23 GMT" ], "Expires": [ "-1" @@ -535,8 +535,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -555,7 +555,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -564,13 +564,13 @@ "11997" ], "x-ms-request-id": [ - "55c65f39-d170-4cf0-9608-0c4e764874ac" + "41435766-f310-4d5d-9ea0-938d35234eef" ], "x-ms-correlation-request-id": [ - "55c65f39-d170-4cf0-9608-0c4e764874ac" + "41435766-f310-4d5d-9ea0-938d35234eef" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092046Z:55c65f39-d170-4cf0-9608-0c4e764874ac" + "FRANCESOUTH:20201105T092039Z:41435766-f310-4d5d-9ea0-938d35234eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +579,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:20:45 GMT" + "Thu, 05 Nov 2020 09:20:38 GMT" ], "Expires": [ "-1" @@ -592,8 +592,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,7 +612,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -621,13 +621,13 @@ "11996" ], "x-ms-request-id": [ - "97311ce2-a229-4750-94cc-dd3239b5dff1" + "72bff772-1ccc-4a27-bbf2-e2de37e173fe" ], "x-ms-correlation-request-id": [ - "97311ce2-a229-4750-94cc-dd3239b5dff1" + "72bff772-1ccc-4a27-bbf2-e2de37e173fe" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092101Z:97311ce2-a229-4750-94cc-dd3239b5dff1" + "FRANCESOUTH:20201105T092054Z:72bff772-1ccc-4a27-bbf2-e2de37e173fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,7 +636,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:21:00 GMT" + "Thu, 05 Nov 2020 09:20:54 GMT" ], "Expires": [ "-1" @@ -649,8 +649,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -669,7 +669,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -678,13 +678,13 @@ "11995" ], "x-ms-request-id": [ - "f642d77c-a765-48c7-a994-b3893dd566ea" + "cd661c87-b780-41db-aae0-19682cce14e5" ], "x-ms-correlation-request-id": [ - "f642d77c-a765-48c7-a994-b3893dd566ea" + "cd661c87-b780-41db-aae0-19682cce14e5" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092116Z:f642d77c-a765-48c7-a994-b3893dd566ea" + "FRANCESOUTH:20201105T092109Z:cd661c87-b780-41db-aae0-19682cce14e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,7 +693,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:21:16 GMT" + "Thu, 05 Nov 2020 09:21:09 GMT" ], "Expires": [ "-1" @@ -706,8 +706,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -725,17 +725,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "cb8248dd-4ae0-434c-9917-61c5b1b42562" + "563e0cea-5969-48b5-a3a7-735e4b1d331a" ], "x-ms-correlation-request-id": [ - "cb8248dd-4ae0-434c-9917-61c5b1b42562" + "563e0cea-5969-48b5-a3a7-735e4b1d331a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092132Z:cb8248dd-4ae0-434c-9917-61c5b1b42562" + "FRANCESOUTH:20201105T092125Z:563e0cea-5969-48b5-a3a7-735e4b1d331a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +750,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:21:31 GMT" + "Thu, 05 Nov 2020 09:21:24 GMT" ], "Expires": [ "-1" @@ -754,11 +760,11 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyMTMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU1UTXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -780,13 +786,64 @@ "11993" ], "x-ms-request-id": [ - "33011de7-0cda-4e05-a1ed-4b8ac81bf161" + "03aaa3be-16a6-4f39-9b7a-b7f8ed293ecc" + ], + "x-ms-correlation-request-id": [ + "03aaa3be-16a6-4f39-9b7a-b7f8ed293ecc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092140Z:03aaa3be-16a6-4f39-9b7a-b7f8ed293ecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:21:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd05EWXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "95d43633-d3c1-48e4-8ada-e2a12cadfe84" ], "x-ms-correlation-request-id": [ - "33011de7-0cda-4e05-a1ed-4b8ac81bf161" + "95d43633-d3c1-48e4-8ada-e2a12cadfe84" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201029T092132Z:33011de7-0cda-4e05-a1ed-4b8ac81bf161" + "FRANCESOUTH:20201105T092140Z:95d43633-d3c1-48e4-8ada-e2a12cadfe84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,7 +852,7 @@ "nosniff" ], "Date": [ - "Thu, 29 Oct 2020 09:21:31 GMT" + "Thu, 05 Nov 2020 09:21:40 GMT" ], "Expires": [ "-1" @@ -810,8 +867,8 @@ ], "Names": { "Test-VaultCrud": [ - "ps1213", - "ps2196" + "ps7046", + "ps7790" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json new file mode 100644 index 000000000000..179e4a8b97f6 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json @@ -0,0 +1,4354 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4921?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd231ee2-ac59-4086-bd3d-e05f0d450b2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3c8c9408-b24d-4928-8540-5360abc79e36" + ], + "x-ms-correlation-request-id": [ + "3c8c9408-b24d-4928-8540-5360abc79e36" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223921Z:3c8c9408-b24d-4928-8540-5360abc79e36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:21 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921\",\r\n \"name\": \"ps4921\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc496d8b-d093-46f4-b76e-f7818b0d06ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e1859657-6c4a-4282-acb5-17bf0b1effca" + ], + "x-ms-correlation-request-id": [ + "e1859657-6c4a-4282-acb5-17bf0b1effca" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223923Z:e1859657-6c4a-4282-acb5-17bf0b1effca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4921-vnet' under resource group 'ps4921' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + ], + "x-ms-request-id": [ + "1ccb5fdc-8047-48fe-aa1a-d6d3aa0d378a" + ], + "x-ms-correlation-request-id": [ + "a211d19a-1217-47f2-b0a6-7b24c40ce5d7" + ], + "x-ms-arm-service-request-id": [ + "546ef47c-5611-4c60-ad99-15b933905969" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223934Z:a211d19a-1217-47f2-b0a6-7b24c40ce5d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:33 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5d9d69d-bc8e-4ca3-8ea1-24baba5f36ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + ], + "x-ms-request-id": [ + "9a8ba988-1044-4860-995a-d16a91ce62c8" + ], + "x-ms-correlation-request-id": [ + "84016518-9a04-45f6-9431-f89ee6cb720c" + ], + "x-ms-arm-service-request-id": [ + "b9338542-1982-4d17-afe3-17d146116aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223934Z:84016518-9a04-45f6-9431-f89ee6cb720c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:33 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91da544c-98a8-4203-9a99-3730a3a254fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + ], + "x-ms-request-id": [ + "9767ee8f-d816-41ae-b03c-3d57882d1a52" + ], + "x-ms-correlation-request-id": [ + "8d874c0c-123f-4bfb-aef8-45a9df3239ee" + ], + "x-ms-arm-service-request-id": [ + "593e3bce-8053-4b86-b3f2-cfc2f95fa097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223934Z:8d874c0c-123f-4bfb-aef8-45a9df3239ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:34 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dfa8ec4b-c9c4-424f-b185-23c530b26869\"" + ], + "x-ms-request-id": [ + "8b4cf288-9f72-476b-957b-3a7b35535df1" + ], + "x-ms-correlation-request-id": [ + "69964a45-2eaa-44cd-b9c6-8bdb69d07371" + ], + "x-ms-arm-service-request-id": [ + "472d2ea1-e067-4ea7-8309-b73488f109db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223939Z:69964a45-2eaa-44cd-b9c6-8bdb69d07371" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:38 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39e538d7-2546-4eff-8248-579c91c84262" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dfa8ec4b-c9c4-424f-b185-23c530b26869\"" + ], + "x-ms-request-id": [ + "e10c3bc8-1e9b-4709-86b8-7166f618cb32" + ], + "x-ms-correlation-request-id": [ + "c0f60b58-af67-4018-b6a9-02435f02e66b" + ], + "x-ms-arm-service-request-id": [ + "3c9c6703-06c7-4f04-abf8-a6fca3044769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223939Z:c0f60b58-af67-4018-b6a9-02435f02e66b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:38 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59261d19-26c4-4fd2-87b8-cc5762835227" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "267" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "d6e2f22b-84a8-4922-a22c-c4c803f868c0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d6e2f22b-84a8-4922-a22c-c4c803f868c0?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "553e3f39-41a7-401e-b9e6-3634ed66b27b" + ], + "x-ms-arm-service-request-id": [ + "a66e8111-abc6-4052-bd33-29e8f1f83e01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223930Z:553e3f39-41a7-401e-b9e6-3634ed66b27b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:29 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"5f481a84-aae7-4ce6-b504-8396680921f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7f1e9ed-d2ce-4077-b688-6d87c547c88a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1070" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "cd71a292-7eb2-473d-a275-bd3e2751dd5e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/cd71a292-7eb2-473d-a275-bd3e2751dd5e?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "eeb1aa02-3565-47bd-9ace-a8bdfca7b3b2" + ], + "x-ms-arm-service-request-id": [ + "52d6580e-c51e-41b2-a714-5665c6761c7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223935Z:eeb1aa02-3565-47bd-9ace-a8bdfca7b3b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:34 GMT" + ], + "Content-Length": [ + "2155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d6e2f22b-84a8-4922-a22c-c4c803f868c0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q2ZTJmMjJiLTg0YTgtNDkyMi1hMjJjLWM0YzgwM2Y4NjhjMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3bc71073-be64-4a06-8d3d-dd49d6403810" + ], + "x-ms-correlation-request-id": [ + "c3777dfe-c630-425a-b852-2ac182d5d763" + ], + "x-ms-arm-service-request-id": [ + "913fe611-4231-4686-aa87-ed5556be8026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223933Z:c3777dfe-c630-425a-b852-2ac182d5d763" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/cd71a292-7eb2-473d-a275-bd3e2751dd5e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NkNzFhMjkyLTdlYjItNDczZC1hMjc1LWJkM2UyNzUxZGQ1ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06055782-d710-408d-9d5b-1dd73fe7f9c3" + ], + "x-ms-correlation-request-id": [ + "5a2bcdf1-c712-4de8-8770-a2f9a9618514" + ], + "x-ms-arm-service-request-id": [ + "2a084bb3-b0b0-4056-aca4-ad005e824d59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223938Z:5a2bcdf1-c712-4de8-8770-a2f9a9618514" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:38 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "544666f7-7a32-4ffc-9ee1-ffb53ac114f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A39%3A46.7895041Z'\"" + ], + "x-ms-request-id": [ + "a062411e-c4aa-409f-814b-9f1cbcbbde4b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8d174944-5049-4441-8db7-0f8689e580ae" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T223948Z:8d174944-5049-4441-8db7-0f8689e580ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:39:48 GMT" + ], + "Content-Length": [ + "315" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\",\r\n \"name\": \"ps46\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A39%3A46.7895041Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDM2NzNjZjctNGNlYy00ZDE1LTk5MTMtZTllNDBmZmQ5MzcxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a2c7cee-25a6-493c-8d91-e873d226056b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "e9e88352-b738-462c-9b1d-2d2bc3e3850c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224018Z:e9e88352-b738-462c-9b1d-2d2bc3e3850c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:18 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371\",\r\n \"name\": \"03673cf7-4cec-4d15-9913-e9e40ffd9371\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:39:46.6915428Z\",\r\n \"endTime\": \"2020-11-04T22:39:46.8634967Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A39%3A46.8575508Z'\"" + ], + "x-ms-request-id": [ + "95b10c10-5af6-450d-b006-4b037932d050" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "82f7cf02-d17e-4b4d-be3b-09882ee2d266" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224019Z:82f7cf02-d17e-4b4d-be3b-09882ee2d266" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:18 GMT" + ], + "Content-Length": [ + "316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\",\r\n \"name\": \"ps46\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A39%3A46.8575508Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbc59390-808a-4180-b412-6b1d66fac821" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A40%3A21.4497249Z'\"" + ], + "x-ms-request-id": [ + "e6d0bc9d-c4b0-45d1-b08b-e6e9d2335f0b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1cbe89c0-07df-4814-b0e8-e562462f95f6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224022Z:1cbe89c0-07df-4814-b0e8-e562462f95f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:22 GMT" + ], + "Content-Length": [ + "460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\",\r\n \"name\": \"ps46/ps7579\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A21.4497249Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM2I2YzU1YzAtMTVhZi00YTM0LTk4N2YtMjUwZjM3NzhmNTY1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6381b517-5506-41d7-8bd3-d83214492dba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "b2df0201-28c0-4ae5-9f20-d0ef37336d38" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224052Z:b2df0201-28c0-4ae5-9f20-d0ef37336d38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:52 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565\",\r\n \"name\": \"3b6c55c0-15af-4a34-987f-250f3778f565\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:40:21.3830037Z\",\r\n \"endTime\": \"2020-11-04T22:40:21.7267226Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A40%3A26.3251309Z'\"" + ], + "x-ms-request-id": [ + "fece7423-d3a0-4547-8509-29f95f556f41" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "7941bd07-b472-42ea-9b9e-177b4dbdeffa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224053Z:7941bd07-b472-42ea-9b9e-177b4dbdeffa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:52 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\",\r\n \"name\": \"ps46/ps7579\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A26.3251309Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"6edc18da-9559-b814-32c6-b3c7f55c1f42\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63e74859-9637-4d03-8f94-34543c1df16a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A40%3A55.9868609Z'\"" + ], + "x-ms-request-id": [ + "d5678d45-e602-457e-a8f4-364af244e181" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "130da318-33bf-46b8-8cc9-799bb7dc805c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224057Z:130da318-33bf-46b8-8cc9-799bb7dc805c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:40:56 GMT" + ], + "Content-Length": [ + "460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\",\r\n \"name\": \"ps46/ps7064\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A55.9868609Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmI1Zjk1ZTEtYjNkNC00ZmJmLTkwNTktMzMyOTA5ZmJmNjVmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9279ea4d-8d2a-43ab-8e07-0bc16e72892c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "af457e82-e39e-459a-b77e-1ba276b7158b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224127Z:af457e82-e39e-459a-b77e-1ba276b7158b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:41:26 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f\",\r\n \"name\": \"fb5f95e1-b3d4-4fbf-9059-332909fbf65f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:40:55.7668929Z\",\r\n \"endTime\": \"2020-11-04T22:40:56.2094623Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A40%3A57.7280786Z'\"" + ], + "x-ms-request-id": [ + "96876d5e-a1fe-430f-a445-53c3080c0742" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "a6c5ed60-b95d-47f4-a120-940946d51bfd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224127Z:a6c5ed60-b95d-47f4-a120-940946d51bfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:41:27 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\",\r\n \"name\": \"ps46/ps7064\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A57.7280786Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"194b29b6-aeb0-8682-0c7c-7b1a83e36046\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc9aa460-03d9-423a-bb29-a213ea793e23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "784" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A41%3A30.6450812Z'\"" + ], + "x-ms-request-id": [ + "bda7990d-93ad-435d-abf4-326eed3b92df" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "277f0d90-c3f1-45d5-b6fb-a1cefef31854" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224131Z:277f0d90-c3f1-45d5-b6fb-a1cefef31854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:41:31 GMT" + ], + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A41%3A30.6450812Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b882b02f-aff6-4a93-87f8-30a47c9c50a1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "578cdabd-1d0e-40d9-ae05-3b72fb805299" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224201Z:578cdabd-1d0e-40d9-ae05-3b72fb805299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:42:01 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3eead74-7ad7-49c0-96a4-c88988392d0b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "83f1b355-3d91-4a2a-99f3-1ee2a8f5d26d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224232Z:83f1b355-3d91-4a2a-99f3-1ee2a8f5d26d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:42:31 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc72535-542b-448a-bb5d-bfb2839f8f55" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "5e0d1d4e-4aac-4b44-a37d-1181e3d97099" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224302Z:5e0d1d4e-4aac-4b44-a37d-1181e3d97099" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:43:01 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "84174b38-e9b7-43d8-b782-1a123977f7d3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "657c2768-1575-48a6-a454-95ce8c913b59" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224332Z:657c2768-1575-48a6-a454-95ce8c913b59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:43:31 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55b54c14-320c-4040-aa21-f158495c5758" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "1c777b42-e771-46f7-b7dc-478425d51f66" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224402Z:1c777b42-e771-46f7-b7dc-478425d51f66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:44:02 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd2d00d8-d503-4ead-9ecd-eccd30c07d40" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "e3588538-5148-4900-8af9-7d95de12aac3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224433Z:e3588538-5148-4900-8af9-7d95de12aac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:44:32 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13c9c097-783a-4044-bb3a-9d2137059148" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "14fd405f-bea0-4f0c-ac20-cacbe84f7dac" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224504Z:14fd405f-bea0-4f0c-ac20-cacbe84f7dac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:45:03 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"2020-11-04T22:44:48.9542502Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\"" + ], + "x-ms-request-id": [ + "1c4d666e-2f53-49e9-be59-da2c4758b886" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "e0b07035-8415-4180-ae35-cafd02ad2f98" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224504Z:e0b07035-8415-4180-ae35-cafd02ad2f98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:45:03 GMT" + ], + "Content-Length": [ + "1531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9382411-7021-4559-9ca8-464b54d4f274" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\"" + ], + "x-ms-request-id": [ + "1e9f2891-c5e5-4e87-872a-6f26318306e9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "3e1fa22b-74f9-4988-a316-857417cd03f1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224504Z:3e1fa22b-74f9-4988-a316-857417cd03f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:45:04 GMT" + ], + "Content-Length": [ + "1531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127/poolChange?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3L3Bvb2xDaGFuZ2U/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"newPoolResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d77c351-616c-40be-b137-1356e4127fe4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + ], + "x-ms-correlation-request-id": [ + "d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224505Z:d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:45:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8ede177-00bb-47f3-99b7-c8e82564b020" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "ddde9afa-c720-4ba6-9ecc-6dd53ed30164" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224535Z:ddde9afa-c720-4ba6-9ecc-6dd53ed30164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:45:35 GMT" + ], + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"name\": \"61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"status\": \"ChangePool\",\r\n \"startTime\": \"2020-11-04T22:45:05.3742068Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "375340ac-f754-4792-943b-9f1f7083ca61" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "ac9eac87-4497-4eb3-9879-36e23668d7b2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224606Z:ac9eac87-4497-4eb3-9879-36e23668d7b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:05 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"name\": \"61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:45:05.3742068Z\",\r\n \"endTime\": \"2020-11-04T22:45:51.0410446Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7230969f-3b40-422e-bc32-90c98a4d9e32" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "da5cc6d0-daf2-4ffc-b5aa-7efdd2171fcc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224606Z:da5cc6d0-daf2-4ffc-b5aa-7efdd2171fcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:05 GMT" + ], + "Content-Length": [ + "1887" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A05.5422605Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"poolId\": \"194b29b6-aeb0-8682-0c7c-7b1a83e36046\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7637c87-074f-4e4f-84fc-44a1677de219" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\"" + ], + "x-ms-request-id": [ + "ec2ba6dc-7b05-4b22-ad00-ef5b979f907d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "c59d2bf1-d830-4c48-8df0-efcbe984c782" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224606Z:c59d2bf1-d830-4c48-8df0-efcbe984c782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:06 GMT" + ], + "Content-Length": [ + "1503" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62ebabb4-abbb-4bd7-a13e-d87cfb8e5458" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\"" + ], + "x-ms-request-id": [ + "0fb75db0-6868-4fbf-986d-4a5719c88b0d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "2b2bc372-2795-4769-9e44-bcc7cfd76347" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224606Z:2b2bc372-2795-4769-9e44-bcc7cfd76347" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:06 GMT" + ], + "Content-Length": [ + "1503" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4921?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00cd7063-0340-42e0-847b-625ef55c20e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "4c44aac5-f22b-436a-99d0-94c1d92c4775" + ], + "x-ms-correlation-request-id": [ + "4c44aac5-f22b-436a-99d0-94c1d92c4775" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224611Z:4c44aac5-f22b-436a-99d0-94c1d92c4775" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + ], + "x-ms-correlation-request-id": [ + "4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224626Z:4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "74989e7b-d605-4337-81e8-9bce855ce535" + ], + "x-ms-correlation-request-id": [ + "74989e7b-d605-4337-81e8-9bce855ce535" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224641Z:74989e7b-d605-4337-81e8-9bce855ce535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "66e54722-e282-41d1-a5a0-3446f72fdea8" + ], + "x-ms-correlation-request-id": [ + "66e54722-e282-41d1-a5a0-3446f72fdea8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224657Z:66e54722-e282-41d1-a5a0-3446f72fdea8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:46:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "56a406a2-5784-4c42-b80e-8c94a6b42da0" + ], + "x-ms-correlation-request-id": [ + "56a406a2-5784-4c42-b80e-8c94a6b42da0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224712Z:56a406a2-5784-4c42-b80e-8c94a6b42da0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:47:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + ], + "x-ms-correlation-request-id": [ + "c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224727Z:c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:47:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4f4a1e49-13b0-47fa-bfee-633e378ee830" + ], + "x-ms-correlation-request-id": [ + "4f4a1e49-13b0-47fa-bfee-633e378ee830" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224743Z:4f4a1e49-13b0-47fa-bfee-633e378ee830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:47:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e746bd47-01f4-4254-9e27-54c66a6f2987" + ], + "x-ms-correlation-request-id": [ + "e746bd47-01f4-4254-9e27-54c66a6f2987" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224758Z:e746bd47-01f4-4254-9e27-54c66a6f2987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:47:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "a0b24327-3f88-4678-b11f-fc16105aba51" + ], + "x-ms-correlation-request-id": [ + "a0b24327-3f88-4678-b11f-fc16105aba51" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224813Z:a0b24327-3f88-4678-b11f-fc16105aba51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:48:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "5fac9b12-14ac-4f15-9eb5-55c971df4198" + ], + "x-ms-correlation-request-id": [ + "5fac9b12-14ac-4f15-9eb5-55c971df4198" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224829Z:5fac9b12-14ac-4f15-9eb5-55c971df4198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:48:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "f1adac00-898a-40ff-afa3-107cee651bca" + ], + "x-ms-correlation-request-id": [ + "f1adac00-898a-40ff-afa3-107cee651bca" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224844Z:f1adac00-898a-40ff-afa3-107cee651bca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:48:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0ac2cec7-32e9-4611-961c-98e66b02ef49" + ], + "x-ms-correlation-request-id": [ + "0ac2cec7-32e9-4611-961c-98e66b02ef49" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224859Z:0ac2cec7-32e9-4611-961c-98e66b02ef49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:48:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "fdfe82c7-686a-4aa2-9005-1a9857b413df" + ], + "x-ms-correlation-request-id": [ + "fdfe82c7-686a-4aa2-9005-1a9857b413df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224915Z:fdfe82c7-686a-4aa2-9005-1a9857b413df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:49:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "2d625826-a11f-43ce-9fba-9bac53ae69d9" + ], + "x-ms-correlation-request-id": [ + "2d625826-a11f-43ce-9fba-9bac53ae69d9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224930Z:2d625826-a11f-43ce-9fba-9bac53ae69d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:49:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "ad70d18c-1f78-41fd-877e-8c14b58e97db" + ], + "x-ms-correlation-request-id": [ + "ad70d18c-1f78-41fd-877e-8c14b58e97db" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T224945Z:ad70d18c-1f78-41fd-877e-8c14b58e97db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:49:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "ce53d998-99d5-4666-bd49-4e76245f5a7a" + ], + "x-ms-correlation-request-id": [ + "ce53d998-99d5-4666-bd49-4e76245f5a7a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225001Z:ce53d998-99d5-4666-bd49-4e76245f5a7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:50:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "f371fb24-d2c6-4722-b802-03c70df3a07e" + ], + "x-ms-correlation-request-id": [ + "f371fb24-d2c6-4722-b802-03c70df3a07e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225016Z:f371fb24-d2c6-4722-b802-03c70df3a07e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:50:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + ], + "x-ms-correlation-request-id": [ + "82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225031Z:82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:50:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + ], + "x-ms-correlation-request-id": [ + "efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225047Z:efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:50:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + ], + "x-ms-correlation-request-id": [ + "f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225102Z:f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:51:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "36f6b62e-a873-4046-a195-0426235bc6f2" + ], + "x-ms-correlation-request-id": [ + "36f6b62e-a873-4046-a195-0426235bc6f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225118Z:36f6b62e-a873-4046-a195-0426235bc6f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:51:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "73c606c1-26cc-46ea-891f-f3e36cab974c" + ], + "x-ms-correlation-request-id": [ + "73c606c1-26cc-46ea-891f-f3e36cab974c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225133Z:73c606c1-26cc-46ea-891f-f3e36cab974c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:51:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "26e16241-a558-41bc-b996-44583473405f" + ], + "x-ms-correlation-request-id": [ + "26e16241-a558-41bc-b996-44583473405f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225148Z:26e16241-a558-41bc-b996-44583473405f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:51:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "8fc7481b-80f5-479f-9425-3a2c7573a475" + ], + "x-ms-correlation-request-id": [ + "8fc7481b-80f5-479f-9425-3a2c7573a475" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225204Z:8fc7481b-80f5-479f-9425-3a2c7573a475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:52:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "69d64191-cade-4e6a-a4d2-f7b6909a6d42" + ], + "x-ms-correlation-request-id": [ + "69d64191-cade-4e6a-a4d2-f7b6909a6d42" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225219Z:69d64191-cade-4e6a-a4d2-f7b6909a6d42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:52:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "caaada17-5d14-4d6e-80a1-74db48d7d9cd" + ], + "x-ms-correlation-request-id": [ + "caaada17-5d14-4d6e-80a1-74db48d7d9cd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225235Z:caaada17-5d14-4d6e-80a1-74db48d7d9cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:52:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "c2f68c6c-893f-41ef-82d0-8fbae10ac47c" + ], + "x-ms-correlation-request-id": [ + "c2f68c6c-893f-41ef-82d0-8fbae10ac47c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225250Z:c2f68c6c-893f-41ef-82d0-8fbae10ac47c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:52:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "16613835-3e72-40cc-866f-4ed173b5495a" + ], + "x-ms-correlation-request-id": [ + "16613835-3e72-40cc-866f-4ed173b5495a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225305Z:16613835-3e72-40cc-866f-4ed173b5495a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:53:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "319ac516-6d29-466f-a877-01492e57e5b0" + ], + "x-ms-correlation-request-id": [ + "319ac516-6d29-466f-a877-01492e57e5b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225321Z:319ac516-6d29-466f-a877-01492e57e5b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:53:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "e1dfdf48-3cff-46ee-a215-02fc32b488ab" + ], + "x-ms-correlation-request-id": [ + "e1dfdf48-3cff-46ee-a215-02fc32b488ab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T225336Z:e1dfdf48-3cff-46ee-a215-02fc32b488ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 22:53:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5fcba61e-7d52-47d0-8ad1-955dba2f11a3" + ], + "x-ms-correlation-request-id": [ + "5fcba61e-7d52-47d0-8ad1-955dba2f11a3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20201105T091624Z:5fcba61e-7d52-47d0-8ad1-955dba2f11a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:16:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "48cfd318-af2e-4520-9c38-4646052e90a2" + ], + "x-ms-correlation-request-id": [ + "48cfd318-af2e-4520-9c38-4646052e90a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20201105T091625Z:48cfd318-af2e-4520-9c38-4646052e90a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:16:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SwitchVolumePool": [ + "ps4921", + "ps46", + "ps7579", + "ps7064", + "ps8127" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json new file mode 100644 index 000000000000..f267365412ee --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json @@ -0,0 +1,20191 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4849?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef113a13-6462-41dc-9fef-89e59be3980d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "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": [ + "bf140c14-7578-4ef0-9828-e4586bb14210" + ], + "x-ms-correlation-request-id": [ + "bf140c14-7578-4ef0-9828-e4586bb14210" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150933Z:bf140c14-7578-4ef0-9828-e4586bb14210" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:33 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849\",\r\n \"name\": \"ps4849\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps197?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62382b18-b21d-423a-8693-913aa6bef098" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "32f9750f-4edb-482e-ae1e-3f93141f24b3" + ], + "x-ms-correlation-request-id": [ + "32f9750f-4edb-482e-ae1e-3f93141f24b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150935Z:32f9750f-4edb-482e-ae1e-3f93141f24b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:35 GMT" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197\",\r\n \"name\": \"ps197\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e66ffa9-4c0a-44c3-b763-0dd091b0732e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "305ab63c-ba37-4781-a04c-aedab73aaba3" + ], + "x-ms-correlation-request-id": [ + "305ab63c-ba37-4781-a04c-aedab73aaba3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150936Z:305ab63c-ba37-4781-a04c-aedab73aaba3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4849-vnet' under resource group 'ps4849' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" + ], + "x-ms-request-id": [ + "bc51ae5e-f781-49da-8806-71448dc3832e" + ], + "x-ms-correlation-request-id": [ + "d3e9452c-a3b0-483d-9ad8-37ba1f50eb1c" + ], + "x-ms-arm-service-request-id": [ + "eda35e32-2f43-4833-9b8e-477be941e057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150948Z:d3e9452c-a3b0-483d-9ad8-37ba1f50eb1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:47 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bb2ce29-08df-47d7-a7ed-2841179aa18b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" + ], + "x-ms-request-id": [ + "7d3eb1ed-11db-43f1-8900-4b73c26185c6" + ], + "x-ms-correlation-request-id": [ + "66d66487-5e86-48c9-aae0-872d35e180c9" + ], + "x-ms-arm-service-request-id": [ + "b8af4357-0d9b-48d8-b737-c3d813628386" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150948Z:66d66487-5e86-48c9-aae0-872d35e180c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:47 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28b5df94-62e2-4e86-8475-63ea9919e423" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" + ], + "x-ms-request-id": [ + "c35a0693-ebbf-41de-9088-d5546b7bcfa3" + ], + "x-ms-correlation-request-id": [ + "101d2298-6ac0-4307-b971-a74f105eb1ea" + ], + "x-ms-arm-service-request-id": [ + "96316430-d80e-4a24-b805-73723786b2e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150948Z:101d2298-6ac0-4307-b971-a74f105eb1ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:47 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1ba04253-b38c-4d43-9594-aa192e88c91d\"" + ], + "x-ms-request-id": [ + "85dddd5b-7de2-43f2-b178-1946cb8beccc" + ], + "x-ms-correlation-request-id": [ + "fa4f033a-15c2-45db-9f59-598215eff263" + ], + "x-ms-arm-service-request-id": [ + "9c9b58c3-8320-4466-a058-2f70f3c53a20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150953Z:fa4f033a-15c2-45db-9f59-598215eff263" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:53 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "622890b7-81cb-4377-9a1c-950ce5675798" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1ba04253-b38c-4d43-9594-aa192e88c91d\"" + ], + "x-ms-request-id": [ + "15cde7aa-8d23-4973-93aa-642408d50dbb" + ], + "x-ms-correlation-request-id": [ + "809abc25-c234-4949-a8ba-49affc4b0a84" + ], + "x-ms-arm-service-request-id": [ + "2a2402ab-33aa-4924-8fa8-247a09f091b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150953Z:809abc25-c234-4949-a8ba-49affc4b0a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:53 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8d8dde5-5100-4bcf-95cf-e54aae7ebf27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "261" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "422d2c2f-5439-49e5-a60c-c1ef58dd6e8a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/422d2c2f-5439-49e5-a60c-c1ef58dd6e8a?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "5bb55c4e-8f2a-4a76-b489-d3f08bec85c6" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a010eafe-8a8d-430d-9f04-7f09dd73884f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150944Z:5bb55c4e-8f2a-4a76-b489-d3f08bec85c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:43 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"ebcbb676-5743-4c63-8352-fca4585369a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d3d79da-fbed-4917-9ce3-a53106f3406f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1064" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "2ec9d62b-514d-4043-bf60-8e21cad21f1c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/2ec9d62b-514d-4043-bf60-8e21cad21f1c?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "60655e75-41fc-4b75-ac7b-732017faae0a" + ], + "x-ms-arm-service-request-id": [ + "a497f555-e499-4c0a-b187-392aac7f7164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150949Z:60655e75-41fc-4b75-ac7b-732017faae0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:48 GMT" + ], + "Content-Length": [ + "2149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/422d2c2f-5439-49e5-a60c-c1ef58dd6e8a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzQyMmQyYzJmLTU0MzktNDllNS1hNjBjLWMxZWY1OGRkNmU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f8346c6-ab86-4a43-86c9-cc8dc8e75233" + ], + "x-ms-correlation-request-id": [ + "1539d929-6fcc-4061-bead-20e64fda348e" + ], + "x-ms-arm-service-request-id": [ + "9437f449-03ab-4e89-bbe4-86eb766e70e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150947Z:1539d929-6fcc-4061-bead-20e64fda348e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:46 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/2ec9d62b-514d-4043-bf60-8e21cad21f1c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzJlYzlkNjJiLTUxNGQtNDA0My1iZjYwLThlMjFjYWQyMWYxYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5951f4be-aa84-4603-be76-f3caa443101c" + ], + "x-ms-correlation-request-id": [ + "3c78f5d2-281f-4a8a-aac4-aa491df52903" + ], + "x-ms-arm-service-request-id": [ + "154cb52e-36cd-4b54-a3c6-d6fcaaa7ff62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150952Z:3c78f5d2-281f-4a8a-aac4-aa491df52903" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:52 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24a6fd77-78da-42fa-89e0-174ffdfea510" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8aae4405-6d3f-4023-90b7-335f4d2c6397" + ], + "x-ms-correlation-request-id": [ + "8aae4405-6d3f-4023-90b7-335f4d2c6397" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150953Z:8aae4405-6d3f-4023-90b7-335f4d2c6397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "221" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps197-vnet' under resource group 'ps197' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" + ], + "x-ms-request-id": [ + "8a26011f-3638-489c-b56b-55dea10e8129" + ], + "x-ms-correlation-request-id": [ + "d6cb02cc-ebb5-481e-922c-21cab218887a" + ], + "x-ms-arm-service-request-id": [ + "fdd9cbc3-967e-4e51-9ea3-1d5562f9ede7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151002Z:d6cb02cc-ebb5-481e-922c-21cab218887a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:02 GMT" + ], + "Content-Length": [ + "638" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5faaf35-346d-4a45-90a6-8534942a61ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" + ], + "x-ms-request-id": [ + "3d1c0547-fcd9-4d46-b12a-30446652fe49" + ], + "x-ms-correlation-request-id": [ + "989179d4-0eef-442f-83ba-df81e267dbf9" + ], + "x-ms-arm-service-request-id": [ + "27d20d6e-57eb-4505-876d-ce67a49657c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151002Z:989179d4-0eef-442f-83ba-df81e267dbf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:02 GMT" + ], + "Content-Length": [ + "638" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c226498-12d6-4db4-960f-27d9ebec8a76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" + ], + "x-ms-request-id": [ + "f5fff4b2-f7e3-441d-b305-f3456bc1a16c" + ], + "x-ms-correlation-request-id": [ + "2cd9e794-9b38-4852-8058-0245bd48025a" + ], + "x-ms-arm-service-request-id": [ + "4f6cf1da-5937-4f2b-acd4-f89c6053fa2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151002Z:2cd9e794-9b38-4852-8058-0245bd48025a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:02 GMT" + ], + "Content-Length": [ + "638" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2864fcfb-1767-47ea-965e-619867b8574d\"" + ], + "x-ms-request-id": [ + "2a84370a-87bd-4685-b192-1dd2906d6a91" + ], + "x-ms-correlation-request-id": [ + "6fd47f34-5ff9-4d5a-9758-f43a504bc7e1" + ], + "x-ms-arm-service-request-id": [ + "d34dee88-13b3-4657-b647-82aba23c9cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151006Z:6fd47f34-5ff9-4d5a-9758-f43a504bc7e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:06 GMT" + ], + "Content-Length": [ + "2143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5eaeb31-d3b1-4c24-9864-b1f0095dd8ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2864fcfb-1767-47ea-965e-619867b8574d\"" + ], + "x-ms-request-id": [ + "70b018a3-c6ea-4808-a508-1b6bdf877ae0" + ], + "x-ms-correlation-request-id": [ + "0c3ca855-1640-4852-81ba-a04041c51801" + ], + "x-ms-arm-service-request-id": [ + "56ced242-70ed-430a-a894-10834be0d6d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151006Z:0c3ca855-1640-4852-81ba-a04041c51801" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:06 GMT" + ], + "Content-Length": [ + "2143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6ff9283-3707-4c12-9cd4-09643ac1c1b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "260" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a0afb46b-2b46-4cf5-8c7e-acd950adf2c1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a0afb46b-2b46-4cf5-8c7e-acd950adf2c1?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "e1333f73-773e-40aa-8d66-2044e52681a2" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4a3b9286-4ec8-4de7-a045-944981914e06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T150958Z:e1333f73-773e-40aa-8d66-2044e52681a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:09:58 GMT" + ], + "Content-Length": [ + "637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e37f311d-265b-4d1c-a29d-d295a63a5c47\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3c3b9f9-d1ad-4b93-820c-60bdcc436ce1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1061" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0ce8681f-a62b-445c-b7be-a2527c88901d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/0ce8681f-a62b-445c-b7be-a2527c88901d?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "5ac94ed2-9c02-47ab-8b0e-072023e598ec" + ], + "x-ms-arm-service-request-id": [ + "2ee14d06-e34c-4377-8527-989fbb10f805" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151003Z:5ac94ed2-9c02-47ab-8b0e-072023e598ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:03 GMT" + ], + "Content-Length": [ + "2141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a0afb46b-2b46-4cf5-8c7e-acd950adf2c1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhZmI0NmItMmI0Ni00Y2Y1LThjN2UtYWNkOTUwYWRmMmMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "54828734-e453-4ffc-8cfc-1c39c77f6ab6" + ], + "x-ms-correlation-request-id": [ + "164d8fc5-b16e-48b3-8102-c312674456ce" + ], + "x-ms-arm-service-request-id": [ + "a9873f25-f37a-4bd9-b44e-620661d34637" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151002Z:164d8fc5-b16e-48b3-8102-c312674456ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:02 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/0ce8681f-a62b-445c-b7be-a2527c88901d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGNlODY4MWYtYTYyYi00NDVjLWI3YmUtYTI1MjdjODg5MDFkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "214517ed-fd42-4052-8aeb-39d154359d0f" + ], + "x-ms-correlation-request-id": [ + "9226d83c-0e06-4de5-9c16-2d83c19b94fa" + ], + "x-ms-arm-service-request-id": [ + "b4c9d1ef-a47b-454f-ae13-5ed97f25fb7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151006Z:9226d83c-0e06-4de5-9c16-2d83c19b94fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:06 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e30e6e64-5938-49e9-9e7a-00b9f1b835df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A10%3A13.7338253Z'\"" + ], + "x-ms-request-id": [ + "44c34766-e730-4fea-a54e-e7d551a2745c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b727a317-e53f-4b27-824f-f232c32769da" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151014Z:b727a317-e53f-4b27-824f-f232c32769da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:13 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\",\r\n \"name\": \"ps5048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A13.7338253Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY1YmU0ZDEtN2ViNy00YmFiLWI0MWEtZWI1NmM2ZWZlNWUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a5a47bb5-dc40-4539-8a42-08864100bd3f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7e83996d-883f-4b27-9060-ce9cf4a59462" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151045Z:7e83996d-883f-4b27-9060-ce9cf4a59462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:44 GMT" + ], + "Content-Length": [ + "489" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1\",\r\n \"name\": \"0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:10:13.6506125Z\",\r\n \"endTime\": \"2020-10-23T15:10:13.8068698Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A10%3A13.805874Z'\"" + ], + "x-ms-request-id": [ + "569d339d-5ffb-426c-a32a-0f8248e63437" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e028ffe0-7977-4259-8d3c-9950a28d5eb7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151045Z:e028ffe0-7977-4259-8d3c-9950a28d5eb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:45 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\",\r\n \"name\": \"ps5048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A13.805874Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3533c058-30e4-4767-a0a9-a76976033872" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A10%3A49.8406599Z'\"" + ], + "x-ms-request-id": [ + "cc773f36-1821-488f-be0c-c50290a5202d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e8eb726b-d9d9-4a84-a1ea-71291a74163b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151051Z:e8eb726b-d9d9-4a84-a1ea-71291a74163b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:10:51 GMT" + ], + "Content-Length": [ + "311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A49.8406599Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy83ZmJlYTU5Yy03NzM2LTRkZGQtYjYyYi03ZjMzODUxMWU1MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "81955b36-5ae9-499d-9d45-c3be5e3fff64" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "42e63d21-de2a-4485-93c9-748f7d39d770" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151121Z:42e63d21-de2a-4485-93c9-748f7d39d770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:11:21 GMT" + ], + "Content-Length": [ + "487" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501\",\r\n \"name\": \"7fbea59c-7736-4ddd-b62b-7f338511e501\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:10:49.7604862Z\",\r\n \"endTime\": \"2020-10-23T15:10:49.9010921Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A10%3A49.9047062Z'\"" + ], + "x-ms-request-id": [ + "cfffc81f-8c29-4180-a4e5-7ef1900e9ace" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "d59bcf71-5e58-48ba-bdd5-fdd71907c32d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151121Z:d59bcf71-5e58-48ba-bdd5-fdd71907c32d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:11:21 GMT" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A49.9047062Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51449b91-fa30-48a1-98ae-5ee97481c790" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A11%3A26.3052297Z'\"" + ], + "x-ms-request-id": [ + "3409d9b6-5242-40aa-9e9c-cd0059365476" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "82269744-961a-45c9-b475-35382e72731d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151127Z:82269744-961a-45c9-b475-35382e72731d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:11:27 GMT" + ], + "Content-Length": [ + "458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\",\r\n \"name\": \"ps5048/ps2690\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A11%3A26.3052297Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTE2NTAzYTktMTUwNy00ODRiLWJiNGUtNTk3NTMyNTJjODExP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f98db919-5aea-422d-8018-196e063a7e40" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a1834aee-c438-4125-bf7a-b33b466fa51c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151157Z:a1834aee-c438-4125-bf7a-b33b466fa51c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:11:57 GMT" + ], + "Content-Length": [ + "510" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811\",\r\n \"name\": \"a16503a9-1507-484b-bb4e-59753252c811\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:11:26.2239993Z\",\r\n \"endTime\": \"2020-10-23T15:11:26.4896765Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A11%3A26.4933578Z'\"" + ], + "x-ms-request-id": [ + "6ca94d5f-636a-406d-8a09-c0a24bc9d36d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "45f2a466-9c2f-4f23-9834-94382510bb86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151158Z:45f2a466-9c2f-4f23-9834-94382510bb86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:11:57 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\",\r\n \"name\": \"ps5048/ps2690\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A11%3A26.4933578Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"c1c6da2a-74aa-78d9-f0d3-ab4ee83f3b0c\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "717d548f-ab7a-4da2-8ee7-4e6bf2e87735" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A12%3A01.382752Z'\"" + ], + "x-ms-request-id": [ + "47160157-2268-415a-9f2e-b7e51ef4a34a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "73c26806-2a00-4a22-8841-9c550bf8ab3c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151202Z:73c26806-2a00-4a22-8841-9c550bf8ab3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:12:02 GMT" + ], + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\",\r\n \"name\": \"ps8874/ps7745\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A01.382752Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjhmMGQ2NS1iOGUyLTRjNTAtYmExYS0wN2M0NWQ1YjRjYjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4417910-61eb-4aa2-8291-45bf3110e5ee" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "0b020992-833a-4423-89d8-904983648ac1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151232Z:0b020992-833a-4423-89d8-904983648ac1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:12:32 GMT" + ], + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0\",\r\n \"name\": \"6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:12:01.3150674Z\",\r\n \"endTime\": \"2020-10-23T15:12:01.627533Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A12%3A01.6309291Z'\"" + ], + "x-ms-request-id": [ + "a5bebaf5-e643-4a33-b245-926345307b93" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "93c172df-06f8-4c32-ae1a-2d1bbdf18567" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151233Z:93c172df-06f8-4c32-ae1a-2d1bbdf18567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:12:32 GMT" + ], + "Content-Length": [ + "526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\",\r\n \"name\": \"ps8874/ps7745\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A01.6309291Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "918d4f39-5964-4887-99ea-24ea546654ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "391" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A12%3A36.4209555Z'\"" + ], + "x-ms-request-id": [ + "c1fe645d-636f-40bc-87b5-aa090b06dcbc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "78d796bb-1de5-47ae-944f-f5d2d0fd8dd1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151238Z:78d796bb-1de5-47ae-944f-f5d2d0fd8dd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:12:37 GMT" + ], + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A36.4209555Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1d3e86f8-5c9d-4fc9-bbb4-f0364b382889" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "a398dbd8-df94-4750-b64b-74d1eaeee4bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151308Z:a398dbd8-df94-4750-b64b-74d1eaeee4bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:13:07 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4db829eb-139e-4177-8a4f-4f283c2b56f3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "665788e1-6105-4b86-8563-208c8e7460de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151338Z:665788e1-6105-4b86-8563-208c8e7460de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:13:38 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b84e00a-7698-411f-81d1-92b9a2416ea7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "a3aadeba-36cc-4e29-bc7e-792ae6773e9a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151408Z:a3aadeba-36cc-4e29-bc7e-792ae6773e9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:14:08 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd8f0b72-f267-4cb5-a1e8-2bfb71afe341" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "91299edc-61a1-411f-9c98-397515dbd755" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151438Z:91299edc-61a1-411f-9c98-397515dbd755" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:14:38 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f135ea3c-bf63-41ca-b1ee-735a28d024b4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b318ccea-fd02-4ad8-89b2-b19ada5a73cb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151509Z:b318ccea-fd02-4ad8-89b2-b19ada5a73cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:15:08 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cdd1adae-082f-4755-aee9-1a9b2798611a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e0f4da9b-2884-4a32-8dfa-cd6bb3562959" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151539Z:e0f4da9b-2884-4a32-8dfa-cd6bb3562959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:15:39 GMT" + ], + "Content-Length": [ + "514" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c01c4d1-b180-476c-af52-e7d78aad3d4f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "d8b26354-6716-46b9-ae52-6d505841bb4d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151609Z:d8b26354-6716-46b9-ae52-6d505841bb4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:16:09 GMT" + ], + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"2020-10-23T15:16:03.6983591Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" + ], + "x-ms-request-id": [ + "c4adbceb-8586-4122-ae03-f7d19b001a7b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "541e310f-b431-4270-98fb-b5996f819640" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151610Z:541e310f-b431-4270-98fb-b5996f819640" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:16:10 GMT" + ], + "Content-Length": [ + "1500" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dc00732-fb9c-4722-a534-9d3b3097c29b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" + ], + "x-ms-request-id": [ + "8904d612-6484-4f29-b8af-8b6a8828ebba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "ef666785-98e6-4fba-9730-e5bfea814610" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151611Z:ef666785-98e6-4fba-9730-e5bfea814610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:16:11 GMT" + ], + "Content-Length": [ + "1500" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e54ee0c-b678-41dd-a7f3-c558532e3eb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" + ], + "x-ms-request-id": [ + "4d368635-814d-4e76-93a1-effea8f78e3f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "3c72a47f-0dbb-4a72-a295-0770ac611a80" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152151Z:3c72a47f-0dbb-4a72-a295-0770ac611a80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:50 GMT" + ], + "Content-Length": [ + "1500" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bb7a0ab-66ac-4bd2-a974-166227d4fa19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\"" + ], + "x-ms-request-id": [ + "747ce227-439b-4e94-a55d-41b3e67931e7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "1af26d45-9f4d-4318-9a23-a0daedc78790" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152324Z:1af26d45-9f4d-4318-9a23-a0daedc78790" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:24 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "667bf10f-ec17-4ae1-885c-164facdd27c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\"" + ], + "x-ms-request-id": [ + "9de8034f-a418-4ae5-95eb-7ecb3c2d32b9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11809" + ], + "x-ms-correlation-request-id": [ + "d025a13e-3511-4405-be34-59c7d69206d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152818Z:d025a13e-3511-4405-be34-59c7d69206d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:17 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endpointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70490d55-2f1f-4f8c-8861-662ae78824b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "766" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A16%3A14.7506854Z'\"" + ], + "x-ms-request-id": [ + "d6b3465c-e528-4c3e-985a-6e4cdb9fb15a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d880eb12-4e49-4985-a52c-32c026f93736" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151615Z:d880eb12-4e49-4985-a52c-32c026f93736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:16:15 GMT" + ], + "Content-Length": [ + "985" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A14.7506854Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "791997c5-cba9-4d81-9a22-8cd83a4380ed" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "5f561f6b-fcd8-45fe-b69a-692ffdf319af" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151646Z:5f561f6b-fcd8-45fe-b69a-692ffdf319af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:16:45 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4b16509c-fa40-402f-aed2-e33422ec119e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "01a80b71-8552-4fdb-abbf-746d1cd5ed02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151716Z:01a80b71-8552-4fdb-abbf-746d1cd5ed02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:17:15 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60119407-8bd2-4836-aa33-e8caad594837" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "d87cfc0c-0d91-44c8-bf44-e4db379febf0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151746Z:d87cfc0c-0d91-44c8-bf44-e4db379febf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:17:45 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2ee5b1d5-bd6a-44b5-8530-9ec997a953cc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "0a16220d-3a94-44da-97c4-0fa8ecc99e73" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151816Z:0a16220d-3a94-44da-97c4-0fa8ecc99e73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:18:16 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4bca5b29-ea78-4273-a2b3-29629880a511" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "9106e090-47cb-428c-b597-4b369f746aac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151846Z:9106e090-47cb-428c-b597-4b369f746aac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:18:46 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "967a62ac-71aa-42d2-af42-1abaf030cd07" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "780ccf98-7e83-44e6-82dc-91651e82bbfa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151917Z:780ccf98-7e83-44e6-82dc-91651e82bbfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:19:16 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ffa64d9a-4b73-4c73-8cb4-7aa462840228" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "7e3c913e-9a7a-48be-bd8a-fd1d5d7d0252" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T151947Z:7e3c913e-9a7a-48be-bd8a-fd1d5d7d0252" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:19:46 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c76f55f-2e0b-445d-ad9a-6de818740a09" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "364cc223-662d-4673-9bce-fd5dcb0a4b5b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152017Z:364cc223-662d-4673-9bce-fd5dcb0a4b5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:20:17 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "abacbb43-c328-4a29-befc-d19de28788e2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "e2b56266-8e25-45b9-bf9a-734b780e3443" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152047Z:e2b56266-8e25-45b9-bf9a-734b780e3443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:20:47 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fd04c57f-f6ab-4062-bde9-d5922d6f8252" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "c8785772-def1-4c4d-8d84-de1f2cec4d28" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152117Z:c8785772-def1-4c4d-8d84-de1f2cec4d28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:17 GMT" + ], + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c0c822cb-b732-4455-bbcf-44191450c351" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "a944cfd8-8ad2-4174-89e5-b0770b6b39ac" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152148Z:a944cfd8-8ad2-4174-89e5-b0770b6b39ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:47 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"2020-10-23T15:21:47.7354065Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" + ], + "x-ms-request-id": [ + "cf71a583-07bf-437c-b9d8-3821d287c4f8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "293461b5-924f-46e9-8513-aaa44163ee5b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152149Z:293461b5-924f-46e9-8513-aaa44163ee5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:49 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3a3ea7d-3666-4bea-9128-0c0dd35498dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" + ], + "x-ms-request-id": [ + "610afae2-4d95-4d5d-a76f-4265d4e377fa" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "fbfbcb70-c40f-4d38-85d2-4cfcdd66f3b1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152150Z:fbfbcb70-c40f-4d38-85d2-4cfcdd66f3b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:49 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a4cf380-7675-4ce0-9a31-3039b590859a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" + ], + "x-ms-request-id": [ + "36faa4d6-404c-4b8c-85a3-7da0f7f7cd32" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "02317da8-de79-4fe9-b17a-5192fabf67ca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152151Z:02317da8-de79-4fe9-b17a-5192fabf67ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:21:50 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8b0d638-f7d8-43ce-925b-5f02548debd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A23%3A04.1985086Z'\"" + ], + "x-ms-request-id": [ + "908fc815-68bf-473f-93ef-68ab3c47c666" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "8de2ecc9-5206-40dd-8192-c5e90df02232" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152325Z:8de2ecc9-5206-40dd-8192-c5e90df02232" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:25 GMT" + ], + "Content-Length": [ + "1858" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A04.1985086Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c08e74b-fcf0-4d8e-86f1-5c8aeb376333" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-10-23T15%3A27%3A22.6990784Z'\"" + ], + "x-ms-request-id": [ + "1c8335fc-f23e-4798-822b-f69a69a78ee2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], + "x-ms-correlation-request-id": [ + "3380e998-1832-423e-8024-fd20ddec7f6e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152818Z:3380e998-1832-423e-8024-fd20ddec7f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:18 GMT" + ], + "Content-Length": [ + "1844" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A27%3A22.6990784Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960/authorizeReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjAvYXV0aG9yaXplUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a734c4eb-4a05-44dd-862b-f737e8a04771" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "193" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "8d9018cb-749e-48a7-a34c-489a210ba464" + ], + "x-ms-correlation-request-id": [ + "8d9018cb-749e-48a7-a34c-489a210ba464" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152223Z:8d9018cb-749e-48a7-a34c-489a210ba464" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:22:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d6fdaa4-a17d-443a-8a4e-4b4cd688c5ee" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "e1171a30-5777-4584-ba43-c4136a8c2cff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152254Z:e1171a30-5777-4584-ba43-c4136a8c2cff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:22:53 GMT" + ], + "Content-Length": [ + "526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"name\": \"a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"status\": \"AuthorizeReplication\",\r\n \"startTime\": \"2020-10-23T15:22:23.6052594Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc3b13a7-0330-45ce-8801-7a8606747e8c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "2ec9a30d-21d1-4544-81f1-bea922b9d636" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152324Z:2ec9a30d-21d1-4544-81f1-bea922b9d636" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:23 GMT" + ], + "Content-Length": [ + "525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"name\": \"a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:22:23.6052594Z\",\r\n \"endTime\": \"2020-10-23T15:23:06.9156874Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b6b98bf-385f-4dd6-8772-348cb391fc4b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "0a780d53-8406-45c9-b304-525fc7166d60" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152324Z:0a780d53-8406-45c9-b304-525fc7166d60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:23 GMT" + ], + "Content-Length": [ + "2257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A22%3A23.684606Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"replicationStatus\": \"\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"poolId\": \"c1c6da2a-74aa-78d9-f0d3-ab4ee83f3b0c\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5b3be5a-6442-4b82-83b8-ccd4e5d7925c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "262bcc56-8832-427e-9fb5-ab5aa280a450" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "2b15f8a4-9b6f-40e0-a5d9-31b2f3cccb71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152327Z:2b15f8a4-9b6f-40e0-a5d9-31b2f3cccb71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05479cd6-96e6-4cd8-8a42-a59cb7fba52e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b16520ad-5723-4e3b-a2d3-db56cc5a16d4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "1d974a70-f08d-4d2a-b77a-2dfba5e05a44" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152328Z:1d974a70-f08d-4d2a-b77a-2dfba5e05a44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "243327b7-bb60-4724-b13b-1c166fb61f7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "529b9232-c894-4e1c-9d37-a8669227fd1c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "ceb52079-4e8f-4ef9-b539-4f888e1d8b7c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152329Z:ceb52079-4e8f-4ef9-b539-4f888e1d8b7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:29 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "974d34e9-6a2c-450a-b68c-3ac8a1b983ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dce6e57d-fc3d-4db7-9c43-4dc468afc556" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "ad726d33-6d38-4bdc-b387-29b74605a38e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152331Z:ad726d33-6d38-4bdc-b387-29b74605a38e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5431869-ac02-4ad5-9ff1-988e774aeee5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c073a2d7-f7bc-4b76-ab27-8834d50fb633" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "a937ed32-9ffe-433f-8e16-22dbc1a28651" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152332Z:a937ed32-9ffe-433f-8e16-22dbc1a28651" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d67c850-bdaf-4e95-98da-10bb8deb528f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "72643176-498b-46b3-8f8c-c9e06351f66e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "a634f80c-8e61-4769-ae29-ceff23cebdaa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152333Z:a634f80c-8e61-4769-ae29-ceff23cebdaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc6b8639-262d-444b-8f16-24a5bedae281" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4d8b1b32-f2af-48b2-a0aa-beb23aae5ae9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "d56d80ae-9318-46e1-b6a3-491355bcf404" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152341Z:d56d80ae-9318-46e1-b6a3-491355bcf404" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7721caa3-6b86-42f1-9981-bf97e4541676" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17644ef3-4986-4c42-95fb-bfad3931fa01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "9301b03e-65cf-49b7-99da-c649028db2e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152342Z:9301b03e-65cf-49b7-99da-c649028db2e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b2c6a7b-b4bd-42db-9b89-03dfb0365133" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fe6da86a-c34f-458b-be60-58c25dbec992" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "71167b24-6834-46ad-9052-a9e1cfc9fa26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152344Z:71167b24-6834-46ad-9052-a9e1cfc9fa26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:43 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc49f8f1-5a08-4852-aaa5-cb906a00c3fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ec2f7f53-374a-469a-8115-e013a5765f46" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "3fc9a93f-143e-4da0-a13b-673a9bc71565" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152345Z:3fc9a93f-143e-4da0-a13b-673a9bc71565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72063616-e4b5-4922-8da0-4f4ecbab7e99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "301dd114-817e-4d16-9231-60631983519c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "09a5f71a-18b2-4ffb-b608-6e583402e915" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152346Z:09a5f71a-18b2-4ffb-b608-6e583402e915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:45 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a00bf8ac-15aa-4345-b2e2-96d4e952bb77" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96797c19-dc01-4391-9750-4b3501e4ff87" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "76175a48-8a76-4782-af99-f84a9d0a8995" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152347Z:76175a48-8a76-4782-af99-f84a9d0a8995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c0eaf15-b4ec-41b2-8047-c918aa83dbc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5cfda641-31c4-4cc1-8021-0bead961ed6b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "bd5245a3-4fdb-40a3-ad9e-e172d5a4bbe9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152349Z:bd5245a3-4fdb-40a3-ad9e-e172d5a4bbe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "890d2b41-9956-4057-b427-b41f4aa2a5ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16029811-1e88-48b9-b373-6cbfe5500f98" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "286d13bb-9d83-4baf-8c4d-30087deccbff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152350Z:286d13bb-9d83-4baf-8c4d-30087deccbff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:49 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ededb3d5-4680-487f-86f7-654f41496946" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "34659f05-4ead-4c18-ba58-e6ab3675c31c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "e4d98ae3-3ffc-4e7d-8d13-1af4db3b333d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152351Z:e4d98ae3-3ffc-4e7d-8d13-1af4db3b333d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:51 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3026b4d3-65cf-40d7-b80c-5a3bf62fcea2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c24c9da-8eda-435f-8a86-56bcda44c505" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "48f0efad-3cc2-4f49-b98e-cd4ce7265fcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152353Z:48f0efad-3cc2-4f49-b98e-cd4ce7265fcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30f6e4ba-1c81-4474-a390-be705b127d29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc417a2d-8696-46cc-899e-11827814fcfb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "7a699974-9009-4a3a-be5a-ffdad703d159" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152354Z:7a699974-9009-4a3a-be5a-ffdad703d159" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:53 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ee0ec8a-8d7e-464e-bf9d-b7770ecc8701" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f9ba012-9a85-4e0c-affe-cacacee9673d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "e51cf3b9-fd26-4ee5-88a3-98a3b36c6135" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152356Z:e51cf3b9-fd26-4ee5-88a3-98a3b36c6135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:55 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80035716-1317-4a3b-8152-dca016af9799" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2ad95b9f-0f4f-4627-bcb8-d50f3a9016c6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "5f6f4650-86f9-49f4-8ebd-6ded9c70cdfe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152357Z:5f6f4650-86f9-49f4-8ebd-6ded9c70cdfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2788044-4e4f-4149-91db-8d18a1cd6812" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf39fcfd-aa3a-4234-a49f-d51463e8c681" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "91381468-7831-41db-bfea-41de206f6459" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152400Z:91381468-7831-41db-bfea-41de206f6459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:23:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c50cbec-7847-493c-84bb-b67b26b6b79c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "803cc7b5-94c5-4fe0-a64f-43fcef6ceb7c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "07d87b28-0e5f-4f0f-a1d0-3893b4e47525" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152401Z:07d87b28-0e5f-4f0f-a1d0-3893b4e47525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8492cda2-61fb-4441-9136-b9a8cba51db7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5551d133-1473-4c38-b47f-f15dceede19f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "5e215a6b-9ab5-495e-8fd1-6ce7b93fe48e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152403Z:5e215a6b-9ab5-495e-8fd1-6ce7b93fe48e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:02 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f6c6b90-7090-43f3-bc35-a5e66a81e5ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "94d5d544-4bfa-4c63-9776-eda6d6dbe36a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "5a6407c3-639e-4e84-86c2-8952cf8bc68a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152405Z:5a6407c3-639e-4e84-86c2-8952cf8bc68a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:04 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33fbfe39-1d4f-4570-991b-fc7d183f9943" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9da2776-c8d3-4a12-9d42-2e00d765501d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "a7b646fa-4514-48b9-b906-28d756842afe" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152406Z:a7b646fa-4514-48b9-b906-28d756842afe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d28ad4ce-cbfd-4a80-8aac-d5a614a5fca7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a2f578ba-c06e-498e-bdaa-5ce61b3b047b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "555276f0-af12-418f-af19-dc2715905cb4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152407Z:555276f0-af12-418f-af19-dc2715905cb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab520cde-07e7-4cac-aabc-bcd47cda5020" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cee038a8-92ca-4534-824b-b82c5427742d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "255a6531-9f6c-40bb-90a0-0f3c0be8eee2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152409Z:255a6531-9f6c-40bb-90a0-0f3c0be8eee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2253810c-37d8-493c-b9c9-867f280efecc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aacb3386-c634-4e75-a819-bd52c6062308" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "65c01f69-1799-4f0b-96d6-59ad5fa1adb5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152410Z:65c01f69-1799-4f0b-96d6-59ad5fa1adb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:09 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b182f69e-8697-495c-b414-d861e9521a4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dd07a65-11bc-49fd-9cb3-5b5f84b13495" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "800b94b9-9420-47bc-a0fd-a54725154f14" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152411Z:800b94b9-9420-47bc-a0fd-a54725154f14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:10 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a91bfe61-eb81-44ca-a361-0271cc48c21c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3b28e54-53a8-41d5-b6d2-0de9334f7690" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "751d0b17-1c4a-4f5f-bd9e-9ca6b81be856" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152413Z:751d0b17-1c4a-4f5f-bd9e-9ca6b81be856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3109c0d-4e8e-4b5a-ba9d-2a75b729d0bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5773e0a3-d199-404b-b320-3cc3e0f4a845" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "2e69cfba-4b46-46f8-b569-08952e00b715" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152414Z:2e69cfba-4b46-46f8-b569-08952e00b715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:13 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c7623a3-6b87-44b6-8439-0a26f1ef4752" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0170b404-ac8b-4d37-90a2-61f83842a228" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "2d9db842-14ad-42f6-bf84-4d54c6c48313" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152415Z:2d9db842-14ad-42f6-bf84-4d54c6c48313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:14 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bdacabd0-4976-44a7-9c33-dbb28c06f296" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6515d256-853f-405b-adf8-4f6dc88872d0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "aeeea9ae-4e2f-4259-a85f-9a55f35c0208" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152417Z:aeeea9ae-4e2f-4259-a85f-9a55f35c0208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "548f935f-5255-496d-9fd8-0b4ae7c1ad51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dd49eeb-4f58-4353-9b46-a26aec801731" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "44392ee3-41e8-4c7e-9047-63a4b81a79f6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152418Z:44392ee3-41e8-4c7e-9047-63a4b81a79f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:17 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e929243-cfaf-4037-9287-e19cd8ddc60b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41d8954b-b1e1-4d21-b0d7-d80318b68740" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "ade9e7f4-199a-4825-910f-13451d704d1a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152420Z:ade9e7f4-199a-4825-910f-13451d704d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad74162a-a86f-4843-ade7-9fa9abde28ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af9ecbf9-4878-4106-9a27-13a276db9758" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "a42e4402-7771-4928-ad10-307b9307899f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152422Z:a42e4402-7771-4928-ad10-307b9307899f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:21 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4b2fdea-bc7f-4517-98d7-aa66d9db74f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c8ec1aae-c0ca-425c-abee-7a178f224c9f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "4f67add4-ace1-437a-a8b3-7abd56c513b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152423Z:4f67add4-ace1-437a-a8b3-7abd56c513b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34de54ff-b7a4-4544-8a87-d267287f3d6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04e1ff90-06fe-467c-b64b-068e82f13a1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "dc58e852-3597-41ff-9116-aee1960a7576" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152424Z:dc58e852-3597-41ff-9116-aee1960a7576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2506382-657b-4326-b0fa-42c66d35f99d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c78d6c7-8479-4bf5-a580-06405a3ec1e3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "2c1686b7-af10-49e4-8d7d-7733bfaf2863" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152427Z:2c1686b7-af10-49e4-8d7d-7733bfaf2863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02ab289b-3c5e-4ce5-8052-24c1d302db10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7aaf5ea-cc5c-446c-974b-4b43993abf1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "27fab3dc-bbb0-42df-a904-2c39a75a6037" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152428Z:27fab3dc-bbb0-42df-a904-2c39a75a6037" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c7dbced-38ee-48f4-9dd5-808b43e86ac9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e01da180-8332-4c7c-a994-91b5ebf30868" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "3edc91b6-92b8-4684-8411-0a02e063f381" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152432Z:3edc91b6-92b8-4684-8411-0a02e063f381" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:32 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1c35468-c7e1-4f3f-bc31-05e97c992724" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "301c88d1-8845-4b87-b1a5-7331dfc2d3e1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "fa4e6b3c-b372-4f32-b048-2dfa6c882016" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152433Z:fa4e6b3c-b372-4f32-b048-2dfa6c882016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c176fa0-8d8c-4db9-960b-74a6dbe3b450" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "467aa909-333a-4175-97cf-32f84f2fac9e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "445a794b-9741-466a-8358-3d443c97e935" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152435Z:445a794b-9741-466a-8358-3d443c97e935" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:35 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44cf02b1-2b93-4203-bb93-1b856d8d5a6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d14e8709-cb10-41e8-8c9b-2fc0619d4c20" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-correlation-request-id": [ + "adf5b057-9f99-4e29-8695-0013594796e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152437Z:adf5b057-9f99-4e29-8695-0013594796e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:37 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eceb5145-15d5-4f25-a52b-5c9968f92a78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d38f7499-3938-47e2-b085-b9ccfad7e452" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "5c6c82f0-5674-493d-aef7-f22f2f68c45e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152438Z:5c6c82f0-5674-493d-aef7-f22f2f68c45e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08f35b27-4f77-47fd-b6b3-07d1e2940bd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b5adc0f-76bc-4ff4-bbf6-b6f3067fef56" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "2fe55667-450d-4c06-954b-4ba98a1d5edd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152440Z:2fe55667-450d-4c06-954b-4ba98a1d5edd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfb2c5c5-baca-40b7-a8c4-2c8ebe68dc0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e345d01-2885-4a36-812d-7fdf2fb3e8b4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "efcc7858-8074-40c1-ac8d-770b23ad791e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152441Z:efcc7858-8074-40c1-ac8d-770b23ad791e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce5083a7-899d-4c47-9f41-b4579843c036" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "740e828a-5864-4930-b563-4369534de116" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "8489cac0-a3d8-4d13-86bb-4252c33c9b41" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152445Z:8489cac0-a3d8-4d13-86bb-4252c33c9b41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eaebfdd9-ba83-4203-af6b-068ba2a9d887" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca387b4b-0fdb-406c-aa14-677760a48470" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-correlation-request-id": [ + "2a76d396-d200-426b-bf0e-07ee4e4f6221" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152446Z:2a76d396-d200-426b-bf0e-07ee4e4f6221" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab332c9-4cd6-4328-bf6f-d02749556977" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eea1f250-b6ae-4796-b0c9-c14bddfc58b3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "019fd3e1-fa63-4edb-8b48-3e57d8506ba9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152447Z:019fd3e1-fa63-4edb-8b48-3e57d8506ba9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9347983-e498-4086-a042-06d74c80d6b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2bc35358-b5b6-4d8e-80be-fa951ffd3f43" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "c0c4eb9a-4ef6-4151-b19e-0223663e2d5b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152449Z:c0c4eb9a-4ef6-4151-b19e-0223663e2d5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a291e2c8-0b54-4dd1-bc89-34fac833e971" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cda683fb-9f52-48f8-9973-e96e5a10ec97" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "a436fb43-caa3-4813-83b7-a1683fa541d4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152450Z:a436fb43-caa3-4813-83b7-a1683fa541d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e214d831-ffee-44a5-a787-8a6d1c4dfdfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c9159ee3-8d63-4902-bbe4-d084006eebbc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "b7bc6135-df7b-4377-a727-d9365bdeaca9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152452Z:b7bc6135-df7b-4377-a727-d9365bdeaca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "914c4573-eeee-469d-bd73-42c54b59d2ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c124d133-fa25-40a8-b5e1-1412ad2050ac" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "812dbcf3-8ac0-43c3-862f-87020a94c58f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152453Z:812dbcf3-8ac0-43c3-862f-87020a94c58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:53 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55cca226-9197-4c51-968d-2132cdcedeb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "334417c3-dd4e-4f1e-a4cc-5c6bba7fa4b1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "0f176dd1-2672-4afb-8b76-92fa6ec69d76" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152456Z:0f176dd1-2672-4afb-8b76-92fa6ec69d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:56 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2ab4714-e439-47a5-a40f-5e78a5859065" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c147160-7a50-41b1-8102-197000ce0bca" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "c681fa88-1115-4676-accf-7eb871a37ebc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152458Z:c681fa88-1115-4676-accf-7eb871a37ebc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:58 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ace460b4-e6e1-493b-9153-34444a23054b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c47442f-cab3-4155-a184-82ef2f414ca2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "dfe225d4-cafe-4de8-a5b3-8e5794ed8e2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152459Z:dfe225d4-cafe-4de8-a5b3-8e5794ed8e2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:24:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4135e62-aeb1-462b-8798-a56f21efaa9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd7011a7-1321-4aff-bc4d-74f27796414e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "e48a4248-26df-43a9-bc30-dd25f24c7f94" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152501Z:e48a4248-26df-43a9-bc30-dd25f24c7f94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:01 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40c8bae3-096a-4ab7-a9c0-fe45b16d55cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c1eaa4e9-51dc-4d7b-8c8f-5152f0fb134a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "85faf9e6-537e-4368-bd50-e05ba61733b5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152504Z:85faf9e6-537e-4368-bd50-e05ba61733b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89640961-c4d5-4c79-8a45-084fb9658e65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18bd3b58-0f1b-41ea-a579-be306a0ff918" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-correlation-request-id": [ + "a66b3fa2-28e7-43d6-9cf4-b66d6d34fb50" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152505Z:a66b3fa2-28e7-43d6-9cf4-b66d6d34fb50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ee8fa74-fdb5-4033-84a5-04270074d926" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6ef93b18-5f0f-43fa-aa95-791e6e18d33a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "ef26ffd8-4576-4d08-9889-5c27642bfe6f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152507Z:ef26ffd8-4576-4d08-9889-5c27642bfe6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57bc28ce-695a-4a88-853a-f693637b848a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3198615e-dddf-4c2d-9eca-a2e5a72e5cec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "18b01743-4436-4b8d-bc08-559849530a3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152508Z:18b01743-4436-4b8d-bc08-559849530a3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "296ee8f5-16ac-43e1-9568-05099b65415e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c3f8ed62-60de-4df3-a698-563dfc472752" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-correlation-request-id": [ + "28510735-8366-45de-9926-76d7c710e932" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152509Z:28510735-8366-45de-9926-76d7c710e932" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:09 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea68cfa7-b63e-4b6e-a003-69b362758743" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60c21bc5-b2f9-4150-b7d2-bdd6c952eb42" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "2cbeeb62-b9c8-4299-8930-4074ff9f2687" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152511Z:2cbeeb62-b9c8-4299-8930-4074ff9f2687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:10 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98b4c1d8-f4b9-4b4e-a261-4f0ad710050b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6386bbad-33d7-4a24-aabe-43b2608ee4c5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-correlation-request-id": [ + "06cd3242-3810-43db-a98c-d09c1bc3ceb0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152512Z:06cd3242-3810-43db-a98c-d09c1bc3ceb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fa805f2-8e8b-4dff-97fb-459cc1f6d266" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "026a526e-aa04-416f-be8c-fc1af8ebf472" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-correlation-request-id": [ + "9b992319-f730-4b5b-ba3f-9301ede05bd4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152514Z:9b992319-f730-4b5b-ba3f-9301ede05bd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:13 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2575940c-dc1a-4fab-89c1-0a7304e80a8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "215023ba-24ed-4335-9c1b-33fd611c1820" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-correlation-request-id": [ + "6d8d9455-a45e-4ecb-9e1a-56496ea5b76a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152515Z:6d8d9455-a45e-4ecb-9e1a-56496ea5b76a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:15 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf8c9174-5bc0-4037-9f57-6e0c312de6e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36588fd9-36fa-44c1-a698-7ec8ba101dba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-correlation-request-id": [ + "8bf93db0-3d63-448b-b1cd-440d8c6898a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152516Z:8bf93db0-3d63-448b-b1cd-440d8c6898a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26a0f45d-5f8c-41e6-b3be-0b4beafedd07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e23fe27-5771-4728-8799-bd42d8e3412f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-correlation-request-id": [ + "a84d4fd1-9ba5-4855-b88e-55b645f4b3fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152518Z:a84d4fd1-9ba5-4855-b88e-55b645f4b3fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:17 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fd4627b-87c5-48ff-bdb3-53338aa1390b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc077ff2-94cd-4d15-9bea-8cba9d82f672" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-correlation-request-id": [ + "5a711d5d-b817-436d-8289-781bec3c4754" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152519Z:5a711d5d-b817-436d-8289-781bec3c4754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff500f73-2763-4fed-8eb5-fd9fca0152d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "60d707b1-9a2c-4f24-8eef-83899b69bd5f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-correlation-request-id": [ + "c9d55d6a-684e-41da-96af-67514d4362ca" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152521Z:c9d55d6a-684e-41da-96af-67514d4362ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:20 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d497395-e5d7-4e35-90d1-7276713075df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa308f00-7d14-4bad-b1cd-6aa9b26b84ce" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-correlation-request-id": [ + "d7dbd0db-b89c-4280-b1db-f5e978907afd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152522Z:d7dbd0db-b89c-4280-b1db-f5e978907afd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0046616-4008-41fa-99ef-62525beb5c69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0a79a9ac-55c6-4106-bed8-4f1458a90033" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-correlation-request-id": [ + "a93fbff1-f6dc-452d-8e99-4d8448a3cf54" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152523Z:a93fbff1-f6dc-452d-8e99-4d8448a3cf54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76571c71-d343-4594-9257-90d61781ad26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0687f268-34f1-4d5b-b21e-d1dd226dc1d7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-correlation-request-id": [ + "d8e7aadc-1d6f-4360-9a1e-b21619a3234a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152525Z:d8e7aadc-1d6f-4360-9a1e-b21619a3234a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:25 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8c79457-4d14-43de-bc2b-c79a665167d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e333ac64-51ab-43ec-a55d-f422aa00c297" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-correlation-request-id": [ + "89d08c90-1281-4b04-8ea1-4a5edbd319e7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152526Z:89d08c90-1281-4b04-8ea1-4a5edbd319e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b82ead5-703a-47e2-ad67-c3defd17c26d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dcc0865-f7b7-4a7c-9db7-508d45ea1729" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-correlation-request-id": [ + "638eec86-2fd4-4082-b932-29c8c47cd16e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152528Z:638eec86-2fd4-4082-b932-29c8c47cd16e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76554c28-701f-4c75-8fdf-58a371a0d8ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d7bf78d-c472-4138-94e3-ea017619cf77" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-correlation-request-id": [ + "f3e239a8-7981-42b6-8db5-91c1eb90c099" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152529Z:f3e239a8-7981-42b6-8db5-91c1eb90c099" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:29 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "405a664f-cec4-4219-8661-81798c1855f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "26537278-6e65-42d0-99ef-9297f47357a0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-correlation-request-id": [ + "7191a330-1509-46f0-a24b-f22f16cdd10a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152531Z:7191a330-1509-46f0-a24b-f22f16cdd10a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8906f387-b933-4737-9cd5-53063cec37c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "39c0bcab-ebc4-495b-abba-84ec29203ec2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-correlation-request-id": [ + "ad3de7a2-994a-42be-afc7-92ce9c3bce31" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152532Z:ad3de7a2-994a-42be-afc7-92ce9c3bce31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd6e5680-421b-46d4-b183-432f44c9ec30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dce2e4ee-756d-4c78-bae5-b2c3341dcf40" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-correlation-request-id": [ + "38451bd0-e09b-46d3-a6fd-1231adb29865" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152534Z:38451bd0-e09b-46d3-a6fd-1231adb29865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "484d850d-b80e-497c-ae99-92e5b4e228d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "96970814-9f2f-4b77-853c-52b4da58fa34" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-correlation-request-id": [ + "74c384ab-1129-4996-9398-a59c8b87c98e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152535Z:74c384ab-1129-4996-9398-a59c8b87c98e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:35 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b68eff4-afb5-45cf-b7eb-07bc9a281873" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e894850-f5ae-461b-b627-03c83712bd3a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-correlation-request-id": [ + "44ceb244-12fe-489b-9b4b-084e8c3b8c9e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152537Z:44ceb244-12fe-489b-9b4b-084e8c3b8c9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:37 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2274736d-cd7c-4c17-807f-df901b2263d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fcf196a-dcf9-47c7-b961-26e6ba3c12b5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-correlation-request-id": [ + "6780b46c-a3ab-48ae-9829-ec6568b3e816" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152539Z:6780b46c-a3ab-48ae-9829-ec6568b3e816" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "710186f8-3dd9-4f69-b71f-89a916940425" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05046ccd-0988-4e3e-afda-9e759a7328a2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-correlation-request-id": [ + "ede3d1d0-405b-4933-9b1d-3611e9bb92a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152540Z:ede3d1d0-405b-4933-9b1d-3611e9bb92a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87a2c765-85b2-4290-8b3b-630aef24a2d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "830b4acb-3a42-43ba-a292-dce2772db947" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-correlation-request-id": [ + "1d94fa08-01f9-4abd-af85-1f5738bcd387" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152541Z:1d94fa08-01f9-4abd-af85-1f5738bcd387" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18ff7623-02a6-433c-ab59-64ddeac9e23b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b78dce3-c441-4f9b-969f-f1be6bd669f8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-correlation-request-id": [ + "b626e10f-1d1f-4add-bf00-d13d0b63ea9f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152543Z:b626e10f-1d1f-4add-bf00-d13d0b63ea9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:42 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "393795f3-0ef7-4a03-ace4-f5f4f8293283" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86cb170c-09ed-4408-8352-bae1d29ca790" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-correlation-request-id": [ + "4508d9cd-18bb-4fc3-964a-607ab0a53c1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152544Z:4508d9cd-18bb-4fc3-964a-607ab0a53c1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47041a6c-d219-4d3d-a12c-bcbfb2f46f60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9fb2eaa-a1fe-45e7-aa42-f0843bf218da" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-correlation-request-id": [ + "ac9f6a61-6473-4d3b-8049-785b86583e8c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152546Z:ac9f6a61-6473-4d3b-8049-785b86583e8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:45 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "782b0de3-750c-471e-9d51-52eea3665a85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f21ae069-bc4c-47fe-b01f-c0e647fd8842" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-correlation-request-id": [ + "f2d68616-7829-4cda-8c1c-2153eb556077" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152547Z:f2d68616-7829-4cda-8c1c-2153eb556077" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8c65a00-d785-4f10-86f8-4861ac65bda9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "451f2bae-6e05-4478-b5a5-236a1d9a8ab7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-correlation-request-id": [ + "57fce165-b373-4d97-9ff3-de9730930874" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152548Z:57fce165-b373-4d97-9ff3-de9730930874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e9994af-4ced-4ce5-b13a-b0ec05db0127" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c3a38eb3-88ae-4961-8d17-6c0a7c12976a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-correlation-request-id": [ + "b8a0271f-70af-4fe6-ad94-254ff037ee7d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152549Z:b8a0271f-70af-4fe6-ad94-254ff037ee7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:49 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "666cbe47-6329-43ef-8209-d1297ef3744a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3cf7a74d-a6a9-4ffa-910a-3e3a3d9bb9bf" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-correlation-request-id": [ + "5a36d77c-837d-4e0c-95f8-af39eb1161d7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152551Z:5a36d77c-837d-4e0c-95f8-af39eb1161d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26b2a4d-65fc-43a7-a05f-d73ba66c4878" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d181cb87-6f4b-4c0c-a268-39d0d3a040f6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-correlation-request-id": [ + "d3b0379a-bd17-4012-9f7c-f00c7cba1e21" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152552Z:d3b0379a-bd17-4012-9f7c-f00c7cba1e21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "726affaa-ce2d-4280-a6bf-2013a3330d88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8465482e-22a4-4163-badb-9d906c8f713a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-correlation-request-id": [ + "a2c025de-0b22-4e2a-9073-726234a4e3b2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152553Z:a2c025de-0b22-4e2a-9073-726234a4e3b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:53 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77e20672-136f-4b17-9fa0-5172baf4ac83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7aa8b76-1bb3-4b3d-84f6-28572b5ff527" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-correlation-request-id": [ + "434fe393-ae63-49ca-9864-c164a8becdcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152555Z:434fe393-ae63-49ca-9864-c164a8becdcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:54 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd7f5f08-2ecf-45f1-a453-a2483db736bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3e12d28f-3d03-49d4-ac8a-4317cd87a20f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-correlation-request-id": [ + "8e8157d6-fffc-4fbc-8a34-5a1ecf81e216" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152556Z:8e8157d6-fffc-4fbc-8a34-5a1ecf81e216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:56 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "233d440a-980c-4d36-a0a7-d90dfd5a414d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "163dd5c8-a8b1-4411-8d9d-c22174659c77" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-correlation-request-id": [ + "aaf81368-2eb6-45c8-981a-840e3e9ee727" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152557Z:aaf81368-2eb6-45c8-981a-840e3e9ee727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5408050e-9cf3-4d58-bbde-ba31938ec989" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01ecfc7d-8826-42a8-bc72-f30c8357b86e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-correlation-request-id": [ + "d2f26bbb-cc7a-4040-9b52-478e5fb98f93" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152559Z:d2f26bbb-cc7a-4040-9b52-478e5fb98f93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:58 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd981ce8-17f5-43ff-afe3-5071a02a20d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bae8505f-90fa-4fa4-b044-25850d082bfe" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-correlation-request-id": [ + "eb511409-1f53-4b68-a9dd-7820f4b7fdf1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152600Z:eb511409-1f53-4b68-a9dd-7820f4b7fdf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:25:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aeefe78d-c5ab-43ed-89c1-8453e0200585" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4db9765d-f098-4296-aeac-360ff6736121" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-correlation-request-id": [ + "d21950e0-d01b-456a-94a1-1037fe6e1d24" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152601Z:d21950e0-d01b-456a-94a1-1037fe6e1d24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:01 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bebbb133-c36f-4aa2-9e82-9c05080ae357" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e5f60e47-69fd-4e0c-9428-06e8f3b534c4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-correlation-request-id": [ + "fa188998-3513-4774-a5fd-f82ea0832b8e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152603Z:fa188998-3513-4774-a5fd-f82ea0832b8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:02 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2661486f-1882-4f12-bb43-1ca8ca3b0c0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d2e3926-b78d-40a9-b7d8-3e2571462652" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-correlation-request-id": [ + "9393ca8d-4a16-472d-bdde-8892b0855c20" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152604Z:9393ca8d-4a16-472d-bdde-8892b0855c20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d10038b-e738-4015-af84-44d4e1cfdfaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d929d9e2-1692-4497-81ca-4c893d22fbe1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-correlation-request-id": [ + "6428a6e1-d772-44fd-bde0-cd3010796dc7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152605Z:6428a6e1-d772-44fd-bde0-cd3010796dc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7340d6a1-d15a-4215-a6d1-b377d6ecaf05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bd448c6-6912-4bcb-a569-0aeb076da86e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-correlation-request-id": [ + "59ec0d41-ab0b-48e4-8157-4c425ed39cbb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152606Z:59ec0d41-ab0b-48e4-8157-4c425ed39cbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c1f090e-6666-4ba4-896c-7e9cf5703a3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8569a46b-6fc9-42d5-93d2-06129f71db45" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-correlation-request-id": [ + "22cd3a88-a759-4b54-9cab-c81f8ad67956" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152608Z:22cd3a88-a759-4b54-9cab-c81f8ad67956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:07 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8487ea3-de74-43a0-99fa-01fbff203221" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c1b940da-4c4c-4d46-bbb8-7af0e531bc02" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-correlation-request-id": [ + "e455083b-c8e0-4d67-9610-d1cb3feeb7eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152609Z:e455083b-c8e0-4d67-9610-d1cb3feeb7eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2964bd0d-f785-4616-8170-7cab10f8bf95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1daa8e49-9c18-49f4-8e99-5797dae64b2b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-correlation-request-id": [ + "afc081a3-e6fe-4f61-ba22-a0cd94cb15fc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152610Z:afc081a3-e6fe-4f61-ba22-a0cd94cb15fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:10 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c347dc80-46c6-4478-bd73-969dddd92e46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11aa8b24-bf81-4edc-83d8-7225e841be61" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-correlation-request-id": [ + "b9761d79-72aa-48b1-bf25-50cd504d518c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152612Z:b9761d79-72aa-48b1-bf25-50cd504d518c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:11 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09070d18-4fc7-41a2-89c1-8ddb5a9e33e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31c5b9c3-83f7-4ae4-959d-e5b431edcbd2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-correlation-request-id": [ + "b236d84b-8c20-4af2-9b9a-8095f4c29d65" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152613Z:b236d84b-8c20-4af2-9b9a-8095f4c29d65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af25a0fe-2ddd-48a4-aea5-6f1e868ee5db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e3670680-172e-463d-b054-2c3d4848e034" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-correlation-request-id": [ + "f8a794a6-41fb-4431-9309-c7bfbb80c21f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152614Z:f8a794a6-41fb-4431-9309-c7bfbb80c21f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:14 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52d478fd-e960-4db3-b25e-fffbb02791e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18b9db41-9385-41a8-9625-11650af21bb7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-correlation-request-id": [ + "dbf8869c-605a-4392-95ea-b2e6a3393f9f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152616Z:dbf8869c-605a-4392-95ea-b2e6a3393f9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:15 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b2a167c-042e-4542-bfc5-a88fc14b032b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80168b92-8bad-4f0a-9b2a-97ab0d0ea92f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-correlation-request-id": [ + "5ff8d7f3-2fef-4df8-8a75-9137192d2c52" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152617Z:5ff8d7f3-2fef-4df8-8a75-9137192d2c52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8ae8128-10fd-4880-ab4c-e7130e050d41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1dcc48ac-f04b-4d20-b81e-b80266503f31" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-correlation-request-id": [ + "15413f77-c928-4897-9581-cd85241bcce7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152618Z:15413f77-c928-4897-9581-cd85241bcce7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:18 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31b9927c-8f09-4c19-988e-c1ea12b0b041" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95c18955-87a0-4d99-b764-2b57677d48f6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-correlation-request-id": [ + "1c7d71d0-0aaa-45be-a1c6-dc35727c4c83" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152620Z:1c7d71d0-0aaa-45be-a1c6-dc35727c4c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe7f3f9e-e26e-4467-823b-c08a7ee6f7e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "721fe542-96b8-44fd-a8d0-cf46b832ef6b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "x-ms-correlation-request-id": [ + "50cb67d0-5fd3-488f-afb1-ba14a38ca2f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152621Z:50cb67d0-5fd3-488f-afb1-ba14a38ca2f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:20 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac586dd-ec41-48b5-8c6e-71904fe2148a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3186d1b4-d5a3-4bb1-add0-bed5eb11a627" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "x-ms-correlation-request-id": [ + "1caf62e9-c1d4-4e98-a2e2-f3b818bf0ccf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152622Z:1caf62e9-c1d4-4e98-a2e2-f3b818bf0ccf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "656275a9-90d7-4548-9c5b-54045f3ef09b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "076febdf-9348-43c2-b7a3-d64f361b06ec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "x-ms-correlation-request-id": [ + "057dc3fd-1b56-4479-afc0-3d3beb00bd71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152624Z:057dc3fd-1b56-4479-afc0-3d3beb00bd71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdd48bc6-0e46-4248-9bb1-d2c9556fc0ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b40456d9-fe4f-4c40-9cd8-c705e97e6c8e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "x-ms-correlation-request-id": [ + "724cfc49-2521-4bd2-93ae-8185c3f785bb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152625Z:724cfc49-2521-4bd2-93ae-8185c3f785bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:25 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ee99e8c-115b-401c-97af-10f9bd5d0d0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef1d7e8a-d72d-41d1-b731-41084da42abd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-correlation-request-id": [ + "23c4f655-0757-4bb9-82b2-f1b1c717920f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152627Z:23c4f655-0757-4bb9-82b2-f1b1c717920f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "934fbf66-684b-4d9a-bb96-d16dd4ddfd11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df1d7d3e-8099-413f-b216-23a8276648ab" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "x-ms-correlation-request-id": [ + "a852c8e4-ce34-46ca-802c-2859b716cb11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152628Z:a852c8e4-ce34-46ca-802c-2859b716cb11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "540a0c46-7a4f-4399-a8b1-35248ee0c7c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6350af69-3962-4d38-9d0e-8f2151ec2801" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "x-ms-correlation-request-id": [ + "01657c37-61e0-4e23-b990-0979e5c22d02" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152629Z:01657c37-61e0-4e23-b990-0979e5c22d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:29 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dd2c992-c781-4696-a4ee-aecb8c667b71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76cdda42-1b6d-47eb-a4e7-d15a7ee9afed" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "x-ms-correlation-request-id": [ + "41caa6e9-2fb0-4ffe-bf59-867889920c24" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152631Z:41caa6e9-2fb0-4ffe-bf59-867889920c24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c0d3c25-7fa5-4a87-95ce-e6d717667064" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a2eafff-f6a2-4ce5-8c09-714b1c96e060" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "x-ms-correlation-request-id": [ + "b90785f4-a29c-4e21-b822-212c67b53375" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152633Z:b90785f4-a29c-4e21-b822-212c67b53375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:32 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d1e58da-8c0b-4b56-8d6e-7f3db649c0ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11e76669-056e-4cc7-afec-04ba281658a5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "x-ms-correlation-request-id": [ + "7ec46b60-121a-4c68-b013-5c0745bf4960" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152634Z:7ec46b60-121a-4c68-b013-5c0745bf4960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbcc6445-fced-46e1-b106-7ad8209a8f8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "19df02db-9705-43a1-9544-7792e8d883b3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "x-ms-correlation-request-id": [ + "377501cf-9cb5-4239-af5f-f6817217f1b5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152637Z:377501cf-9cb5-4239-af5f-f6817217f1b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:36 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33df75c7-de2b-4ac1-8ae5-c6c3fe9cf5b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4d356d3-0430-4d5d-93e2-7626efc8853e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-correlation-request-id": [ + "f9bbdd29-9987-4bf1-964f-643cc39bcbd6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152638Z:f9bbdd29-9987-4bf1-964f-643cc39bcbd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:37 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b63cebc-c75e-4cd2-9075-d9f15099dfb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "efa28995-ca7b-47d8-9e28-1a5c8bef4d77" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "x-ms-correlation-request-id": [ + "6509a4b5-c4d5-4475-b8c8-7ee29960b38e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152640Z:6509a4b5-c4d5-4475-b8c8-7ee29960b38e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:39 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a841bef6-038a-485a-9ca6-972282530ab7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d501a84b-8426-4bb0-88f6-cd572b3b227c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "x-ms-correlation-request-id": [ + "1f6e65d9-b1f9-4d69-adfb-69c2f40f53f3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152641Z:1f6e65d9-b1f9-4d69-adfb-69c2f40f53f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7798279-fd86-4f93-a9d1-5b436bed788c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a283067-85cc-4314-b121-b9e5726d7a99" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "x-ms-correlation-request-id": [ + "b786a2fc-fcc8-4d07-b2f6-b9907f9a385b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152643Z:b786a2fc-fcc8-4d07-b2f6-b9907f9a385b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:42 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "231855cc-4dea-48da-b3d3-38e7032559c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecea33b0-a560-48a5-b1a8-12ea29f5e9c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "x-ms-correlation-request-id": [ + "712f794f-81c1-47b2-a9cf-496854ff63da" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152644Z:712f794f-81c1-47b2-a9cf-496854ff63da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:43 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "509df707-6e0a-4a4b-8bf9-40863e5768c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4b9df6a2-c3f2-4219-b3b0-dfd439855922" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "x-ms-correlation-request-id": [ + "f24d795e-9382-470a-964a-d856a7b6a4ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152645Z:f24d795e-9382-470a-964a-d856a7b6a4ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04b32593-7674-460e-9214-789f4be8d52b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eff8f448-1510-472a-a53d-3f383f9e3c23" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "x-ms-correlation-request-id": [ + "a2323a83-dd41-4113-a04c-f7d217fc31a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152647Z:a2323a83-dd41-4113-a04c-f7d217fc31a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e98cf35e-c442-4647-a2e8-d10c82a197a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4346b303-787c-4a25-928e-8a2e591fdc4b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "x-ms-correlation-request-id": [ + "3e2259ff-707d-41aa-b8c2-80d4cd376eed" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152648Z:3e2259ff-707d-41aa-b8c2-80d4cd376eed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd35c258-80d2-4b37-b79a-cf280cfb6217" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "853c565a-9b66-493d-8648-287846b7d491" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "x-ms-correlation-request-id": [ + "f32acc60-5dca-49ce-ab03-937845c7a787" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152649Z:f32acc60-5dca-49ce-ab03-937845c7a787" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c35381f8-3eb4-4ef0-92cc-800e76315617" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7056c586-7863-40da-88c2-2ec7263b3048" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "x-ms-correlation-request-id": [ + "df7409b1-bdce-4e6e-8200-146e0a393e75" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152651Z:df7409b1-bdce-4e6e-8200-146e0a393e75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75455ee3-997e-4e03-a2ac-51d75457fe7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3045180-6888-4a06-a65d-325da09b3a06" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "x-ms-correlation-request-id": [ + "cd6287d5-f870-464a-a2db-f504d6da1936" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152653Z:cd6287d5-f870-464a-a2db-f504d6da1936" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23e07326-ce42-4f75-a1ae-3661abf022c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5454b66-f91c-4bb5-9eb6-4b4ee660de1d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11827" + ], + "x-ms-correlation-request-id": [ + "8758a415-99a9-4380-818c-34b7cbeb110b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152654Z:8758a415-99a9-4380-818c-34b7cbeb110b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:53 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc5f6f6f-3b66-4e12-83b9-a21c7bc35b35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61e48e84-1491-40cb-b27f-37170f67d909" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], + "x-ms-correlation-request-id": [ + "e2910545-78eb-4f60-8c35-e862ea46f8f6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152656Z:e2910545-78eb-4f60-8c35-e862ea46f8f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:55 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccbb4b68-947f-4468-8183-53299f29d5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "816826d3-4848-423b-bbe6-4f1763f0b66d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11825" + ], + "x-ms-correlation-request-id": [ + "e7fcafab-7d4b-4e6a-821b-5727e48c54a2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152657Z:e7fcafab-7d4b-4e6a-821b-5727e48c54a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:56 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a1f6b16-ce67-4323-81de-4500ddab2dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "302fccdf-b0fc-4cba-aec4-f7ea05c17033" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11824" + ], + "x-ms-correlation-request-id": [ + "b7df2cbe-0304-4ea2-aedd-1a08bfc1e5c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152658Z:b7df2cbe-0304-4ea2-aedd-1a08bfc1e5c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "752fa281-d236-4ba4-a9bf-19b334c9ec4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20638314-80d5-4902-8bb8-3a123b7183b1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], + "x-ms-correlation-request-id": [ + "87221bd7-5dd8-4f4e-a580-e1f7a5f5529c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152700Z:87221bd7-5dd8-4f4e-a580-e1f7a5f5529c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:26:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41d8e42e-2bfb-4593-b3d1-ab83cbe14fe0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d9090d1c-9ce6-4819-b6ff-0f43dcccce21" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], + "x-ms-correlation-request-id": [ + "3cf89181-d7ce-49f2-bdd2-8766c0d7fbad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152701Z:3cf89181-d7ce-49f2-bdd2-8766c0d7fbad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da7b7918-fd61-4d11-b8cb-7c089d8542aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5810588a-88a3-4227-a678-c118ccb9f9bc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11821" + ], + "x-ms-correlation-request-id": [ + "fb688726-5e37-49a0-83a6-4d4548a93c8f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152703Z:fb688726-5e37-49a0-83a6-4d4548a93c8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:02 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cbbe3db-9077-418a-9bc4-06e153cffd4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30b5c089-0dca-49b2-9ae4-7ae7b6570b81" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], + "x-ms-correlation-request-id": [ + "a1fb35ab-1862-4d8e-904e-e2300486c5a0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152704Z:a1fb35ab-1862-4d8e-904e-e2300486c5a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0376db8-9bd0-4ea8-8c4d-b8beeb54f215" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73e8b602-2f71-4e5a-9c8d-c560da62fc17" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11819" + ], + "x-ms-correlation-request-id": [ + "145427fb-256a-4a2b-8038-5e3e0f1dbba5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152705Z:145427fb-256a-4a2b-8038-5e3e0f1dbba5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:04 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e753a99e-254d-4d0a-a448-c4baf1a0f3f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e34b0c13-d7ea-4ac0-9a7e-b9c47db2940a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11818" + ], + "x-ms-correlation-request-id": [ + "7f7ec894-2c06-40a8-99b9-3550ce2b9131" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152707Z:7f7ec894-2c06-40a8-99b9-3550ce2b9131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66b4e8fd-621f-4acb-8a07-8d2160f7ca0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43918d4c-120b-4a5d-bcaa-bb73d14afc0b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11817" + ], + "x-ms-correlation-request-id": [ + "9f11bf03-62e3-427c-8991-9e75840b88f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152708Z:9f11bf03-62e3-427c-8991-9e75840b88f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:07 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc47f33a-89ee-47d5-974c-3bb00a2f95d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fd3ec7fa-0a54-4b37-a78e-97531484dd3f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], + "x-ms-correlation-request-id": [ + "ac76958e-e8fe-4605-8688-7bd054f10600" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152709Z:ac76958e-e8fe-4605-8688-7bd054f10600" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d52c4382-1921-48e4-af14-421f09f1d9d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2112918e-3214-4fcb-a71b-df5a374b5db8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], + "x-ms-correlation-request-id": [ + "17d7e4b4-9d02-4a9a-8816-0ae7a5fd194d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152711Z:17d7e4b4-9d02-4a9a-8816-0ae7a5fd194d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:11 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81eec26a-5cb2-4feb-87d8-6c9c18763b5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de0f2f39-9880-4a04-b225-2b0586220148" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11814" + ], + "x-ms-correlation-request-id": [ + "6c7808d7-dc78-4cc0-a446-bf59717f7432" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152712Z:6c7808d7-dc78-4cc0-a446-bf59717f7432" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bb9e4e7-ed14-4e6d-9746-e484293faa6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f5cd103-dd71-44b2-a6bf-6e8e4f58967e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11813" + ], + "x-ms-correlation-request-id": [ + "6913d968-8ff0-4c1a-96a1-58183630617b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152713Z:6913d968-8ff0-4c1a-96a1-58183630617b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:13 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e63660bf-f357-41e5-9323-c734d1f5ee85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2480366b-f5a8-4e0e-92fa-c4040185fd15" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" + ], + "x-ms-correlation-request-id": [ + "2221e84e-3e99-405e-8f02-1819a15b7a87" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152746Z:2221e84e-3e99-405e-8f02-1819a15b7a87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:45 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3ceb4d8-7a22-4bab-8fb6-bb01181f191b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e3ac46d-63d6-45c2-9609-b1fb7ea9564f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], + "x-ms-correlation-request-id": [ + "a884bcad-f62d-4dbc-bc52-3ceb77b3d486" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152850Z:a884bcad-f62d-4dbc-bc52-3ceb77b3d486" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:50 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Transferring\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c683c9b4-00ae-4b41-9fa2-60eaa8273447" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76df6435-6438-40ba-a87e-d9a4bba7b970" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" + ], + "x-ms-correlation-request-id": [ + "1b2fe131-5b62-4834-b005-ef7e2304eb22" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152953Z:1b2fe131-5b62-4834-b005-ef7e2304eb22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:29:52 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"20352\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9icmVha1JlcGxpY2F0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70ecb7ae-80f2-42bc-923f-f81039f85412" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "c1677f86-8391-4f04-bd48-8e30c4d47564" + ], + "x-ms-correlation-request-id": [ + "c1677f86-8391-4f04-bd48-8e30c4d47564" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152715Z:c1677f86-8391-4f04-bd48-8e30c4d47564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9icmVha1JlcGxpY2F0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"forceBreakReplication\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "322eeda3-ccf4-40c5-a03f-bc055cb325f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "3e180646-4f6d-456d-8c61-25ca692989c0" + ], + "x-ms-correlation-request-id": [ + "3e180646-4f6d-456d-8c61-25ca692989c0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152922Z:3e180646-4f6d-456d-8c61-25ca692989c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:29:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy81NWUxZWVlNy1lNDlmLTQ0MjgtODdhMC0yODZhNmRkMjIwOTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c2c72d76-7e21-4e2a-82cc-addd3c65e8c5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11812" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "10230d95-2787-42f2-a1d9-61bf8b62fbf2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152745Z:10230d95-2787-42f2-a1d9-61bf8b62fbf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:45 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092\",\r\n \"name\": \"55e1eee7-e49f-4428-87a0-286a6dd22092\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:27:15.0987003Z\",\r\n \"endTime\": \"2020-10-23T15:27:22.698532Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy81NWUxZWVlNy1lNDlmLTQ0MjgtODdhMC0yODZhNmRkMjIwOTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be479d62-d26f-4a73-bcdb-65d3aea5d58c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11811" + ], + "x-ms-correlation-request-id": [ + "f4e56ee5-59d9-43e7-ab02-fb2b11a1758f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152745Z:f4e56ee5-59d9-43e7-ab02-fb2b11a1758f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:27:45 GMT" + ], + "Content-Length": [ + "2355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A27%3A15.13368Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/resyncReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXN5bmNSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bcbd556-dca0-42c4-b12d-68571846a85d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" + ], + "x-ms-correlation-request-id": [ + "be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152820Z:be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82Y2RkOGI2Ni0wZDJiLTQwODctYTIwZS04MzRmYjYwN2M0MmQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "474d64ea-1f07-47a0-8617-81938658c0f2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11807" + ], + "x-ms-correlation-request-id": [ + "2d8dc51f-cf20-4c7d-87f3-b9c9db16d5a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152850Z:2d8dc51f-cf20-4c7d-87f3-b9c9db16d5a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:49 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d\",\r\n \"name\": \"6cdd8b66-0d2b-4087-a20e-834fb607c42d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:28:20.0940102Z\",\r\n \"endTime\": \"2020-10-23T15:28:27.4828904Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82Y2RkOGI2Ni0wZDJiLTQwODctYTIwZS04MzRmYjYwN2M0MmQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97c0f406-f324-4e81-83f7-c94050ea4c89" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11806" + ], + "x-ms-correlation-request-id": [ + "50ca35fb-aee5-46cf-8bda-b2798d32680a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152850Z:50ca35fb-aee5-46cf-8bda-b2798d32680a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:28:49 GMT" + ], + "Content-Length": [ + "2392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A28%3A20.1230783Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Mirrored\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iNjVkN2QyNi01ZjRkLTRjNTUtOWMwYi05ZmZmNTJmZGE3ZWY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd334043-600e-4c88-8333-767269192102" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11804" + ], + "x-ms-correlation-request-id": [ + "6540db1c-d3b1-4838-bc97-d24aff453cf6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152952Z:6540db1c-d3b1-4838-bc97-d24aff453cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:29:52 GMT" + ], + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef\",\r\n \"name\": \"b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:29:22.2059Z\",\r\n \"endTime\": \"2020-10-23T15:29:29.5129814Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iNjVkN2QyNi01ZjRkLTRjNTUtOWMwYi05ZmZmNTJmZGE3ZWY/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b2dbc1c-f876-4a94-b7a8-29c7f3e7aa28" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], + "x-ms-correlation-request-id": [ + "e850cd0e-b08b-47bd-940b-763b70fc637c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T152952Z:e850cd0e-b08b-47bd-940b-763b70fc637c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:29:52 GMT" + ], + "Content-Length": [ + "2357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A29%3A22.2574433Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/deleteReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9kZWxldGVSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b184b12-7013-4698-b685-6cd0d4f595b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" + ], + "x-ms-correlation-request-id": [ + "b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153024Z:b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:30:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yOWJmZDJlYy05NDM3LTQ5ZmUtOTkyMS1hMWNlZmI1NWFhYmU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e8af610-7839-414e-9906-2ba38bc80055" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], + "x-ms-correlation-request-id": [ + "19b7548f-bed5-4142-8789-0794268c989a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153054Z:19b7548f-bed5-4142-8789-0794268c989a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:30:54 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe\",\r\n \"name\": \"29bfd2ec-9437-49fe-9921-a1cefb55aabe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:30:24.4946456Z\",\r\n \"endTime\": \"2020-10-23T15:30:26.264521Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yOWJmZDJlYy05NDM3LTQ5ZmUtOTkyMS1hMWNlZmI1NWFhYmU/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "25016d71-2354-4541-8555-9ec153a4d1e7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11800" + ], + "x-ms-correlation-request-id": [ + "3c7f4782-7d6d-4a8f-8a14-0f5fd8f920b6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153054Z:3c7f4782-7d6d-4a8f-8a14-0f5fd8f920b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:30:54 GMT" + ], + "Content-Length": [ + "1794" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A30%3A24.5359135Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {},\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4849?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98e437d3-6a93-40f6-9f47-7ddef8bf592b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e63d1b47-1321-4e30-9d31-faf86b7d05cc" + ], + "x-ms-correlation-request-id": [ + "e63d1b47-1321-4e30-9d31-faf86b7d05cc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153059Z:e63d1b47-1321-4e30-9d31-faf86b7d05cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" + ], + "x-ms-correlation-request-id": [ + "30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153114Z:30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:31:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0743c5da-4514-4a77-8b36-744eb0b45dc0" + ], + "x-ms-correlation-request-id": [ + "0743c5da-4514-4a77-8b36-744eb0b45dc0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153130Z:0743c5da-4514-4a77-8b36-744eb0b45dc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:31:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "836cb833-50f5-4323-8c1e-32e43a6db179" + ], + "x-ms-correlation-request-id": [ + "836cb833-50f5-4323-8c1e-32e43a6db179" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153145Z:836cb833-50f5-4323-8c1e-32e43a6db179" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:31:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "415a4548-8843-4cd3-a169-7b5a5fef4a75" + ], + "x-ms-correlation-request-id": [ + "415a4548-8843-4cd3-a169-7b5a5fef4a75" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153200Z:415a4548-8843-4cd3-a169-7b5a5fef4a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:32:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "0f91d04f-4541-481a-8885-8730946e1534" + ], + "x-ms-correlation-request-id": [ + "0f91d04f-4541-481a-8885-8730946e1534" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153216Z:0f91d04f-4541-481a-8885-8730946e1534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:32:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "00740a19-cae3-4030-964c-b1d9297b340d" + ], + "x-ms-correlation-request-id": [ + "00740a19-cae3-4030-964c-b1d9297b340d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153231Z:00740a19-cae3-4030-964c-b1d9297b340d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:32:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" + ], + "x-ms-correlation-request-id": [ + "7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153246Z:7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:32:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "909d566f-e904-414c-bad6-b7656b84ca3b" + ], + "x-ms-correlation-request-id": [ + "909d566f-e904-414c-bad6-b7656b84ca3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153302Z:909d566f-e904-414c-bad6-b7656b84ca3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:33:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" + ], + "x-ms-correlation-request-id": [ + "35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153317Z:35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:33:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "d98a0df8-3469-45bf-815b-2ef60d8b447f" + ], + "x-ms-correlation-request-id": [ + "d98a0df8-3469-45bf-815b-2ef60d8b447f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153333Z:d98a0df8-3469-45bf-815b-2ef60d8b447f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:33:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "4ed069a3-3350-4026-b432-55d5478c2afa" + ], + "x-ms-correlation-request-id": [ + "4ed069a3-3350-4026-b432-55d5478c2afa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153348Z:4ed069a3-3350-4026-b432-55d5478c2afa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:33:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" + ], + "x-ms-correlation-request-id": [ + "e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153403Z:e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:34:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "89c3b91b-cb81-48cb-b95f-9b16e9233728" + ], + "x-ms-correlation-request-id": [ + "89c3b91b-cb81-48cb-b95f-9b16e9233728" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153419Z:89c3b91b-cb81-48cb-b95f-9b16e9233728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:34:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "acebb157-0166-4b4b-8bed-78fc0efdd6e3" + ], + "x-ms-correlation-request-id": [ + "acebb157-0166-4b4b-8bed-78fc0efdd6e3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153434Z:acebb157-0166-4b4b-8bed-78fc0efdd6e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:34:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "6443a18e-ae78-40f3-bdd7-ce2d699078c9" + ], + "x-ms-correlation-request-id": [ + "6443a18e-ae78-40f3-bdd7-ce2d699078c9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153449Z:6443a18e-ae78-40f3-bdd7-ce2d699078c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:34:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "528930aa-37ca-42d0-9ac4-feaa28b828ff" + ], + "x-ms-correlation-request-id": [ + "528930aa-37ca-42d0-9ac4-feaa28b828ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153505Z:528930aa-37ca-42d0-9ac4-feaa28b828ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:35:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "9f004703-baf6-4311-8eca-bf2d459336d5" + ], + "x-ms-correlation-request-id": [ + "9f004703-baf6-4311-8eca-bf2d459336d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153520Z:9f004703-baf6-4311-8eca-bf2d459336d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:35:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "952461b9-b4d9-4b2f-9ee6-e3e289be1b55" + ], + "x-ms-correlation-request-id": [ + "952461b9-b4d9-4b2f-9ee6-e3e289be1b55" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153536Z:952461b9-b4d9-4b2f-9ee6-e3e289be1b55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:35:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "b3a5d154-dcb2-48f0-a674-6d0711418264" + ], + "x-ms-correlation-request-id": [ + "b3a5d154-dcb2-48f0-a674-6d0711418264" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153551Z:b3a5d154-dcb2-48f0-a674-6d0711418264" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:35:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "c8315f9b-6dbb-4afc-b800-1092514ca79d" + ], + "x-ms-correlation-request-id": [ + "c8315f9b-6dbb-4afc-b800-1092514ca79d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153607Z:c8315f9b-6dbb-4afc-b800-1092514ca79d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:36:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "f0ec2ec9-d576-48d6-98ca-58927a3407a6" + ], + "x-ms-correlation-request-id": [ + "f0ec2ec9-d576-48d6-98ca-58927a3407a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153622Z:f0ec2ec9-d576-48d6-98ca-58927a3407a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:36:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" + ], + "x-ms-correlation-request-id": [ + "4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153638Z:4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:36:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "555a4e0c-300b-473a-bd26-a5755ce4a234" + ], + "x-ms-correlation-request-id": [ + "555a4e0c-300b-473a-bd26-a5755ce4a234" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153653Z:555a4e0c-300b-473a-bd26-a5755ce4a234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:36:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "430ba00b-cf96-45cc-9415-5fb208590e8c" + ], + "x-ms-correlation-request-id": [ + "430ba00b-cf96-45cc-9415-5fb208590e8c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153709Z:430ba00b-cf96-45cc-9415-5fb208590e8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "71f8968f-98ee-4b23-95d3-ca30331405ec" + ], + "x-ms-correlation-request-id": [ + "71f8968f-98ee-4b23-95d3-ca30331405ec" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153724Z:71f8968f-98ee-4b23-95d3-ca30331405ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "ed1c7bc9-b4db-41ca-91b3-f32018ca6672" + ], + "x-ms-correlation-request-id": [ + "ed1c7bc9-b4db-41ca-91b3-f32018ca6672" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153739Z:ed1c7bc9-b4db-41ca-91b3-f32018ca6672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "221f2d66-d275-4c52-92d0-49218e40ad79" + ], + "x-ms-correlation-request-id": [ + "221f2d66-d275-4c52-92d0-49218e40ad79" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153740Z:221f2d66-d275-4c52-92d0-49218e40ad79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps197?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eba5464e-543a-4a08-a266-886741a396c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" + ], + "x-ms-correlation-request-id": [ + "4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153743Z:4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "0f03a349-e229-4339-a872-ffa57ccb609c" + ], + "x-ms-correlation-request-id": [ + "0f03a349-e229-4339-a872-ffa57ccb609c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153758Z:0f03a349-e229-4339-a872-ffa57ccb609c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:37:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "2af4d173-f595-4b0b-9f40-c4f670636683" + ], + "x-ms-correlation-request-id": [ + "2af4d173-f595-4b0b-9f40-c4f670636683" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153814Z:2af4d173-f595-4b0b-9f40-c4f670636683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:38:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" + ], + "x-ms-correlation-request-id": [ + "2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153829Z:2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:38:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "ce575445-2880-4511-87af-128bc94958d2" + ], + "x-ms-correlation-request-id": [ + "ce575445-2880-4511-87af-128bc94958d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153857Z:ce575445-2880-4511-87af-128bc94958d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:38:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "e418a948-fed3-47cf-b152-14d4c8d1ab5c" + ], + "x-ms-correlation-request-id": [ + "e418a948-fed3-47cf-b152-14d4c8d1ab5c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153912Z:e418a948-fed3-47cf-b152-14d4c8d1ab5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:39:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "b9364f86-be30-488e-acc1-e6c8839d4f09" + ], + "x-ms-correlation-request-id": [ + "b9364f86-be30-488e-acc1-e6c8839d4f09" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153928Z:b9364f86-be30-488e-acc1-e6c8839d4f09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:39:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" + ], + "x-ms-correlation-request-id": [ + "18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153943Z:18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:39:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "d4e61e52-789a-416e-87fd-3b4351234904" + ], + "x-ms-correlation-request-id": [ + "d4e61e52-789a-416e-87fd-3b4351234904" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T153959Z:d4e61e52-789a-416e-87fd-3b4351234904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:39:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "be5287c1-1a78-4cc0-a3ca-54565ecafff5" + ], + "x-ms-correlation-request-id": [ + "be5287c1-1a78-4cc0-a3ca-54565ecafff5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154014Z:be5287c1-1a78-4cc0-a3ca-54565ecafff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:40:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "6eb7aed0-1a9b-41a4-9456-6f3eb510703e" + ], + "x-ms-correlation-request-id": [ + "6eb7aed0-1a9b-41a4-9456-6f3eb510703e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154029Z:6eb7aed0-1a9b-41a4-9456-6f3eb510703e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:40:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" + ], + "x-ms-correlation-request-id": [ + "440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154045Z:440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:40:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "deba1b52-781c-4ce1-beea-6a552b95ed3b" + ], + "x-ms-correlation-request-id": [ + "deba1b52-781c-4ce1-beea-6a552b95ed3b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154100Z:deba1b52-781c-4ce1-beea-6a552b95ed3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:41:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" + ], + "x-ms-correlation-request-id": [ + "df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154116Z:df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:41:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "8304c790-a722-4010-9b14-48611d9851f0" + ], + "x-ms-correlation-request-id": [ + "8304c790-a722-4010-9b14-48611d9851f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154131Z:8304c790-a722-4010-9b14-48611d9851f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:41:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "39d621f4-752b-4107-8986-604e6b491856" + ], + "x-ms-correlation-request-id": [ + "39d621f4-752b-4107-8986-604e6b491856" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154146Z:39d621f4-752b-4107-8986-604e6b491856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:41:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "0b83ee5d-a418-46fa-b47a-d0b907db36f0" + ], + "x-ms-correlation-request-id": [ + "0b83ee5d-a418-46fa-b47a-d0b907db36f0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154202Z:0b83ee5d-a418-46fa-b47a-d0b907db36f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:42:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "0676869b-4d99-41e3-8651-6a5c28a2cd2b" + ], + "x-ms-correlation-request-id": [ + "0676869b-4d99-41e3-8651-6a5c28a2cd2b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154217Z:0676869b-4d99-41e3-8651-6a5c28a2cd2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:42:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" + ], + "x-ms-correlation-request-id": [ + "6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154232Z:6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:42:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "bd0e1b01-6f54-4e84-b134-8695b85f244e" + ], + "x-ms-correlation-request-id": [ + "bd0e1b01-6f54-4e84-b134-8695b85f244e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154248Z:bd0e1b01-6f54-4e84-b134-8695b85f244e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:42:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" + ], + "x-ms-correlation-request-id": [ + "e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154303Z:e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:43:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "c12898de-bd73-4cab-b516-0cdb08fad972" + ], + "x-ms-correlation-request-id": [ + "c12898de-bd73-4cab-b516-0cdb08fad972" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154318Z:c12898de-bd73-4cab-b516-0cdb08fad972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:43:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "cb096604-4b94-4754-ab01-de89b8fd0369" + ], + "x-ms-correlation-request-id": [ + "cb096604-4b94-4754-ab01-de89b8fd0369" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154334Z:cb096604-4b94-4754-ab01-de89b8fd0369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:43:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "7160f4c4-a4c8-4fc3-9509-a50eda319c71" + ], + "x-ms-correlation-request-id": [ + "7160f4c4-a4c8-4fc3-9509-a50eda319c71" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154349Z:7160f4c4-a4c8-4fc3-9509-a50eda319c71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:43:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "1beeae88-7edf-47ec-b7d3-927297c8a485" + ], + "x-ms-correlation-request-id": [ + "1beeae88-7edf-47ec-b7d3-927297c8a485" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154405Z:1beeae88-7edf-47ec-b7d3-927297c8a485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:44:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "ffbb022e-df07-4dce-a82c-f3834848e4ee" + ], + "x-ms-correlation-request-id": [ + "ffbb022e-df07-4dce-a82c-f3834848e4ee" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154420Z:ffbb022e-df07-4dce-a82c-f3834848e4ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:44:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "2d53d129-1035-455b-92f2-cf2476238a60" + ], + "x-ms-correlation-request-id": [ + "2d53d129-1035-455b-92f2-cf2476238a60" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154435Z:2d53d129-1035-455b-92f2-cf2476238a60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:44:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" + ], + "x-ms-correlation-request-id": [ + "d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154451Z:d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:44:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "052b051e-912e-4662-86e1-ec47a65324de" + ], + "x-ms-correlation-request-id": [ + "052b051e-912e-4662-86e1-ec47a65324de" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154506Z:052b051e-912e-4662-86e1-ec47a65324de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:45:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "731a2049-51d5-481f-b7bc-fc90a1463f11" + ], + "x-ms-correlation-request-id": [ + "731a2049-51d5-481f-b7bc-fc90a1463f11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154521Z:731a2049-51d5-481f-b7bc-fc90a1463f11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:45:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "d47dafbc-a346-42d9-ae0b-152c676d5075" + ], + "x-ms-correlation-request-id": [ + "d47dafbc-a346-42d9-ae0b-152c676d5075" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154537Z:d47dafbc-a346-42d9-ae0b-152c676d5075" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:45:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "dd7aa1d4-a7a4-4f70-a307-9f785b545f01" + ], + "x-ms-correlation-request-id": [ + "dd7aa1d4-a7a4-4f70-a307-9f785b545f01" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154552Z:dd7aa1d4-a7a4-4f70-a307-9f785b545f01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:45:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "90e05790-38b1-4f1b-907e-271738e606c5" + ], + "x-ms-correlation-request-id": [ + "90e05790-38b1-4f1b-907e-271738e606c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154607Z:90e05790-38b1-4f1b-907e-271738e606c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:46:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "e1273768-874c-45e3-83ed-512771ca697c" + ], + "x-ms-correlation-request-id": [ + "e1273768-874c-45e3-83ed-512771ca697c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154623Z:e1273768-874c-45e3-83ed-512771ca697c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:46:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "b8fbef5f-017a-40e0-a7a1-42bb1856c854" + ], + "x-ms-correlation-request-id": [ + "b8fbef5f-017a-40e0-a7a1-42bb1856c854" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20201023T154623Z:b8fbef5f-017a-40e0-a7a1-42bb1856c854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 15:46:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VolumeReplication": [ + "ps4849", + "ps197", + "ps5048", + "ps8874", + "ps2690", + "ps7745", + "ps1960", + "ps1605" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs index 6eeaf860ebb4..310d1fe906c2 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/GetNetAppFilesActiveDirectory.cs @@ -52,14 +52,14 @@ public class GetAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase [Parameter( Mandatory = false, - HelpMessage = "The name of the ANF Active Directory")] + HelpMessage = "The ActiveDirectoryId of the ANF Active Directory")] [ValidateNotNullOrEmpty] [Alias("ActiveDirectoryName")] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activedirectory", nameof(ResourceGroupName), nameof(AccountName))] - public string Name { get; set; } + public string ActiveDirectoryId { get; set; } [Parameter( @@ -79,14 +79,14 @@ public override void ExecuteCmdlet() AccountName = NameParts[0]; } - if (Name != null) + if (ActiveDirectoryId != null) { - var anfActiveDirectory = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.FirstOrDefault(e => e.AdName == Name); - WriteObject(anfActiveDirectory?.ConvertToPs()); + var anfActiveDirectory = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.FirstOrDefault(e => e.ActiveDirectoryId == ActiveDirectoryId); + WriteObject(anfActiveDirectory?.ConvertToPs(ResourceGroupName, AccountName)); } else { - var anfActiveDirectories = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.ConvertToPs(); + var anfActiveDirectories = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName).ActiveDirectories?.ConvertToPs(ResourceGroupName, AccountName); WriteObject(anfActiveDirectories, true); } } diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs index f1a016a827a4..6e7c82808b0c 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs @@ -57,16 +57,6 @@ public class NewAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase nameof(ResourceGroupName))] public string AccountName { get; set; } - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF Active Directory")] - [ValidateNotNullOrEmpty] - [Alias("ActiveDirectoryName")] - [ResourceNameCompleter( - "Microsoft.NetApp/netAppAccounts/activeDirectory", - nameof(ResourceGroupName), - nameof(AccountName))] - public string Name { get; set; } [Parameter( Mandatory = false, @@ -121,7 +111,7 @@ public class NewAzureRmNetAppFilesActiceDirectory : AzureNetAppFilesCmdletBase Mandatory = false, HelpMessage = "Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier")] [ValidateNotNullOrEmpty] - public string[] BackupOperators { get; set; } + public string[] BackupOperator { get; set; } [Parameter( @@ -153,49 +143,40 @@ public override void ExecuteCmdlet() AccountName = NameParts[0]; } - if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + if (ShouldProcess($"{AccountName}.ActiveDirectory", string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); if (anfAccount == null) { - throw new ArgumentException($"Specified NetAppAccount with name '{this.Name}' does not extist in Resource Group '{this.ResourceGroupName}'"); + throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'"); } - - - if (anfAccount.ActiveDirectories?.FirstOrDefault(a => a.AdName == Name) != null) + + var activeDirectory = new Management.NetApp.Models.ActiveDirectory { - throw new ArgumentException($"A ActiveDirectory resource with name '{this.Name}' in account '{this.AccountName}' already exists. Please use Set/Update-AzNetAppFilesActiveDirectory to update an existing ActiveDirectory resource."); - } - else + AdName = AdName, + Dns = string.Join(",", Dns), + Domain = Domain, + SmbServerName = SmbServerName, + Username = Username, + Password = Password.ConvertToString(), + Site = Site, + OrganizationalUnit = OrganizationalUnit, + BackupOperators = BackupOperator, + KdcIP = KdcIP, + ServerRootCACertificate = ServerRootCACertificate + }; + if (anfAccount.ActiveDirectories == null) { - var activeDirectory = new Management.NetApp.Models.ActiveDirectory - { - AdName = Name, - Dns = string.Join(",", Dns), - Domain = Domain, - SmbServerName = SmbServerName, - Username = Username, - Password = Password.ConvertToString(), - Site = Site, - OrganizationalUnit = OrganizationalUnit, - BackupOperators = BackupOperators, - KdcIP = KdcIP, - ServerRootCACertificate = ServerRootCACertificate - }; - if (anfAccount.ActiveDirectories == null) - { - anfAccount.ActiveDirectories = new List(); - } - anfAccount.ActiveDirectories.Add(activeDirectory); - var netAppAccountBody = new NetAppAccountPatch() - { - ActiveDirectories = anfAccount.ActiveDirectories - }; - var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); - var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.AdName == Name); - WriteObject(updatedActiveDirectory.ConvertToPs()); + anfAccount.ActiveDirectories = new List(); } + anfAccount.ActiveDirectories.Add(activeDirectory); + var netAppAccountBody = new NetAppAccountPatch() + { + ActiveDirectories = anfAccount.ActiveDirectories + }; + var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); + var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.SmbServerName == SmbServerName); + WriteObject(updatedActiveDirectory.ConvertToPs(ResourceGroupName, AccountName)); } } } diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs index 087bbe9810c7..695dc775fa79 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.cs @@ -53,20 +53,18 @@ public class RemoveAzureRmNetAppFilesActiveDirectory: AzureNetAppFilesCmdletBase [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF active directory", + HelpMessage = "The ID of the ANF active directory", ParameterSetName = FieldsParameterSet)] [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF active directory", + HelpMessage = "The ID of the ANF active directory", ParameterSetName = ParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - [Alias("ActiveDirectoryName")] + [ValidateNotNullOrEmpty] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activeDirectory", nameof(ResourceGroupName), nameof(AccountName))] - public string Name { get; set; } - + public string ActiveDirectoryId { get; set; } [Parameter( ParameterSetName = ParentObjectParameterSet, @@ -76,13 +74,21 @@ public class RemoveAzureRmNetAppFilesActiveDirectory: AzureNetAppFilesCmdletBase [ValidateNotNullOrEmpty] public PSNetAppFilesAccount AccountObject { get; set; } + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The active directory object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesActiveDirectory InputObject { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Return whether the specified Active Directory was successfully removed")] public SwitchParameter PassThru { get; set; } public override void ExecuteCmdlet() - { + { bool success = false; if (ParameterSetName == ParentObjectParameterSet) { @@ -90,11 +96,17 @@ public override void ExecuteCmdlet() var NameParts = AccountObject.Name.Split('/'); AccountName = NameParts[0]; } - - if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + AccountName = InputObject.AccountName; + ActiveDirectoryId = InputObject.ActiveDirectoryId; + } + + if (ShouldProcess(ActiveDirectoryId, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); - var activeDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.AdName == Name); + var activeDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.ActiveDirectoryId == ActiveDirectoryId); anfAccount.ActiveDirectories.Remove(activeDirectory); var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.BeginCreateOrUpdate(anfAccount, ResourceGroupName, AccountName); success = true; diff --git a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs index 89410729dd98..6c9ce6a5cd83 100644 --- a/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs @@ -58,19 +58,18 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF active directory", + HelpMessage = "The ID of the ANF active directory", ParameterSetName = FieldsParameterSet)] [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF active directory", + HelpMessage = "The ID of the ANF active directory", ParameterSetName = ParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - [Alias("ActiveDirectoryName")] + [ValidateNotNullOrEmpty] [ResourceNameCompleter( "Microsoft.NetApp/netAppAccounts/activeDirectory", nameof(ResourceGroupName), nameof(AccountName))] - public string Name { get; set; } + public string ActiveDirectoryId { get; set; } [Parameter( Mandatory = false, @@ -124,7 +123,7 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas Mandatory = false, HelpMessage = "Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier")] [ValidateNotNullOrEmpty] - public string[] BackupOperators { get; set; } + public string[] BackupOperator { get; set; } [Parameter( @@ -147,55 +146,87 @@ public class UpdateAzureRmNetAppFilesActiveDirectory : AzureNetAppFilesCmdletBas [ValidateNotNullOrEmpty] public PSNetAppFilesAccount AccountObject { get; set; } + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The active directory object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesActiveDirectory InputObject { get; set; } + public override void ExecuteCmdlet() - { + { if (ParameterSetName == ParentObjectParameterSet) { ResourceGroupName = AccountObject.ResourceGroupName; var NameParts = AccountObject.Name.Split('/'); AccountName = NameParts[0]; } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + AccountName = InputObject.AccountName; + ActiveDirectoryId = InputObject.ActiveDirectoryId; + } - if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + if (ShouldProcess(ActiveDirectoryId, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); if (anfAccount == null) { - throw new ArgumentException($"Specified NetAppAccount with name '{this.Name}' does not extist in Resource Group '{this.ResourceGroupName}'"); + throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'"); } - var anfADConfig = anfAccount.ActiveDirectories?.FirstOrDefault(a => a.AdName == Name); - if (anfADConfig == null) + string dnsStr = null; + if (Dns != null) { - throw new ArgumentException($"ActiveDirectory configuration with name '{this.Name}' in account '{this.AccountName}' is not found. Please use New-AzNetAppFilesActiveDirectory to Create a new ActiveDirectory configuration."); + dnsStr = string.Join(",", Dns); } - else + Management.NetApp.Models.ActiveDirectory anfADConfig = null; + if (string.IsNullOrWhiteSpace(ActiveDirectoryId)) { - string dnsStr = null; - if (Dns != null) - { - dnsStr = string.Join(",", Dns); - } - - anfADConfig.AdName = Name ?? anfADConfig.AdName; + anfADConfig = new Management.NetApp.Models.ActiveDirectory(); + anfADConfig.AdName = AdName ?? anfADConfig.AdName; anfADConfig.Dns = dnsStr ?? anfADConfig.Dns; anfADConfig.Domain = Domain ?? anfADConfig.Domain; anfADConfig.SmbServerName = SmbServerName ?? anfADConfig.SmbServerName; anfADConfig.Username = Username ?? anfADConfig.Username; - anfADConfig.Password = Password.ConvertToString(); + anfADConfig.Password = Password.ConvertToString(); anfADConfig.Site = Site ?? anfADConfig.Site; anfADConfig.OrganizationalUnit = OrganizationalUnit ?? anfADConfig.Site; - anfADConfig.BackupOperators = BackupOperators ?? anfADConfig.BackupOperators; + anfADConfig.BackupOperators = BackupOperator ?? anfADConfig.BackupOperators; anfADConfig.KdcIP = KdcIP ?? anfADConfig.KdcIP; anfADConfig.ServerRootCACertificate = ServerRootCACertificate ?? anfADConfig.ServerRootCACertificate; } + else + { + anfADConfig = anfAccount.ActiveDirectories?.FirstOrDefault(a => a.ActiveDirectoryId == ActiveDirectoryId); + if (anfADConfig == null) + { + throw new ArgumentException($"ActiveDirectory configuration with ID '{this.ActiveDirectoryId}' in account '{this.AccountName}' is not found. Please use New-AzNetAppFilesActiveDirectory to Create a new ActiveDirectory configuration."); + } + else + { + anfADConfig.AdName = AdName ?? anfADConfig.AdName; + anfADConfig.Dns = dnsStr ?? anfADConfig.Dns; + anfADConfig.Domain = Domain ?? anfADConfig.Domain; + anfADConfig.SmbServerName = SmbServerName ?? anfADConfig.SmbServerName; + anfADConfig.Username = Username ?? anfADConfig.Username; + anfADConfig.Password = Password.ConvertToString(); + anfADConfig.Site = Site ?? anfADConfig.Site; + anfADConfig.OrganizationalUnit = OrganizationalUnit ?? anfADConfig.Site; + anfADConfig.BackupOperators = BackupOperator ?? anfADConfig.BackupOperators; + anfADConfig.KdcIP = KdcIP ?? anfADConfig.KdcIP; + anfADConfig.ServerRootCACertificate = ServerRootCACertificate ?? anfADConfig.ServerRootCACertificate; + } + } var netAppAccountBody = new NetAppAccountPatch() { ActiveDirectories = anfAccount.ActiveDirectories }; var updatedAnfAccount = AzureNetAppFilesManagementClient.Accounts.Update(netAppAccountBody, ResourceGroupName, AccountName); - var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.AdName == Name); - WriteObject(updatedActiveDirectory.ConvertToPs()); + var updatedActiveDirectory = updatedAnfAccount.ActiveDirectories.FirstOrDefault(e => e.ActiveDirectoryId == ActiveDirectoryId); + WriteObject(updatedActiveDirectory.ConvertToPs(ResourceGroupName, AccountName)); } } } diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index b226330b3a6f..35da9150d4c7 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -88,7 +88,7 @@ CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', 'Remove-AzNetAppFilesReplication', 'Resume-AzNetAppFilesReplication', 'Restore-AzNetAppFilesVolume', - 'PoolChange-AzNetAppFilesVolume', + 'Switch-AzNetAppFilesVolumePool', 'New-AzNetAppFilesSnapshotPolicy', 'Get-AzNetAppFilesSnapshotPolicy', 'Update-AzNetAppFilesSnapshotPolicy','Remove-AzNetAppFilesSnapshotPolicy', 'New-AzNetAppFilesBackupPolicy', 'Get-AzNetAppFilesBackupPolicy', @@ -113,7 +113,7 @@ AliasesToExport = 'Get-AnfAccount', 'New-AnfAccount', 'Remove-AnfAccount', 'Get-AnfReplicationStatus', 'Suspend-AnfReplication', 'Remove-AnfReplication', 'Resume-AnfReplication', 'Restore-AnfVolume', - 'PoolChange-AnfVolume', + 'Switch-AnfVolumePool', 'Get-AnfSnapshotPolicy','New-AnfSnapshotPolicy', 'Remove-AnfSnapshotPolicy','Update-AnfSnapshotPolicy', 'Get-AnfBackupPolicy','New-AnfBackupPolicy', diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 9cdd79c8f52d..0765210e7a15 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -41,8 +41,7 @@ - `Remove-AzNetAppFilesActiveDirectory` - `Update-AzNetAppFilesActiveDirectory` * Add new `Get-AzNetAppFilesVault` cmdlet (use for backups, vaults currently only support getting list of vaults): -* Add new PoolChange-AzNetAppFilesVolume cmdlet, to move volume to another pool -* Add new PoolChange-AzNetAppFilesVolume cmdlet, to move volume to another pool +* Add new Switch-AzNetAppFilesVolumePool cmdlet, to move volume to another pool * Add parameters to `New-AzNetAppFilesVolume` - Backup to to enable Backups and Backup Policy - Snapshot to enable Snapshot Policy @@ -59,7 +58,7 @@ * Add properties to support Kerberos to ExportPolicy rule * Add QosType parameter to Pool `New-AzNetAppFilesPool` and `Update-AzNetAppFilesPool` * Breaking Removed ServiecLevel from `Update-AzNetAppFilesPool` as that updating servie level is not supported -* Add `Reinitialize-AzNetAppFilesReplication` cmdLet +* Add `Initialize-AzNetAppFilesReplication` cmdLet * Add ForceBreak parameter to `Suspend-AzNetAppFilesReplication` to force break the replication if replication is in status transferring diff --git a/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs index ad3207a193e2..5a8a5d35c5cc 100644 --- a/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs +++ b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs @@ -42,15 +42,17 @@ public static class ModelExtensions }).ToList(); } - public static List ConvertToPs(this IList activeDirectories) + public static List ConvertToPs(this IList activeDirectories, string resourceGroupName, string accountName) { - return activeDirectories.Select(e => e.ConvertToPs()).ToList(); + return activeDirectories.Select(e => e.ConvertToPs(resourceGroupName, accountName)).ToList(); } - public static PSNetAppFilesActiveDirectory ConvertToPs(this Management.NetApp.Models.ActiveDirectory activeDirectory) + public static PSNetAppFilesActiveDirectory ConvertToPs(this Management.NetApp.Models.ActiveDirectory activeDirectory, string resourceGroupName, string accountName) { var psActiveDirectory = new PSNetAppFilesActiveDirectory { + ResourceGroupName = resourceGroupName, + AccountName = accountName, ActiveDirectoryId = activeDirectory.ActiveDirectoryId, Username = activeDirectory.Username, Password = activeDirectory.Password, @@ -71,15 +73,16 @@ public static PSNetAppFilesActiveDirectory ConvertToPs(this Management.NetApp.Mo public static PSNetAppFilesAccount ToPsNetAppFilesAccount(this NetAppAccount netAppAccount) { + string resourceGroupName = new ResourceIdentifier(netAppAccount.Id).ResourceGroupName; return new PSNetAppFilesAccount { - ResourceGroupName = new ResourceIdentifier(netAppAccount.Id).ResourceGroupName, + ResourceGroupName = resourceGroupName, Location = netAppAccount.Location, Id = netAppAccount.Id, Name = netAppAccount.Name, Type = netAppAccount.Type, Tags = netAppAccount.Tags, - ActiveDirectories = (netAppAccount.ActiveDirectories != null) ? netAppAccount.ActiveDirectories.ConvertToPs() : null, + ActiveDirectories = (netAppAccount.ActiveDirectories != null) ? netAppAccount.ActiveDirectories.ConvertToPs(resourceGroupName, netAppAccount.Name) : null, ProvisioningState = netAppAccount.ProvisioningState }; } diff --git a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs index 16def3ab38d6..f845a57c9151 100644 --- a/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesActiveDirectory.cs @@ -22,6 +22,16 @@ namespace Microsoft.Azure.Commands.NetAppFiles.Models /// public class PSNetAppFilesActiveDirectory { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the Account name + /// + public string AccountName { get; set; } + /// /// Id of the active drectory. /// Value of this property can not be set by user. diff --git a/src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs similarity index 92% rename from src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs rename to src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs index 6388419d1261..e74d2aef30a5 100644 --- a/src/NetAppFiles/NetAppFiles/Volume/PoolChangeNetAppFilesVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Commands.NetAppFiles.Volume /// Moves volume to another pool /// [Cmdlet( - "PoolChange", - ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + "Switch", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolumePool", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] - [Alias("PoolChange-AnfVolume")] - public class PoolChangeAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase + [Alias("Switch-AnfVolumePool")] + public class SwitchAzureRmNetAppFilesVolumePool : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, @@ -110,15 +110,8 @@ public class PoolChangeAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase [ValidateNotNullOrEmpty] public PSNetAppFilesVolume InputObject { get; set; } - [Parameter( - Mandatory = false, - HelpMessage = "Return whether the specified volume was successfully moved")] - public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() - { - bool success = false; - + { if (ParameterSetName == ResourceIdParameterSet) { var resourceIdentifier = new ResourceIdentifier(ResourceId); @@ -147,13 +140,10 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.RemoveResourceMessage, ResourceGroupName))) { var poolChangeBody = new PoolChangeRequest() { NewPoolResourceId = NewPoolResourceId}; + var newPoolResourceIdentifier = new ResourceIdentifier(NewPoolResourceId); AzureNetAppFilesManagementClient.Volumes.PoolChange(ResourceGroupName, AccountName, PoolName, Name, poolChangeBody); - success = true; - } - - if (PassThru) - { - WriteObject(success); + var anfVolumes = AzureNetAppFilesManagementClient.Volumes.Get(ResourceGroupName, AccountName, newPoolResourceIdentifier.ResourceName, Name); + WriteObject(anfVolumes, true); } } } diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index 54a7eca3ba00..8698ce6f731b 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -68,9 +68,6 @@ Creates a new Azure NetApp Files (ANF) snapshot policy for an ANF account. ### [New-AzNetAppFilesVolume](New-AzNetAppFilesVolume.md) Creates a new Azure NetApp Files (ANF) volume. -### [PoolChange-AzNetAppFilesVolume](PoolChange-AzNetAppFilesVolume.md) -Change pool for an Azure NetApp Files (ANF) volume. - ### [Remove-AzNetAppFilesAccount](Remove-AzNetAppFilesAccount.md) Deletes an Azure NetApp Files (ANF) account. @@ -107,6 +104,9 @@ Resume/Resync the connection on the destination volume. If the operation is ran ### [Set-AzNetAppFilesAccount](Set-AzNetAppFilesAccount.md) Updates an Azure NetApp Files (ANF) account with the new data set. Useful for deletion of associated active directories. +### [Switch-AzNetAppFilesVolumePool](Switch-AzNetAppFilesVolumePool.md) +Change pool for an Azure NetApp Files (ANF) volume. + ### [Suspend-AzNetAppFilesReplication](Suspend-AzNetAppFilesReplication.md) Suspend/break the replication connection on the destination volume diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md index c71818875a50..39f8277b1353 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md @@ -14,13 +14,13 @@ Gets details of an Azure NetApp Files (ANF) Active Directory configuration. ### ByFieldsParameterSet (Default) ``` -Get-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Name ] - [-DefaultProfile ] [] +Get-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + [-ActiveDirectoryId ] [-DefaultProfile ] [] ``` ### ByParentObjectParameterSet ``` -Get-AzNetAppFilesActiveDirectory [-Name ] -AccountObject +Get-AzNetAppFilesActiveDirectory [-ActiveDirectoryId ] -AccountObject [-DefaultProfile ] [] ``` @@ -68,13 +68,13 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +### -ActiveDirectoryId +The ActiveDirectoryId of the ANF Active Directory ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: System.String Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential +Aliases: ActiveDirectoryName Required: False Position: Named @@ -83,13 +83,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Name -The name of the ANF Active Directory +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: System.String +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) -Aliases: ActiveDirectoryName +Aliases: AzContext, AzureRmContext, AzureCredential Required: False Position: Named diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md index 0dea9fd6ddeb..328260e82cb8 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -14,18 +14,18 @@ Creates a new Azure NetApp Files (ANF) active directory configuration. ### ByFieldsParameterSet (Default) ``` -New-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name - [-Dns ] -Domain [-Site ] -SmbServerName [-Username ] - [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] +New-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Dns ] + -Domain [-Site ] -SmbServerName [-Username ] [-Password ] + [-OrganizationalUnit ] [-KdcIP ] [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -New-AzNetAppFilesActiveDirectory -Name [-Dns ] -Domain [-Site ] - -SmbServerName [-Username ] [-Password ] [-OrganizationalUnit ] - [-KdcIP ] [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] +New-AzNetAppFilesActiveDirectory [-Dns ] -Domain [-Site ] -SmbServerName + [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] + [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -91,7 +91,7 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -BackupOperators +### -BackupOperator Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier @@ -168,21 +168,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Name -The name of the ANF Active Directory - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: ActiveDirectoryName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -OrganizationalUnit The Organizational Unit (OU) within the Windows Active Directory diff --git a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md index fea66961279f..932a7ab8b26e 100644 --- a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md +++ b/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/reinitialize-aznetappfilesreplication +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/initialize-aznetappfilesreplication schema: 2.0.0 --- -# Reinitialize-AzNetAppFilesReplication +# Initialize-AzNetAppFilesReplication ## SYNOPSIS Re-Initializes the replication connection on the destination volume @@ -14,20 +14,20 @@ Re-Initializes the replication connection on the destination volume ### ByFieldsParameterSet (Default) ``` -Reinitialize-AzNetAppFilesReplication -ResourceGroupName -AccountName -PoolName +Initialize-AzNetAppFilesReplication -ResourceGroupName -AccountName -PoolName -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Reinitialize-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] +Initialize-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Reinitialize-AzNetAppFilesReplication -InputObject [-PassThru] +Initialize-AzNetAppFilesReplication -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -38,7 +38,7 @@ Re-Initializes the connection on the destination volume ### Example 1 ```powershell -PS C:\> Reinitialize-AnfReplication -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyDestinationAnfVolume" +PS C:\> Initialize-AnfReplication -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyDestinationAnfVolume" ``` This command Re-Initializes the ANF Replication connection on volume "MyDestinationAnfVolume". diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md index 9175d65d4d7f..e969a6ffa8b4 100644 --- a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -14,13 +14,20 @@ Deletes an Azure NetApp Files (ANF) active directory configuration. ### ByFieldsParameterSet (Default) ``` -Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name - [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + -ActiveDirectoryId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByParentObjectParameterSet ``` -Remove-AzNetAppFilesActiveDirectory -Name -AccountObject [-PassThru] +Remove-AzNetAppFilesActiveDirectory -ActiveDirectoryId -AccountObject + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesActiveDirectory -InputObject [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -68,6 +75,21 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -ActiveDirectoryId +The ID of the ANF active directory + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -83,18 +105,18 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Name -The name of the ANF Active Directory +### -InputObject +The active directory object to remove ```yaml -Type: System.String -Parameter Sets: (All) -Aliases: ActiveDirectoryName +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory +Parameter Sets: ByObjectParameterSet +Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -166,6 +188,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + ## OUTPUTS ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory diff --git a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md similarity index 82% rename from src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md rename to src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md index d85424f27149..f4e93b9ac039 100644 --- a/src/NetAppFiles/NetAppFiles/help/PoolChange-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/poolchange-aznetappfilesvolume +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetappfilesvolumepool schema: 2.0.0 --- -# PoolChange-AzNetAppFilesVolume +# Switch-AzNetAppFilesVolumePool ## SYNOPSIS Change pool for an Azure NetApp Files (ANF) volume. @@ -14,37 +14,37 @@ Change pool for an Azure NetApp Files (ANF) volume. ### ByFieldsParameterSet (Default) ``` -PoolChange-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName - -Name [-NewPoolResourceId ] [-PassThru] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Switch-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName + -Name [-NewPoolResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByParentObjectParameterSet ``` -PoolChange-AzNetAppFilesVolume -Name -PoolObject [-PassThru] +Switch-AzNetAppFilesVolumePool -Name -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -PoolChange-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Switch-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ByObjectParameterSet ``` -PoolChange-AzNetAppFilesVolume -InputObject [-PassThru] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Switch-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AzNetAppFilesVolume** cmdlet deletes an ANF volume. +The **Switch-AzNetAppFilesVolumePool** cmdlet changes the pool for an ANF volume. ## EXAMPLES ### Example 1 ``` -PS C:\>PoolChange-AzNetAppFilesVolume -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf +PS C:\>Switch-AzNetAppFilesVolumePool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf ``` This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c78-6c61-7bf6-c60968e45fbf @@ -127,21 +127,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Return whether the specified volume was successfully removed - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PoolName The name of the ANF pool diff --git a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md new file mode 100644 index 000000000000..e6c8bfae50d3 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md @@ -0,0 +1,238 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Switch-AzNetAppFilesVolumePool + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Switch-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName + -Name [-NewPoolResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Switch-AzNetAppFilesVolumePool -Name -PoolObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Switch-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Switch-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The volume object to move + +```yaml +Type: PSNetAppFilesVolume +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NewPoolResourceId +ResourceId of the capacity pool to move to. +UUID v4 used to identify the pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolObject +The pool object containing the volume + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF volume + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: 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: 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 + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md index 3ae63e543284..49315c9b46f5 100644 --- a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -14,19 +14,28 @@ Updates an Azure NetApp Files (ANF) active directory configuration to the option ### ByFieldsParameterSet (Default) ``` -Update-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName -Name - [-Dns ] [-Domain ] [-Site ] [-SmbServerName ] [-Username ] - [-Password ] [-OrganizationalUnit ] [-KdcIP ] [-BackupOperators ] - [-ServerRootCACertificate ] [-AdName ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + -ActiveDirectoryId [-Dns ] [-Domain ] [-Site ] [-SmbServerName ] + [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] + [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Update-AzNetAppFilesActiveDirectory -Name [-Dns ] [-Domain ] [-Site ] +Update-AzNetAppFilesActiveDirectory -ActiveDirectoryId [-Dns ] [-Domain ] + [-Site ] [-SmbServerName ] [-Username ] [-Password ] + [-OrganizationalUnit ] [-KdcIP ] [-BackupOperator ] + [-ServerRootCACertificate ] [-AdName ] -AccountObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesActiveDirectory [-Dns ] [-Domain ] [-Site ] [-SmbServerName ] [-Username ] [-Password ] [-OrganizationalUnit ] - [-KdcIP ] [-BackupOperators ] [-ServerRootCACertificate ] [-AdName ] - -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [-KdcIP ] [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -74,6 +83,21 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -ActiveDirectoryId +The ID of the ANF active directory + +```yaml +Type: System.String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AdName Name of the active directory machine. This optional parameter is used only while creating kerberos volume @@ -90,7 +114,7 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -BackupOperators +### -BackupOperator Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier @@ -151,31 +175,31 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -KdcIP -kdc server IP addresses for the active directory machine. -This optional parameter is used only while creating kerberos volume. +### -InputObject +The active directory object to remove ```yaml -Type: System.String -Parameter Sets: (All) +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory +Parameter Sets: ByObjectParameterSet Aliases: -Required: False +Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -Name -The name of the ANF Active Directory +### -KdcIP +kdc server IP addresses for the active directory machine. +This optional parameter is used only while creating kerberos volume. ```yaml Type: System.String Parameter Sets: (All) -Aliases: ActiveDirectoryName +Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -326,6 +350,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + ## OUTPUTS ### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory From f3622159cb8cd01fa7b2206ecacbe4a1d4b9eabc Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 5 Nov 2020 11:20:31 +0000 Subject: [PATCH 12/22] Update helpfile --- .../NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md index e6c8bfae50d3..6e604bfbd743 100644 --- a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md +++ b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Switch-AzNetAppFilesVolumePool ## SYNOPSIS -{{ Fill in the Synopsis }} +Change pool for an Azure NetApp Files (ANF) volume. ## SYNTAX @@ -38,16 +38,16 @@ Switch-AzNetAppFilesVolumePool -InputObject [-DefaultProfi ``` ## DESCRIPTION -{{ Fill in the Description }} +The **Switch-AzNetAppFilesVolumePool** cmdlet changes the pool of an ANF volume. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\>Switch-AzNetAppFilesVolumePool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf ``` -{{ Add example description here }} +This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c78-6c61-7bf6-c60968e45fbf ## PARAMETERS From 89c2e791516f0c638e4036e8fb65a9a4bac5ae1a Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 5 Nov 2020 13:27:05 +0000 Subject: [PATCH 13/22] Docs update --- ...=> Initialize-AzNetAppFilesReplication.md} | 0 .../help/Set-AzNetAppFilesVolumePool.md | 238 ------------------ .../help/Switch-AzNetAppFilesVolumePool.md | 2 +- 3 files changed, 1 insertion(+), 239 deletions(-) rename src/NetAppFiles/NetAppFiles/help/{Reinitialize-AzNetAppFilesReplication.md => Initialize-AzNetAppFilesReplication.md} (100%) delete mode 100644 src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md diff --git a/src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Initialize-AzNetAppFilesReplication.md similarity index 100% rename from src/NetAppFiles/NetAppFiles/help/Reinitialize-AzNetAppFilesReplication.md rename to src/NetAppFiles/NetAppFiles/help/Initialize-AzNetAppFilesReplication.md diff --git a/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md deleted file mode 100644 index f4e93b9ac039..000000000000 --- a/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md +++ /dev/null @@ -1,238 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml -Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetappfilesvolumepool -schema: 2.0.0 ---- - -# Switch-AzNetAppFilesVolumePool - -## SYNOPSIS -Change pool for an Azure NetApp Files (ANF) volume. - -## SYNTAX - -### ByFieldsParameterSet (Default) -``` -Switch-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName - -Name [-NewPoolResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] -``` - -### ByParentObjectParameterSet -``` -Switch-AzNetAppFilesVolumePool -Name -PoolObject - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### ByResourceIdParameterSet -``` -Switch-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -### ByObjectParameterSet -``` -Switch-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] - [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -The **Switch-AzNetAppFilesVolumePool** cmdlet changes the pool for an ANF volume. - -## EXAMPLES - -### Example 1 -``` -PS C:\>Switch-AzNetAppFilesVolumePool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf -``` - -This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c78-6c61-7bf6-c60968e45fbf - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -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 -``` - -### -InputObject -The volume object to remove - -```yaml -Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume -Parameter Sets: ByObjectParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The name of the ANF volume - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet -Aliases: VolumeName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NewPoolResourceId -ResourceId of the pool to change to. -UUID v4 used to identify the Pool - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolObject -The pool object containing the volume to remove - -```yaml -Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool -Parameter Sets: ByParentObjectParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF volume - -```yaml -Type: System.String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF volume - -```yaml -Type: System.String -Parameter Sets: ByResourceIdParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -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 - -### System.String - -### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool - -### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume - -## OUTPUTS - -### System.Boolean - -## NOTES - -## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md index 6e604bfbd743..d89311b58785 100644 --- a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md +++ b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version:https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetAppfilesvolumepool schema: 2.0.0 --- From a532d4f8bde290f38a93566257c908b657944527 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Thu, 5 Nov 2020 14:58:44 +0000 Subject: [PATCH 14/22] update docs --- ...cs => InitializeNetAppFilesReplication.cs} | 6 ++--- .../NetAppFiles/help/Az.NetAppFiles.md | 6 ++--- .../help/Switch-AzNetAppFilesVolumePool.md | 24 +++++++++---------- 3 files changed, 18 insertions(+), 18 deletions(-) rename src/NetAppFiles/NetAppFiles/Replication/{ReinitializeNetAppFilesReplication.cs => InitializeNetAppFilesReplication.cs} (97%) diff --git a/src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs b/src/NetAppFiles/NetAppFiles/Replication/InitializeNetAppFilesReplication.cs similarity index 97% rename from src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs rename to src/NetAppFiles/NetAppFiles/Replication/InitializeNetAppFilesReplication.cs index b8e5542e7c8e..206ea2744dfe 100644 --- a/src/NetAppFiles/NetAppFiles/Replication/ReinitializeNetAppFilesReplication.cs +++ b/src/NetAppFiles/NetAppFiles/Replication/InitializeNetAppFilesReplication.cs @@ -22,12 +22,12 @@ namespace Microsoft.Azure.Commands.NetAppFiles.Replication { [Cmdlet( - "Reinitialize", + "Initialize", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesReplication", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] - [Alias("Reinitialize-AnfReplication")] - public class ReinitializeAzureRmNetAppFilesReplication : AzureNetAppFilesCmdletBase + [Alias("Initialize-AnfReplication")] + public class InitializeAzureRmNetAppFilesReplication : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, diff --git a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md index 8698ce6f731b..d15a45b956ff 100644 --- a/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md +++ b/src/NetAppFiles/NetAppFiles/help/Az.NetAppFiles.md @@ -104,12 +104,12 @@ Resume/Resync the connection on the destination volume. If the operation is ran ### [Set-AzNetAppFilesAccount](Set-AzNetAppFilesAccount.md) Updates an Azure NetApp Files (ANF) account with the new data set. Useful for deletion of associated active directories. -### [Switch-AzNetAppFilesVolumePool](Switch-AzNetAppFilesVolumePool.md) -Change pool for an Azure NetApp Files (ANF) volume. - ### [Suspend-AzNetAppFilesReplication](Suspend-AzNetAppFilesReplication.md) Suspend/break the replication connection on the destination volume +### [Switch-AzNetAppFilesVolumePool](Switch-AzNetAppFilesVolumePool.md) +Change pool for an Azure NetApp Files (ANF) volume. + ### [Update-AzNetAppFilesAccount](Update-AzNetAppFilesAccount.md) Updates an Azure NetApp Files (ANF) account according to the optional modifiers provided. diff --git a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md index d89311b58785..9731048ca9bd 100644 --- a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md +++ b/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version:https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetAppfilesvolumepool +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetAppfilesvolumepool schema: 2.0.0 --- @@ -55,7 +55,7 @@ This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c7 The name of the ANF account ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -70,7 +70,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -85,7 +85,7 @@ Accept wildcard characters: False The volume object to move ```yaml -Type: PSNetAppFilesVolume +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume Parameter Sets: ByObjectParameterSet Aliases: @@ -100,7 +100,7 @@ Accept wildcard characters: False The name of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet Aliases: VolumeName @@ -116,7 +116,7 @@ ResourceId of the capacity pool to move to. UUID v4 used to identify the pool ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -131,7 +131,7 @@ Accept wildcard characters: False The name of the ANF pool ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -146,7 +146,7 @@ Accept wildcard characters: False The pool object containing the volume ```yaml -Type: PSNetAppFilesPool +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool Parameter Sets: ByParentObjectParameterSet Aliases: @@ -161,7 +161,7 @@ Accept wildcard characters: False The resource group of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByFieldsParameterSet Aliases: @@ -176,7 +176,7 @@ Accept wildcard characters: False The resource id of the ANF volume ```yaml -Type: String +Type: System.String Parameter Sets: ByResourceIdParameterSet Aliases: @@ -191,7 +191,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -207,7 +207,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi From 8d12caefe8d8cf056e912b39a77d57a90a4c8ed3 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Fri, 6 Nov 2020 09:47:10 +0000 Subject: [PATCH 15/22] Rename Switch-AzNetAppFilesVolumePool to Set --- .../ScenarioTests/VolumeTests.ps1 | 6 +++--- .../NetAppFiles/Az.NetAppFiles.psd1 | 4 ++-- src/NetAppFiles/NetAppFiles/ChangeLog.md | 2 +- ...umePool.cs => SetNetAppFilesVolumePool.cs} | 6 +++--- ...Pool.md => Set-AzNetAppFilesVolumePool.md} | 20 +++++++++---------- .../Az.NetAppFiles/SignatureIssues.csv | 5 +++++ 6 files changed, 24 insertions(+), 19 deletions(-) rename src/NetAppFiles/NetAppFiles/Volume/{SwitchNetAppFilesVolumePool.cs => SetNetAppFilesVolumePool.cs} (97%) rename src/NetAppFiles/NetAppFiles/help/{Switch-AzNetAppFilesVolumePool.md => Set-AzNetAppFilesVolumePool.md} (84%) create mode 100644 tools/StaticAnalysis/Exceptions/Az.NetAppFiles/SignatureIssues.csv diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 index ca14d86e0a28..f34c0a737f0c 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 @@ -397,9 +397,9 @@ function Test-VolumeReplication <# .SYNOPSIS -Test Volume Switch-AzNetAppFilesVolumePool operation +Test Volume Set-AzNetAppFilesVolumePool operation #> -function Test-SwitchVolumePool +function Test-SetVolumePool { $currentSub = (Get-AzureRmContext).Subscription $subsid = $currentSub.SubscriptionId @@ -479,7 +479,7 @@ function Test-SwitchVolumePool Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name # PoolChange and check the volume - $poolChangeResult = Switch-AzNetAppFilesVolumePool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 -NewPoolResourceId $retrievedPool2.Id + $poolChangeResult = Set-AzNetAppFilesVolumePool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 -NewPoolResourceId $retrievedPool2.Id # check GET no change to rest of volume $retrievedVolume = Get-AzNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 -VolumeName $volName1 diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 35da9150d4c7..142055e1a319 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -88,7 +88,7 @@ CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', 'Remove-AzNetAppFilesReplication', 'Resume-AzNetAppFilesReplication', 'Restore-AzNetAppFilesVolume', - 'Switch-AzNetAppFilesVolumePool', + 'Set-AzNetAppFilesVolumePool', 'New-AzNetAppFilesSnapshotPolicy', 'Get-AzNetAppFilesSnapshotPolicy', 'Update-AzNetAppFilesSnapshotPolicy','Remove-AzNetAppFilesSnapshotPolicy', 'New-AzNetAppFilesBackupPolicy', 'Get-AzNetAppFilesBackupPolicy', @@ -113,7 +113,7 @@ AliasesToExport = 'Get-AnfAccount', 'New-AnfAccount', 'Remove-AnfAccount', 'Get-AnfReplicationStatus', 'Suspend-AnfReplication', 'Remove-AnfReplication', 'Resume-AnfReplication', 'Restore-AnfVolume', - 'Switch-AnfVolumePool', + 'Set-AnfVolumePool', 'Get-AnfSnapshotPolicy','New-AnfSnapshotPolicy', 'Remove-AnfSnapshotPolicy','Update-AnfSnapshotPolicy', 'Get-AnfBackupPolicy','New-AnfBackupPolicy', diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 0765210e7a15..703524513c60 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -41,7 +41,7 @@ - `Remove-AzNetAppFilesActiveDirectory` - `Update-AzNetAppFilesActiveDirectory` * Add new `Get-AzNetAppFilesVault` cmdlet (use for backups, vaults currently only support getting list of vaults): -* Add new Switch-AzNetAppFilesVolumePool cmdlet, to move volume to another pool +* Add new Set-AzNetAppFilesVolumePool cmdlet, to move volume to another pool * Add parameters to `New-AzNetAppFilesVolume` - Backup to to enable Backups and Backup Policy - Snapshot to enable Snapshot Policy diff --git a/src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs b/src/NetAppFiles/NetAppFiles/Volume/SetNetAppFilesVolumePool.cs similarity index 97% rename from src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs rename to src/NetAppFiles/NetAppFiles/Volume/SetNetAppFilesVolumePool.cs index e74d2aef30a5..7c3e3af2b027 100644 --- a/src/NetAppFiles/NetAppFiles/Volume/SwitchNetAppFilesVolumePool.cs +++ b/src/NetAppFiles/NetAppFiles/Volume/SetNetAppFilesVolumePool.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Commands.NetAppFiles.Volume /// Moves volume to another pool /// [Cmdlet( - "Switch", + "Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolumePool", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] - [Alias("Switch-AnfVolumePool")] - public class SwitchAzureRmNetAppFilesVolumePool : AzureNetAppFilesCmdletBase + [Alias("Set-AnfVolumePool")] + public class SetAzureRmNetAppFilesVolumePool : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, diff --git a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md similarity index 84% rename from src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md rename to src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md index 9731048ca9bd..e3f63e2b1019 100644 --- a/src/NetAppFiles/NetAppFiles/help/Switch-AzNetAppFilesVolumePool.md +++ b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/switch-aznetAppfilesvolumepool +online version: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/set-aznetAppfilesvolumepool schema: 2.0.0 --- -# Switch-AzNetAppFilesVolumePool +# Set-AzNetAppFilesVolumePool ## SYNOPSIS Change pool for an Azure NetApp Files (ANF) volume. @@ -14,37 +14,37 @@ Change pool for an Azure NetApp Files (ANF) volume. ### ByFieldsParameterSet (Default) ``` -Switch-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName +Set-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName -Name [-NewPoolResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet ``` -Switch-AzNetAppFilesVolumePool -Name -PoolObject +Set-AzNetAppFilesVolumePool -Name -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Switch-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] +Set-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Switch-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] +Set-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Switch-AzNetAppFilesVolumePool** cmdlet changes the pool of an ANF volume. +The **Set-AzNetAppFilesVolumePool** cmdlet changes the pool of an ANF volume. ## EXAMPLES ### Example 1 ```powershell -PS C:\>Switch-AzNetAppFilesVolumePool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf +PS C:\>Set-AzNetAppFilesVolumePool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -NewPoolResourceId 7d6e4069-6c78-6c61-7bf6-c60968e45fbf ``` This changes the pool for the volume MyVolume to one with the Id of 7d6e4069-6c78-6c61-7bf6-c60968e45fbf @@ -191,7 +191,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.Management.Automation.SetParameter Parameter Sets: (All) Aliases: cf @@ -207,7 +207,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: System.Management.Automation.SetParameter Parameter Sets: (All) Aliases: wi diff --git a/tools/StaticAnalysis/Exceptions/Az.NetAppFiles/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.NetAppFiles/SignatureIssues.csv new file mode 100644 index 000000000000..52d251be6015 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.NetAppFiles/SignatureIssues.csv @@ -0,0 +1,5 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll","Microsoft.Azure.Commands.NetAppFiles.Volume.NewAzureRmNetAppFilesVolume","New-AzNetAppFilesVolume","1","8410","Parameter ThroughputMibps of cmdlet New-AzNetAppFilesVolume 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.NetAppFiles.dll","Microsoft.Azure.Commands.NetAppFiles.Volume.UpdateAzureRmNetAppFilesVolume","Update-AzNetAppFilesVolume","1","8410","Parameter ThroughputMibps of cmdlet Update-AzNetAppFilesVolume 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.NetAppFiles.dll","Microsoft.Azure.Commands.NetAppFiles.BackupPolicy.NewAzureRmNetAppFilesActiceDirectory","New-AzNetAppFilesActiveDirectory","1","8410","Parameter Dns of cmdlet New-AzNetAppFilesActiveDirectory 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.NetAppFiles.dll","Microsoft.Azure.Commands.NetAppFiles.ActiveDirectory.UpdateAzureRmNetAppFilesActiveDirectory","Update-AzNetAppFilesActiveDirectory","1","8410","Parameter Dns of cmdlet Update-AzNetAppFilesActiveDirectory 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." From 64ccc66b9b6090588edfb54401db5065ab819862 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Fri, 6 Nov 2020 11:30:33 +0000 Subject: [PATCH 16/22] Update tests for set volume pool --- .../ScenarioTests/VolumeTests.cs | 4 +- ...VolumePool.json => TestSetVolumePool.json} | 1582 +- .../TestVolumeReplication - Copy.json | 20191 ---------------- 3 files changed, 598 insertions(+), 21179 deletions(-) rename src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/{TestSwitchVolumePool.json => TestSetVolumePool.json} (60%) delete mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs index 475ab3a9a15c..0d2e71d573b5 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs @@ -44,9 +44,9 @@ public void TestVolumeReplication() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestSwitchVolumePool() + public void TestSetVolumePool() { - TestController.NewInstance.RunPowerShellTest(_logger, "Test-SwitchVolumePool"); + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SetVolumePool"); } [Fact] diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSetVolumePool.json similarity index 60% rename from src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json rename to src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSetVolumePool.json index 179e4a8b97f6..18bcda2bf531 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSwitchVolumePool.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSetVolumePool.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1030?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fd231ee2-ac59-4086-bd3d-e05f0d450b2c" + "5f977a04-4f7c-4d96-9fbd-e2d77b21dfa3" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3c8c9408-b24d-4928-8540-5360abc79e36" + "346108de-1bb6-4dea-8840-59e91b5688ac" ], "x-ms-correlation-request-id": [ - "3c8c9408-b24d-4928-8540-5360abc79e36" + "346108de-1bb6-4dea-8840-59e91b5688ac" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223921Z:3c8c9408-b24d-4928-8540-5360abc79e36" + "FRANCESOUTH:20201106T111223Z:346108de-1bb6-4dea-8840-59e91b5688ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:21 GMT" + "Fri, 06 Nov 2020 11:12:23 GMT" ], "Content-Length": [ "172" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921\",\r\n \"name\": \"ps4921\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030\",\r\n \"name\": \"ps1030\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc496d8b-d093-46f4-b76e-f7818b0d06ae" + "61289776-f950-43af-a92b-dd8d41c0d919" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "e1859657-6c4a-4282-acb5-17bf0b1effca" + "ec848537-25c4-4eea-93c7-cc8de11983ba" ], "x-ms-correlation-request-id": [ - "e1859657-6c4a-4282-acb5-17bf0b1effca" + "ec848537-25c4-4eea-93c7-cc8de11983ba" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223923Z:e1859657-6c4a-4282-acb5-17bf0b1effca" + "FRANCESOUTH:20201106T111224Z:ec848537-25c4-4eea-93c7-cc8de11983ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:22 GMT" + "Fri, 06 Nov 2020 11:12:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,12 +123,12 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4921-vnet' under resource group 'ps4921' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps1030-vnet' under resource group 'ps1030' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + "W/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" ], "x-ms-request-id": [ - "1ccb5fdc-8047-48fe-aa1a-d6d3aa0d378a" + "ba80c637-6e10-485b-aeba-8ced6284b1f1" ], "x-ms-correlation-request-id": [ - "a211d19a-1217-47f2-b0a6-7b24c40ce5d7" + "41cd0b21-51c8-48e9-b851-92241647d167" ], "x-ms-arm-service-request-id": [ - "546ef47c-5611-4c60-ad99-15b933905969" + "d3855e97-b9d9-4ad1-bf07-895326b97439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,16 +166,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223934Z:a211d19a-1217-47f2-b0a6-7b24c40ce5d7" + "FRANCESOUTH:20201106T111238Z:41cd0b21-51c8-48e9-b851-92241647d167" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:33 GMT" + "Fri, 06 Nov 2020 11:12:38 GMT" ], "Content-Length": [ "648" @@ -187,17 +187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"a59512c1-041f-40ec-8bd2-0eee9086d67c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5d9d69d-bc8e-4ca3-8ea1-24baba5f36ef" + "67b76f39-8443-4f15-8cf2-b73fc688a99b" ], "Accept-Language": [ "en-US" @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + "W/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" ], "x-ms-request-id": [ - "9a8ba988-1044-4860-995a-d16a91ce62c8" + "4588c4e4-06de-4f62-844f-19d69615a8b7" ], "x-ms-correlation-request-id": [ - "84016518-9a04-45f6-9431-f89ee6cb720c" + "a48adc31-2192-4c26-a556-100bb154d8c2" ], "x-ms-arm-service-request-id": [ - "b9338542-1982-4d17-afe3-17d146116aa5" + "6277afb6-f11d-4825-b991-197ca03bde50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,16 +236,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223934Z:84016518-9a04-45f6-9431-f89ee6cb720c" + "FRANCESOUTH:20201106T111238Z:a48adc31-2192-4c26-a556-100bb154d8c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:33 GMT" + "Fri, 06 Nov 2020 11:12:38 GMT" ], "Content-Length": [ "648" @@ -257,17 +257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"a59512c1-041f-40ec-8bd2-0eee9086d67c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91da544c-98a8-4203-9a99-3730a3a254fd" + "238a7443-3346-4272-9477-1b09ed396f10" ], "Accept-Language": [ "en-US" @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\"" + "W/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" ], "x-ms-request-id": [ - "9767ee8f-d816-41ae-b03c-3d57882d1a52" + "aadd6e64-a24a-438a-89e2-cb060d6d48f6" ], "x-ms-correlation-request-id": [ - "8d874c0c-123f-4bfb-aef8-45a9df3239ee" + "9d19e3d7-b94d-4b60-afed-818686eb82f4" ], "x-ms-arm-service-request-id": [ - "593e3bce-8053-4b86-b3f2-cfc2f95fa097" + "d6f76d27-2fb3-44df-a04e-d4808423d0dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,16 +306,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223934Z:8d874c0c-123f-4bfb-aef8-45a9df3239ee" + "FRANCESOUTH:20201106T111239Z:9d19e3d7-b94d-4b60-afed-818686eb82f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:34 GMT" + "Fri, 06 Nov 2020 11:12:38 GMT" ], "Content-Length": [ "648" @@ -327,12 +327,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"e7ccf1e5-290c-4bde-a5c8-3cf92db20672\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"a59512c1-041f-40ec-8bd2-0eee9086d67c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"dfa8ec4b-c9c4-424f-b185-23c530b26869\"" + "W/\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\"" ], "x-ms-request-id": [ - "8b4cf288-9f72-476b-957b-3a7b35535df1" + "925c13d0-4c13-4063-953c-e29b913ad993" ], "x-ms-correlation-request-id": [ - "69964a45-2eaa-44cd-b9c6-8bdb69d07371" + "c66fb5a5-0c10-4582-ab4f-5dcb47960b48" ], "x-ms-arm-service-request-id": [ - "472d2ea1-e067-4ea7-8309-b73488f109db" + "c65129a9-e5c6-4fe4-b775-51be151cdb94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -370,16 +370,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223939Z:69964a45-2eaa-44cd-b9c6-8bdb69d07371" + "FRANCESOUTH:20201106T111243Z:c66fb5a5-0c10-4582-ab4f-5dcb47960b48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:38 GMT" + "Fri, 06 Nov 2020 11:12:43 GMT" ], "Content-Length": [ "2157" @@ -391,17 +391,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39e538d7-2546-4eff-8248-579c91c84262" + "de530bf1-c700-4efc-ae56-5de9f92cd5bc" ], "Accept-Language": [ "en-US" @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"dfa8ec4b-c9c4-424f-b185-23c530b26869\"" + "W/\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\"" ], "x-ms-request-id": [ - "e10c3bc8-1e9b-4709-86b8-7166f618cb32" + "793382f2-9539-4e4f-a621-ca2c110e1c82" ], "x-ms-correlation-request-id": [ - "c0f60b58-af67-4018-b6a9-02435f02e66b" + "5ec10772-bf3b-4c52-bafb-a86078a321f6" ], "x-ms-arm-service-request-id": [ - "3c9c6703-06c7-4f04-abf8-a6fca3044769" + "c2c49d65-b41f-4f1e-880a-834bfc06a3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -440,16 +440,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223939Z:c0f60b58-af67-4018-b6a9-02435f02e66b" + "FRANCESOUTH:20201106T111243Z:5ec10772-bf3b-4c52-bafb-a86078a321f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:38 GMT" + "Fri, 06 Nov 2020 11:12:43 GMT" ], "Content-Length": [ "2157" @@ -461,17 +461,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"dfa8ec4b-c9c4-424f-b185-23c530b26869\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59261d19-26c4-4fd2-87b8-cc5762835227" + "5da4920e-e6ea-4342-bc4b-91f38886aed0" ], "Accept-Language": [ "en-US" @@ -500,16 +500,16 @@ "3" ], "x-ms-request-id": [ - "d6e2f22b-84a8-4922-a22c-c4c803f868c0" + "a6ff3418-0017-424f-b01c-70b7682d521a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d6e2f22b-84a8-4922-a22c-c4c803f868c0?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/a6ff3418-0017-424f-b01c-70b7682d521a?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "553e3f39-41a7-401e-b9e6-3634ed66b27b" + "c72f92bf-baf9-4fc3-b817-0a3b2bb98e32" ], "x-ms-arm-service-request-id": [ - "a66e8111-abc6-4052-bd33-29e8f1f83e01" + "0cd8b55e-1603-40e2-aae8-1010b87df0cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223930Z:553e3f39-41a7-401e-b9e6-3634ed66b27b" + "FRANCESOUTH:20201106T111234Z:c72f92bf-baf9-4fc3-b817-0a3b2bb98e32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:29 GMT" + "Fri, 06 Nov 2020 11:12:34 GMT" ], "Content-Length": [ "647" @@ -540,17 +540,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"5f481a84-aae7-4ce6-b504-8396680921f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"682188c2-6a27-493f-8c80-6428284f49ac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f1e9ed-d2ce-4077-b688-6d87c547c88a" + "757fcb6b-e438-4f8c-8bb2-40d1cb97bdc3" ], "Accept-Language": [ "en-US" @@ -579,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "cd71a292-7eb2-473d-a275-bd3e2751dd5e" + "8669b262-b309-4f0d-812d-7981767ff2d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/cd71a292-7eb2-473d-a275-bd3e2751dd5e?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/8669b262-b309-4f0d-812d-7981767ff2d9?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "eeb1aa02-3565-47bd-9ace-a8bdfca7b3b2" + "123129ce-d48d-468b-9994-1484805056b9" ], "x-ms-arm-service-request-id": [ - "52d6580e-c51e-41b2-a714-5665c6761c7a" + "e68bf64f-9886-46d1-888f-d31549eccda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,16 +598,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223935Z:eeb1aa02-3565-47bd-9ace-a8bdfca7b3b2" + "FRANCESOUTH:20201106T111240Z:123129ce-d48d-468b-9994-1484805056b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:34 GMT" + "Fri, 06 Nov 2020 11:12:40 GMT" ], "Content-Length": [ "2155" @@ -619,12 +619,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b3895286-1487-4c55-817b-bbd52beb2eb7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"963e7a7e-9e57-4dc1-9881-f3d5dc0b72e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1030-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"etag\": \"W/\\\"39af6c9a-e69e-4604-9b76-f60ba7d1cf78\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aec14052-a2e2-4fda-a75a-91e185d60873\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"39af6c9a-e69e-4604-9b76-f60ba7d1cf78\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"39af6c9a-e69e-4604-9b76-f60ba7d1cf78\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d6e2f22b-84a8-4922-a22c-c4c803f868c0?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q2ZTJmMjJiLTg0YTgtNDkyMi1hMjJjLWM0YzgwM2Y4NjhjMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/a6ff3418-0017-424f-b01c-70b7682d521a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZmYzNDE4LTAwMTctNDI0Zi1iMDFjLTcwYjc2ODJkNTIxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -643,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "3bc71073-be64-4a06-8d3d-dd49d6403810" + "89c6fda3-79bc-401b-b7ca-b189a4b9f871" ], "x-ms-correlation-request-id": [ - "c3777dfe-c630-425a-b852-2ac182d5d763" + "2be639ff-0937-436e-89d9-8599c3bcbc6c" ], "x-ms-arm-service-request-id": [ - "913fe611-4231-4686-aa87-ed5556be8026" + "dc07ee6b-4ff0-414b-a2a0-c2fcb0370abd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -659,16 +659,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223933Z:c3777dfe-c630-425a-b852-2ac182d5d763" + "FRANCESOUTH:20201106T111238Z:2be639ff-0937-436e-89d9-8599c3bcbc6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:33 GMT" + "Fri, 06 Nov 2020 11:12:38 GMT" ], "Content-Length": [ "29" @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/cd71a292-7eb2-473d-a275-bd3e2751dd5e?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NkNzFhMjkyLTdlYjItNDczZC1hMjc1LWJkM2UyNzUxZGQ1ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/8669b262-b309-4f0d-812d-7981767ff2d9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg2NjliMjYyLWIzMDktNGYwZC04MTJkLTc5ODE3NjdmZjJkOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -704,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "06055782-d710-408d-9d5b-1dd73fe7f9c3" + "17f151ab-fa7d-468d-a4ec-16945a888d2c" ], "x-ms-correlation-request-id": [ - "5a2bcdf1-c712-4de8-8770-a2f9a9618514" + "7435943b-93c2-4f90-9227-1a1783ab168d" ], "x-ms-arm-service-request-id": [ - "2a084bb3-b0b0-4056-aca4-ad005e824d59" + "48335a11-fdea-4292-b250-8e0066ed6f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,16 +720,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223938Z:5a2bcdf1-c712-4de8-8770-a2f9a9618514" + "FRANCESOUTH:20201106T111243Z:7435943b-93c2-4f90-9227-1a1783ab168d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:38 GMT" + "Fri, 06 Nov 2020 11:12:43 GMT" ], "Content-Length": [ "29" @@ -745,13 +745,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5Nzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "544666f7-7a32-4ffc-9ee1-ffb53ac114f0" + "dbc71351-1e41-4843-8c6d-fb9d83afdf52" ], "Accept-Language": [ "en-US" @@ -777,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A39%3A46.7895041Z'\"" + "W/\"datetime'2020-11-06T11%3A12%3A52.5415705Z'\"" ], "x-ms-request-id": [ - "a062411e-c4aa-409f-814b-9f1cbcbbde4b" + "1ce6b4d4-5ba3-4b12-9964-3adb3c2c6021" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/39317865-db19-4ca7-beba-eb38526df75d?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -801,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "8d174944-5049-4441-8db7-0f8689e580ae" + "2783a0fb-26dc-4ffe-bdf7-2eed40922283" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T223948Z:8d174944-5049-4441-8db7-0f8689e580ae" + "FRANCESOUTH:20201106T111253Z:2783a0fb-26dc-4ffe-bdf7-2eed40922283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +813,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:39:48 GMT" + "Fri, 06 Nov 2020 11:12:53 GMT" ], "Content-Length": [ - "315" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,12 +825,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\",\r\n \"name\": \"ps46\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A39%3A46.7895041Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978\",\r\n \"name\": \"ps9978\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A12%3A52.5415705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDM2NzNjZjctNGNlYy00ZDE1LTk5MTMtZTllNDBmZmQ5MzcxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/39317865-db19-4ca7-beba-eb38526df75d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzkzMTc4NjUtZGIxOS00Y2E3LWJlYmEtZWIzODUyNmRmNzVkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -849,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "8a2c7cee-25a6-493c-8d91-e873d226056b" + "34165dfb-7d1b-4fb4-a9d4-5317fdc3ca06" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -864,13 +864,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "e9e88352-b738-462c-9b1d-2d2bc3e3850c" + "3a79e212-0684-483e-9de5-d9eadd8a2a0a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224018Z:e9e88352-b738-462c-9b1d-2d2bc3e3850c" + "FRANCESOUTH:20201106T111324Z:3a79e212-0684-483e-9de5-d9eadd8a2a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,10 +879,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:18 GMT" + "Fri, 06 Nov 2020 11:13:23 GMT" ], "Content-Length": [ - "493" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,12 +891,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/03673cf7-4cec-4d15-9913-e9e40ffd9371\",\r\n \"name\": \"03673cf7-4cec-4d15-9913-e9e40ffd9371\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:39:46.6915428Z\",\r\n \"endTime\": \"2020-11-04T22:39:46.8634967Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/39317865-db19-4ca7-beba-eb38526df75d\",\r\n \"name\": \"39317865-db19-4ca7-beba-eb38526df75d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T11:12:52.408021Z\",\r\n \"endTime\": \"2020-11-06T11:12:52.6580417Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5Nzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -915,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A39%3A46.8575508Z'\"" + "W/\"datetime'2020-11-06T11%3A12%3A52.6606537Z'\"" ], "x-ms-request-id": [ - "95b10c10-5af6-450d-b006-4b037932d050" + "554f0593-13f9-4dcd-8a6f-fc3d59865ec7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -933,13 +933,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11998" ], "x-ms-correlation-request-id": [ - "82f7cf02-d17e-4b4d-be3b-09882ee2d266" + "daa53237-34ab-4961-8275-d1e883647162" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224019Z:82f7cf02-d17e-4b4d-be3b-09882ee2d266" + "FRANCESOUTH:20201106T111324Z:daa53237-34ab-4961-8275-d1e883647162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,10 +948,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:18 GMT" + "Fri, 06 Nov 2020 11:13:23 GMT" ], "Content-Length": [ - "316" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,17 +960,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46\",\r\n \"name\": \"ps46\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A39%3A46.8575508Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978\",\r\n \"name\": \"ps9978\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A12%3A52.6606537Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dbc59390-808a-4180-b412-6b1d66fac821" + "2c70d8dc-76ae-46c8-889e-0f014c602d83" ], "Accept-Language": [ "en-US" @@ -996,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A40%3A21.4497249Z'\"" + "W/\"datetime'2020-11-06T11%3A13%3A27.0296483Z'\"" ], "x-ms-request-id": [ - "e6d0bc9d-c4b0-45d1-b08b-e6e9d2335f0b" + "07daa685-be2f-4606-aab0-3ec40d38e93e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cabd3ae7-11ef-4035-9e0e-8fe1e8e3a3f5?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1020,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "1cbe89c0-07df-4814-b0e8-e562462f95f6" + "ca8494ad-bd70-4995-8142-4a7dd9eea332" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224022Z:1cbe89c0-07df-4814-b0e8-e562462f95f6" + "FRANCESOUTH:20201106T111328Z:ca8494ad-bd70-4995-8142-4a7dd9eea332" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1032,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:22 GMT" + "Fri, 06 Nov 2020 11:13:27 GMT" ], "Content-Length": [ - "460" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,12 +1044,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\",\r\n \"name\": \"ps46/ps7579\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A21.4497249Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795\",\r\n \"name\": \"ps9978/ps8795\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A13%3A27.0296483Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM2I2YzU1YzAtMTVhZi00YTM0LTk4N2YtMjUwZjM3NzhmNTY1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cabd3ae7-11ef-4035-9e0e-8fe1e8e3a3f5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvY2FiZDNhZTctMTFlZi00MDM1LTllMGUtOGZlMWU4ZTNhM2Y1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "6381b517-5506-41d7-8bd3-d83214492dba" + "73db56b9-2509-4fd6-af58-5d49feb660d1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1083,13 +1083,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11997" ], "x-ms-correlation-request-id": [ - "b2df0201-28c0-4ae5-9f20-d0ef37336d38" + "199452c5-4b40-4454-8238-99e6eab3d7c9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224052Z:b2df0201-28c0-4ae5-9f20-d0ef37336d38" + "FRANCESOUTH:20201106T111358Z:199452c5-4b40-4454-8238-99e6eab3d7c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1098,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:52 GMT" + "Fri, 06 Nov 2020 11:13:58 GMT" ], "Content-Length": [ - "514" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,12 +1110,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b6c55c0-15af-4a34-987f-250f3778f565\",\r\n \"name\": \"3b6c55c0-15af-4a34-987f-250f3778f565\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:40:21.3830037Z\",\r\n \"endTime\": \"2020-11-04T22:40:21.7267226Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cabd3ae7-11ef-4035-9e0e-8fe1e8e3a3f5\",\r\n \"name\": \"cabd3ae7-11ef-4035-9e0e-8fe1e8e3a3f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T11:13:26.9519168Z\",\r\n \"endTime\": \"2020-11-06T11:13:27.2957101Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1134,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A40%3A26.3251309Z'\"" + "W/\"datetime'2020-11-06T11%3A13%3A32.3363566Z'\"" ], "x-ms-request-id": [ - "fece7423-d3a0-4547-8509-29f95f556f41" + "094be037-e74f-4602-b08a-76ecf3e1c0ff" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1152,13 +1152,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11996" ], "x-ms-correlation-request-id": [ - "7941bd07-b472-42ea-9b9e-177b4dbdeffa" + "c4440cb5-3376-440c-9d85-7ff39b0d4ae3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224053Z:7941bd07-b472-42ea-9b9e-177b4dbdeffa" + "FRANCESOUTH:20201106T111358Z:c4440cb5-3376-440c-9d85-7ff39b0d4ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,10 +1167,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:52 GMT" + "Fri, 06 Nov 2020 11:13:58 GMT" ], "Content-Length": [ - "530" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,17 +1179,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579\",\r\n \"name\": \"ps46/ps7579\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A26.3251309Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"6edc18da-9559-b814-32c6-b3c7f55c1f42\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795\",\r\n \"name\": \"ps9978/ps8795\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A13%3A32.3363566Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a4ac2c7e-d85c-ee1e-2c28-ea2df4fe7c50\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczMxNDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63e74859-9637-4d03-8f94-34543c1df16a" + "fb3ae8cb-a8d4-4923-baea-8fb45441375e" ], "Accept-Language": [ "en-US" @@ -1215,13 +1215,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A40%3A55.9868609Z'\"" + "W/\"datetime'2020-11-06T11%3A14%3A01.1624856Z'\"" ], "x-ms-request-id": [ - "d5678d45-e602-457e-a8f4-364af244e181" + "3f302513-72fc-4556-bf55-c79dd193bf5b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c7e3bd5-c023-4035-bdef-7b70e50a4d31?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1239,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "130da318-33bf-46b8-8cc9-799bb7dc805c" + "ff737033-7e7e-4960-a613-93f38ffe5316" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224057Z:130da318-33bf-46b8-8cc9-799bb7dc805c" + "FRANCESOUTH:20201106T111402Z:ff737033-7e7e-4960-a613-93f38ffe5316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1251,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:40:56 GMT" + "Fri, 06 Nov 2020 11:14:02 GMT" ], "Content-Length": [ - "460" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1263,12 +1263,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\",\r\n \"name\": \"ps46/ps7064\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A55.9868609Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144\",\r\n \"name\": \"ps9978/ps3144\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A14%3A01.1624856Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmI1Zjk1ZTEtYjNkNC00ZmJmLTkwNTktMzMyOTA5ZmJmNjVmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c7e3bd5-c023-4035-bdef-7b70e50a4d31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM3ZTNiZDUtYzAyMy00MDM1LWJkZWYtN2I3MGU1MGE0ZDMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1287,7 +1287,7 @@ "no-cache" ], "x-ms-request-id": [ - "9279ea4d-8d2a-43ab-8e07-0bc16e72892c" + "c0cd88b4-d971-4b1c-90aa-0fe3f0b44e1f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1302,13 +1302,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11995" ], "x-ms-correlation-request-id": [ - "af457e82-e39e-459a-b77e-1ba276b7158b" + "ed337990-2488-468e-bfe6-91922da552a8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224127Z:af457e82-e39e-459a-b77e-1ba276b7158b" + "FRANCESOUTH:20201106T111432Z:ed337990-2488-468e-bfe6-91922da552a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1317,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:41:26 GMT" + "Fri, 06 Nov 2020 11:14:32 GMT" ], "Content-Length": [ - "514" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,12 +1329,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fb5f95e1-b3d4-4fbf-9059-332909fbf65f\",\r\n \"name\": \"fb5f95e1-b3d4-4fbf-9059-332909fbf65f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:40:55.7668929Z\",\r\n \"endTime\": \"2020-11-04T22:40:56.2094623Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c7e3bd5-c023-4035-bdef-7b70e50a4d31\",\r\n \"name\": \"1c7e3bd5-c023-4035-bdef-7b70e50a4d31\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T11:14:01.0769183Z\",\r\n \"endTime\": \"2020-11-06T11:14:01.3922033Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczMxNDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1353,10 +1353,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A40%3A57.7280786Z'\"" + "W/\"datetime'2020-11-06T11%3A14%3A04.8700757Z'\"" ], "x-ms-request-id": [ - "96876d5e-a1fe-430f-a445-53c3080c0742" + "b83de641-1267-4477-b978-51aa045e5e17" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1371,13 +1371,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11994" ], "x-ms-correlation-request-id": [ - "a6c5ed60-b95d-47f4-a120-940946d51bfd" + "81fe3e26-3e49-4b5e-b58f-7ed199147318" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224127Z:a6c5ed60-b95d-47f4-a120-940946d51bfd" + "FRANCESOUTH:20201106T111433Z:81fe3e26-3e49-4b5e-b58f-7ed199147318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,10 +1386,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:41:27 GMT" + "Fri, 06 Nov 2020 11:14:32 GMT" ], "Content-Length": [ - "530" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,17 +1398,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\",\r\n \"name\": \"ps46/ps7064\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A40%3A57.7280786Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"194b29b6-aeb0-8682-0c7c-7b1a83e36046\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144\",\r\n \"name\": \"ps9978/ps3144\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A14%3A04.8700757Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"466b9559-430b-5a04-7092-ff645019889d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTUvdm9sdW1lcy9wczQ0MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc9aa460-03d9-423a-bb29-a213ea793e23" + "5265a347-293f-4123-b1a9-24d9472ecd6e" ], "Accept-Language": [ "en-US" @@ -1434,13 +1434,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A41%3A30.6450812Z'\"" + "W/\"datetime'2020-11-06T11%3A14%3A35.7246215Z'\"" ], "x-ms-request-id": [ - "bda7990d-93ad-435d-abf4-326eed3b92df" + "d40cc1f1-c4c1-4db4-b9a7-7dc22cf16d07" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1458,10 +1458,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "277f0d90-c3f1-45d5-b6fb-a1cefef31854" + "6399d2a4-4834-42be-adf5-0d980cf408a4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224131Z:277f0d90-c3f1-45d5-b6fb-a1cefef31854" + "FRANCESOUTH:20201106T111436Z:6399d2a4-4834-42be-adf5-0d980cf408a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,10 +1470,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:41:31 GMT" + "Fri, 06 Nov 2020 11:14:36 GMT" ], "Content-Length": [ - "1055" + "1059" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,12 +1482,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A41%3A30.6450812Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\",\r\n \"name\": \"ps9978/ps8795/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A14%3A35.7246215Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1506,7 +1506,7 @@ "no-cache" ], "x-ms-request-id": [ - "b882b02f-aff6-4a93-87f8-30a47c9c50a1" + "a546e89c-8192-4800-b0fb-38930af65c0f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1521,13 +1521,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11993" ], "x-ms-correlation-request-id": [ - "578cdabd-1d0e-40d9-ae05-3b72fb805299" + "a8062d27-aa6b-460d-9bb1-77abffe30d55" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224201Z:578cdabd-1d0e-40d9-ae05-3b72fb805299" + "FRANCESOUTH:20201106T111507Z:a8062d27-aa6b-460d-9bb1-77abffe30d55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1536,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:42:01 GMT" + "Fri, 06 Nov 2020 11:15:06 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,12 +1548,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1572,7 +1572,7 @@ "no-cache" ], "x-ms-request-id": [ - "a3eead74-7ad7-49c0-96a4-c88988392d0b" + "66ce9634-e217-47ba-84e6-bcef7f0fa866" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1587,13 +1587,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11992" ], "x-ms-correlation-request-id": [ - "83f1b355-3d91-4a2a-99f3-1ee2a8f5d26d" + "18b1702b-68b4-45e6-a616-91f31b2b60fd" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224232Z:83f1b355-3d91-4a2a-99f3-1ee2a8f5d26d" + "FRANCESOUTH:20201106T111537Z:18b1702b-68b4-45e6-a616-91f31b2b60fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,10 +1602,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:42:31 GMT" + "Fri, 06 Nov 2020 11:15:36 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1614,12 +1614,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1638,7 +1638,7 @@ "no-cache" ], "x-ms-request-id": [ - "6bc72535-542b-448a-bb5d-bfb2839f8f55" + "ece1112a-b89c-40cb-926a-dacf934a2bf5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1653,13 +1653,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11991" ], "x-ms-correlation-request-id": [ - "5e0d1d4e-4aac-4b44-a37d-1181e3d97099" + "81e71739-1486-47f1-8de6-f6ee94651f27" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224302Z:5e0d1d4e-4aac-4b44-a37d-1181e3d97099" + "FRANCESOUTH:20201106T111607Z:81e71739-1486-47f1-8de6-f6ee94651f27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,10 +1668,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:43:01 GMT" + "Fri, 06 Nov 2020 11:16:07 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1680,12 +1680,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1704,7 +1704,7 @@ "no-cache" ], "x-ms-request-id": [ - "84174b38-e9b7-43d8-b782-1a123977f7d3" + "98f6dbdc-1502-42dd-a361-e85f6a64b11a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1719,13 +1719,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11990" ], "x-ms-correlation-request-id": [ - "657c2768-1575-48a6-a454-95ce8c913b59" + "790d49f9-a488-462b-9121-537b0602645d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224332Z:657c2768-1575-48a6-a454-95ce8c913b59" + "FRANCESOUTH:20201106T111637Z:790d49f9-a488-462b-9121-537b0602645d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,10 +1734,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:43:31 GMT" + "Fri, 06 Nov 2020 11:16:37 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,12 +1746,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1770,7 +1770,7 @@ "no-cache" ], "x-ms-request-id": [ - "55b54c14-320c-4040-aa21-f158495c5758" + "e7b354e4-ed1b-44af-96fe-720856c55bd9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1785,13 +1785,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11989" ], "x-ms-correlation-request-id": [ - "1c777b42-e771-46f7-b7dc-478425d51f66" + "f6542574-eeed-4b43-8999-884f1e369981" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224402Z:1c777b42-e771-46f7-b7dc-478425d51f66" + "FRANCESOUTH:20201106T111708Z:f6542574-eeed-4b43-8999-884f1e369981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,10 +1800,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:44:02 GMT" + "Fri, 06 Nov 2020 11:17:07 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1812,12 +1812,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1836,7 +1836,7 @@ "no-cache" ], "x-ms-request-id": [ - "cd2d00d8-d503-4ead-9ecd-eccd30c07d40" + "43d57ec5-cb69-4307-9ff8-489dd1be15d9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1844,8 +1844,71 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11988" + ], + "x-ms-correlation-request-id": [ + "7cdaf3f4-e969-4426-8717-b2a0328e8bbe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111738Z:7cdaf3f4-e969-4426-8717-b2a0328e8bbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:17:38 GMT" + ], + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a69b43c9-5853-48f3-80c3-bf5bad272c95" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Server": [ "Microsoft-IIS/10.0" @@ -1853,11 +1916,14 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], "x-ms-correlation-request-id": [ - "e3588538-5148-4900-8af9-7d95de12aac3" + "b2ba0b53-d8e0-4831-ae5b-361637c3bac1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224433Z:e3588538-5148-4900-8af9-7d95de12aac3" + "FRANCESOUTH:20201106T111808Z:b2ba0b53-d8e0-4831-ae5b-361637c3bac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,10 +1932,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:44:32 GMT" + "Fri, 06 Nov 2020 11:18:08 GMT" ], "Content-Length": [ - "518" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1878,12 +1944,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2M4OTYxNzMtM2I4MS00ZjYzLWI3MmEtZmE4OTc4OTVlYTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTYwZWRhM2YtZDVhYS00Y2FlLWFlYmQtN2ZjYmQ0ZWQ5NmM2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1902,7 +1968,7 @@ "no-cache" ], "x-ms-request-id": [ - "13c9c097-783a-4044-bb3a-9d2137059148" + "fedefb82-ea9b-46b0-aec1-425e9be7d449" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1917,13 +1983,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11986" ], "x-ms-correlation-request-id": [ - "14fd405f-bea0-4f0c-ac20-cacbe84f7dac" + "bc610496-ad13-43ad-a379-b4816e65a4a6" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224504Z:14fd405f-bea0-4f0c-ac20-cacbe84f7dac" + "FRANCESOUTH:20201106T111838Z:bc610496-ad13-43ad-a379-b4816e65a4a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1932,10 +1998,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:45:03 GMT" + "Fri, 06 Nov 2020 11:18:38 GMT" ], "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1944,12 +2010,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"name\": \"7c896173-3b81-4f63-b72a-fa897895ea26\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:41:30.5325539Z\",\r\n \"endTime\": \"2020-11-04T22:44:48.9542502Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"name\": \"e60eda3f-d5aa-4cae-aebd-7fcbd4ed96c6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T11:14:35.5978585Z\",\r\n \"endTime\": \"2020-11-06T11:18:15.638525Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTUvdm9sdW1lcy9wczQ0MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1968,10 +2034,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\"" + "W/\"datetime'2020-11-06T11%3A18%3A15.6339872Z'\"" ], "x-ms-request-id": [ - "1c4d666e-2f53-49e9-be59-da2c4758b886" + "5fce3b8f-79a9-41a2-affe-7df1e9f58014" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1986,13 +2052,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11985" ], "x-ms-correlation-request-id": [ - "e0b07035-8415-4180-ae35-cafd02ad2f98" + "8d0eb7da-ea96-4955-874f-a9ad178da242" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224504Z:e0b07035-8415-4180-ae35-cafd02ad2f98" + "FRANCESOUTH:20201106T111839Z:8d0eb7da-ea96-4955-874f-a9ad178da242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,10 +2067,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:45:03 GMT" + "Fri, 06 Nov 2020 11:18:38 GMT" ], "Content-Length": [ - "1531" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,17 +2079,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\",\r\n \"name\": \"ps9978/ps8795/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A18%3A15.6339872Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"name\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_db5ff236\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTUvdm9sdW1lcy9wczQ0MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9382411-7021-4559-9ca8-464b54d4f274" + "af7733ca-d1ee-4b35-97d8-1eb54138cc33" ], "Accept-Language": [ "en-US" @@ -2043,10 +2109,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\"" + "W/\"datetime'2020-11-06T11%3A18%3A15.6339872Z'\"" ], "x-ms-request-id": [ - "1e9f2891-c5e5-4e87-872a-6f26318306e9" + "930420cf-1708-4d29-8715-c83e28cce16e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2061,13 +2127,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11984" ], "x-ms-correlation-request-id": [ - "3e1fa22b-74f9-4988-a316-857417cd03f1" + "53b4c33c-1a55-4de6-8d88-7fb8c0aafb00" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224504Z:3e1fa22b-74f9-4988-a316-857417cd03f1" + "FRANCESOUTH:20201106T111839Z:53b4c33c-1a55-4de6-8d88-7fb8c0aafb00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2076,10 +2142,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:45:04 GMT" + "Fri, 06 Nov 2020 11:18:39 GMT" ], "Content-Length": [ - "1531" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2088,17 +2154,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\",\r\n \"name\": \"ps46/ps7579/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A44%3A48.9514705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\",\r\n \"name\": \"ps9978/ps8795/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A18%3A15.6339872Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"name\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_db5ff236\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127/poolChange?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3NTc5L3ZvbHVtZXMvcHM4MTI3L3Bvb2xDaGFuZ2U/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433/poolChange?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTUvdm9sdW1lcy9wczQ0MzMvcG9vbENoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"newPoolResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064\"\r\n}", + "RequestBody": "{\r\n \"newPoolResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d77c351-616c-40be-b137-1356e4127fe4" + "bb97afbb-de04-4beb-997a-f80a0eb469df" ], "Accept-Language": [ "en-US" @@ -2113,7 +2179,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "172" + "174" ] }, "ResponseHeaders": { @@ -2124,10 +2190,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2145,13 +2211,13 @@ "1199" ], "x-ms-request-id": [ - "d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + "656cbfe2-47a9-4366-9158-153a7011ca17" ], "x-ms-correlation-request-id": [ - "d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + "656cbfe2-47a9-4366-9158-153a7011ca17" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224505Z:d61182e0-fa54-4ae5-bcde-fa5186d7ace9" + "FRANCESOUTH:20201106T111840Z:656cbfe2-47a9-4366-9158-153a7011ca17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,7 +2226,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:45:05 GMT" + "Fri, 06 Nov 2020 11:18:40 GMT" ], "Expires": [ "-1" @@ -2173,8 +2239,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjMxYjJmNjMtNzhiOC00Yzc5LWIzOTUtNWMxODhkYTYwOTUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2193,7 +2259,7 @@ "no-cache" ], "x-ms-request-id": [ - "b8ede177-00bb-47f3-99b7-c8e82564b020" + "3912ac6b-a436-4567-98a9-462afc2e5885" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2201,20 +2267,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], "x-ms-correlation-request-id": [ - "ddde9afa-c720-4ba6-9ecc-6dd53ed30164" + "95474061-afc3-44fc-9ffc-0f1b61e57c1a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224535Z:ddde9afa-c720-4ba6-9ecc-6dd53ed30164" + "FRANCESOUTH:20201106T111911Z:95474061-afc3-44fc-9ffc-0f1b61e57c1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,10 +2289,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:45:35 GMT" + "Fri, 06 Nov 2020 11:19:10 GMT" ], "Content-Length": [ - "520" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,12 +2301,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"name\": \"61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"status\": \"ChangePool\",\r\n \"startTime\": \"2020-11-04T22:45:05.3742068Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951\",\r\n \"name\": \"f31b2f63-78b8-4c79-b395-5c188da60951\",\r\n \"status\": \"ChangePool\",\r\n \"startTime\": \"2020-11-06T11:18:40.6645755Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjMxYjJmNjMtNzhiOC00Yzc5LWIzOTUtNWMxODhkYTYwOTUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2259,7 +2325,7 @@ "no-cache" ], "x-ms-request-id": [ - "375340ac-f754-4792-943b-9f1f7083ca61" + "8e18fd21-bf04-4122-a214-842483f52e8a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2274,13 +2340,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11982" ], "x-ms-correlation-request-id": [ - "ac9eac87-4497-4eb3-9879-36e23668d7b2" + "fe87a725-141e-49ff-9c55-3e9ce007d02e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224606Z:ac9eac87-4497-4eb3-9879-36e23668d7b2" + "FRANCESOUTH:20201106T111941Z:fe87a725-141e-49ff-9c55-3e9ce007d02e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2289,10 +2355,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:05 GMT" + "Fri, 06 Nov 2020 11:19:41 GMT" ], "Content-Length": [ - "529" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2301,12 +2367,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"name\": \"61fa859d-2bc0-49e7-b3c5-fa303826d29a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-04T22:45:05.3742068Z\",\r\n \"endTime\": \"2020-11-04T22:45:51.0410446Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7579/volumes/ps8127\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951\",\r\n \"name\": \"f31b2f63-78b8-4c79-b395-5c188da60951\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T11:18:40.6645755Z\",\r\n \"endTime\": \"2020-11-06T11:19:29.1204414Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/61fa859d-2bc0-49e7-b3c5-fa303826d29a?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjFmYTg1OWQtMmJjMC00OWU3LWIzYzUtZmEzMDM4MjZkMjlhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjMxYjJmNjMtNzhiOC00Yzc5LWIzOTUtNWMxODhkYTYwOTUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,7 +2391,7 @@ "no-cache" ], "x-ms-request-id": [ - "7230969f-3b40-422e-bc32-90c98a4d9e32" + "4e849248-6b28-4c29-99bd-2f1d5f06acf6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2340,13 +2406,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11981" ], "x-ms-correlation-request-id": [ - "da5cc6d0-daf2-4ffc-b5aa-7efdd2171fcc" + "d4667d0a-d370-4664-bf24-936ffb3b0829" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224606Z:da5cc6d0-daf2-4ffc-b5aa-7efdd2171fcc" + "FRANCESOUTH:20201106T111942Z:d4667d0a-d370-4664-bf24-936ffb3b0829" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,10 +2421,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:05 GMT" + "Fri, 06 Nov 2020 11:19:41 GMT" ], "Content-Length": [ - "1887" + "1893" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2367,17 +2433,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A05.5422605Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"poolId\": \"194b29b6-aeb0-8682-0c7c-7b1a83e36046\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433\",\r\n \"name\": \"ps9978/ps3144/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A18%3A40.7839609Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"name\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_db5ff236\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433\",\r\n \"poolId\": \"466b9559-430b-5a04-7092-ff645019889d\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczMxNDQvdm9sdW1lcy9wczQ0MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7637c87-074f-4e4f-84fc-44a1677de219" + "ee2587fe-a7f9-4b35-a893-09a8527e8310" ], "Accept-Language": [ "en-US" @@ -2397,10 +2463,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\"" + "W/\"datetime'2020-11-06T11%3A19%3A29.1248829Z'\"" ], "x-ms-request-id": [ - "ec2ba6dc-7b05-4b22-ad00-ef5b979f907d" + "04b5ffbe-ce30-4834-9c31-b3a58b133ecd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2415,13 +2481,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11980" ], "x-ms-correlation-request-id": [ - "c59d2bf1-d830-4c48-8df0-efcbe984c782" + "8acc0f8e-a937-412f-b9d5-48c679ddbd7a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224606Z:c59d2bf1-d830-4c48-8df0-efcbe984c782" + "FRANCESOUTH:20201106T111942Z:8acc0f8e-a937-412f-b9d5-48c679ddbd7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,10 +2496,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:06 GMT" + "Fri, 06 Nov 2020 11:19:41 GMT" ], "Content-Length": [ - "1503" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2442,17 +2508,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433\",\r\n \"name\": \"ps9978/ps3144/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A19%3A29.1248829Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"name\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_db5ff236\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2L2NhcGFjaXR5UG9vbHMvcHM3MDY0L3ZvbHVtZXMvcHM4MTI3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczMxNDQvdm9sdW1lcy9wczQ0MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62ebabb4-abbb-4bd7-a13e-d87cfb8e5458" + "c700cfcd-9497-44cb-9d59-ab8fd4f3e068" ], "Accept-Language": [ "en-US" @@ -2472,10 +2538,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\"" + "W/\"datetime'2020-11-06T11%3A19%3A29.1248829Z'\"" ], "x-ms-request-id": [ - "0fb75db0-6868-4fbf-986d-4a5719c88b0d" + "f4dfe05f-9940-4022-9eef-e074d7269710" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2490,13 +2556,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11979" ], "x-ms-correlation-request-id": [ - "2b2bc372-2795-4769-9e44-bcc7cfd76347" + "5be50540-dbd5-4980-9490-0232e0a614f1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224606Z:2b2bc372-2795-4769-9e44-bcc7cfd76347" + "FRANCESOUTH:20201106T111942Z:5be50540-dbd5-4980-9490-0232e0a614f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,10 +2571,10 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:06 GMT" + "Fri, 06 Nov 2020 11:19:42 GMT" ], "Content-Length": [ - "1503" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2517,17 +2583,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.NetApp/netAppAccounts/ps46/capacityPools/ps7064/volumes/ps8127\",\r\n \"name\": \"ps46/ps7064/ps8127\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-04T22%3A45%3A51.0428635Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3ae0f05d-ca04-7a46-421b-ad36f89ef446\",\r\n \"name\": \"ps8127\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8127\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_43fd4602\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4921/providers/Microsoft.Network/virtualNetworks/ps4921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144/volumes/ps4433\",\r\n \"name\": \"ps9978/ps3144/ps4433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T11%3A19%3A29.1248829Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"aab60eaa-337e-d514-c417-d4a753f9e8a3\",\r\n \"name\": \"ps4433\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4433\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_db5ff236\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1030?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00cd7063-0340-42e0-847b-625ef55c20e8" + "a9243f3a-be19-4457-b427-583b164d1aad" ], "Accept-Language": [ "en-US" @@ -2547,7 +2613,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2556,13 +2622,13 @@ "14999" ], "x-ms-request-id": [ - "4c44aac5-f22b-436a-99d0-94c1d92c4775" + "673f3299-f555-4195-ae40-35bbdd18fa88" ], "x-ms-correlation-request-id": [ - "4c44aac5-f22b-436a-99d0-94c1d92c4775" + "673f3299-f555-4195-ae40-35bbdd18fa88" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224611Z:4c44aac5-f22b-436a-99d0-94c1d92c4775" + "FRANCESOUTH:20201106T111946Z:673f3299-f555-4195-ae40-35bbdd18fa88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2637,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:10 GMT" + "Fri, 06 Nov 2020 11:19:46 GMT" ], "Expires": [ "-1" @@ -2584,8 +2650,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2604,7 +2670,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2613,13 +2679,13 @@ "11999" ], "x-ms-request-id": [ - "4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + "84d2b299-aaeb-4be9-be38-c8119623778c" ], "x-ms-correlation-request-id": [ - "4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + "84d2b299-aaeb-4be9-be38-c8119623778c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224626Z:4fc0016c-bd10-4a82-9c08-cb7fb1d8e98a" + "FRANCESOUTH:20201106T112002Z:84d2b299-aaeb-4be9-be38-c8119623778c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2628,7 +2694,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:25 GMT" + "Fri, 06 Nov 2020 11:20:01 GMT" ], "Expires": [ "-1" @@ -2641,8 +2707,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2661,7 +2727,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2670,13 +2736,13 @@ "11998" ], "x-ms-request-id": [ - "74989e7b-d605-4337-81e8-9bce855ce535" + "4cc1757e-f0e0-4b83-ac11-c9332aea655f" ], "x-ms-correlation-request-id": [ - "74989e7b-d605-4337-81e8-9bce855ce535" + "4cc1757e-f0e0-4b83-ac11-c9332aea655f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224641Z:74989e7b-d605-4337-81e8-9bce855ce535" + "FRANCESOUTH:20201106T112017Z:4cc1757e-f0e0-4b83-ac11-c9332aea655f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +2751,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:40 GMT" + "Fri, 06 Nov 2020 11:20:16 GMT" ], "Expires": [ "-1" @@ -2698,8 +2764,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2718,7 +2784,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2727,13 +2793,13 @@ "11997" ], "x-ms-request-id": [ - "66e54722-e282-41d1-a5a0-3446f72fdea8" + "1d8c62f1-58c6-4584-8f1b-ddce671713f2" ], "x-ms-correlation-request-id": [ - "66e54722-e282-41d1-a5a0-3446f72fdea8" + "1d8c62f1-58c6-4584-8f1b-ddce671713f2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224657Z:66e54722-e282-41d1-a5a0-3446f72fdea8" + "FRANCESOUTH:20201106T112032Z:1d8c62f1-58c6-4584-8f1b-ddce671713f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,7 +2808,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:46:56 GMT" + "Fri, 06 Nov 2020 11:20:32 GMT" ], "Expires": [ "-1" @@ -2755,8 +2821,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2775,7 +2841,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2784,13 +2850,13 @@ "11996" ], "x-ms-request-id": [ - "56a406a2-5784-4c42-b80e-8c94a6b42da0" + "deafa8b2-1185-4f8a-b05c-b60eb23a1672" ], "x-ms-correlation-request-id": [ - "56a406a2-5784-4c42-b80e-8c94a6b42da0" + "deafa8b2-1185-4f8a-b05c-b60eb23a1672" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224712Z:56a406a2-5784-4c42-b80e-8c94a6b42da0" + "FRANCESOUTH:20201106T112048Z:deafa8b2-1185-4f8a-b05c-b60eb23a1672" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2799,7 +2865,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:47:11 GMT" + "Fri, 06 Nov 2020 11:20:47 GMT" ], "Expires": [ "-1" @@ -2812,8 +2878,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2832,7 +2898,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2841,13 +2907,13 @@ "11995" ], "x-ms-request-id": [ - "c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + "3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" ], "x-ms-correlation-request-id": [ - "c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + "3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224727Z:c78bcbac-aa3d-4b1f-a584-51b0f49840b3" + "FRANCESOUTH:20201106T112103Z:3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2856,7 +2922,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:47:27 GMT" + "Fri, 06 Nov 2020 11:21:02 GMT" ], "Expires": [ "-1" @@ -2869,8 +2935,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2889,7 +2955,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2898,13 +2964,13 @@ "11994" ], "x-ms-request-id": [ - "4f4a1e49-13b0-47fa-bfee-633e378ee830" + "bf44961a-f1fb-48e9-9909-eede697eb6f1" ], "x-ms-correlation-request-id": [ - "4f4a1e49-13b0-47fa-bfee-633e378ee830" + "bf44961a-f1fb-48e9-9909-eede697eb6f1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224743Z:4f4a1e49-13b0-47fa-bfee-633e378ee830" + "FRANCESOUTH:20201106T112118Z:bf44961a-f1fb-48e9-9909-eede697eb6f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2913,7 +2979,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:47:43 GMT" + "Fri, 06 Nov 2020 11:21:17 GMT" ], "Expires": [ "-1" @@ -2926,8 +2992,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2946,7 +3012,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2955,13 +3021,13 @@ "11993" ], "x-ms-request-id": [ - "e746bd47-01f4-4254-9e27-54c66a6f2987" + "871ffc12-60fb-43cc-8b72-7909b637b4e9" ], "x-ms-correlation-request-id": [ - "e746bd47-01f4-4254-9e27-54c66a6f2987" + "871ffc12-60fb-43cc-8b72-7909b637b4e9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224758Z:e746bd47-01f4-4254-9e27-54c66a6f2987" + "FRANCESOUTH:20201106T112134Z:871ffc12-60fb-43cc-8b72-7909b637b4e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2970,7 +3036,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:47:58 GMT" + "Fri, 06 Nov 2020 11:21:33 GMT" ], "Expires": [ "-1" @@ -2983,8 +3049,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3003,7 +3069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3012,13 +3078,13 @@ "11992" ], "x-ms-request-id": [ - "a0b24327-3f88-4678-b11f-fc16105aba51" + "26ba79d8-612e-4385-8ce2-b2b06fbf3100" ], "x-ms-correlation-request-id": [ - "a0b24327-3f88-4678-b11f-fc16105aba51" + "26ba79d8-612e-4385-8ce2-b2b06fbf3100" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224813Z:a0b24327-3f88-4678-b11f-fc16105aba51" + "FRANCESOUTH:20201106T112149Z:26ba79d8-612e-4385-8ce2-b2b06fbf3100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,7 +3093,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:48:12 GMT" + "Fri, 06 Nov 2020 11:21:49 GMT" ], "Expires": [ "-1" @@ -3040,8 +3106,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,7 +3126,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3069,13 +3135,13 @@ "11991" ], "x-ms-request-id": [ - "5fac9b12-14ac-4f15-9eb5-55c971df4198" + "99799f7d-6735-463e-8aa8-a414c9b96f82" ], "x-ms-correlation-request-id": [ - "5fac9b12-14ac-4f15-9eb5-55c971df4198" + "99799f7d-6735-463e-8aa8-a414c9b96f82" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224829Z:5fac9b12-14ac-4f15-9eb5-55c971df4198" + "FRANCESOUTH:20201106T112204Z:99799f7d-6735-463e-8aa8-a414c9b96f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3084,7 +3150,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:48:28 GMT" + "Fri, 06 Nov 2020 11:22:04 GMT" ], "Expires": [ "-1" @@ -3097,8 +3163,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3117,7 +3183,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3126,13 +3192,13 @@ "11990" ], "x-ms-request-id": [ - "f1adac00-898a-40ff-afa3-107cee651bca" + "f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" ], "x-ms-correlation-request-id": [ - "f1adac00-898a-40ff-afa3-107cee651bca" + "f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224844Z:f1adac00-898a-40ff-afa3-107cee651bca" + "FRANCESOUTH:20201106T112220Z:f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3141,7 +3207,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:48:43 GMT" + "Fri, 06 Nov 2020 11:22:19 GMT" ], "Expires": [ "-1" @@ -3154,8 +3220,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3174,7 +3240,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3183,13 +3249,13 @@ "11989" ], "x-ms-request-id": [ - "0ac2cec7-32e9-4611-961c-98e66b02ef49" + "36d0e92f-ad97-4131-b568-c08782af976e" ], "x-ms-correlation-request-id": [ - "0ac2cec7-32e9-4611-961c-98e66b02ef49" + "36d0e92f-ad97-4131-b568-c08782af976e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224859Z:0ac2cec7-32e9-4611-961c-98e66b02ef49" + "FRANCESOUTH:20201106T112235Z:36d0e92f-ad97-4131-b568-c08782af976e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3198,7 +3264,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:48:59 GMT" + "Fri, 06 Nov 2020 11:22:35 GMT" ], "Expires": [ "-1" @@ -3211,8 +3277,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3231,7 +3297,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3240,13 +3306,13 @@ "11988" ], "x-ms-request-id": [ - "fdfe82c7-686a-4aa2-9005-1a9857b413df" + "e67234f4-2c9a-473a-80e3-12a2b2ac34ce" ], "x-ms-correlation-request-id": [ - "fdfe82c7-686a-4aa2-9005-1a9857b413df" + "e67234f4-2c9a-473a-80e3-12a2b2ac34ce" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224915Z:fdfe82c7-686a-4aa2-9005-1a9857b413df" + "FRANCESOUTH:20201106T112251Z:e67234f4-2c9a-473a-80e3-12a2b2ac34ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3255,7 +3321,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:49:14 GMT" + "Fri, 06 Nov 2020 11:22:50 GMT" ], "Expires": [ "-1" @@ -3268,8 +3334,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3288,7 +3354,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3297,13 +3363,13 @@ "11987" ], "x-ms-request-id": [ - "2d625826-a11f-43ce-9fba-9bac53ae69d9" + "9597ba88-065c-4fc2-a634-f77ae0b85d88" ], "x-ms-correlation-request-id": [ - "2d625826-a11f-43ce-9fba-9bac53ae69d9" + "9597ba88-065c-4fc2-a634-f77ae0b85d88" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224930Z:2d625826-a11f-43ce-9fba-9bac53ae69d9" + "FRANCESOUTH:20201106T112306Z:9597ba88-065c-4fc2-a634-f77ae0b85d88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3312,7 +3378,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:49:30 GMT" + "Fri, 06 Nov 2020 11:23:05 GMT" ], "Expires": [ "-1" @@ -3325,8 +3391,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3345,7 +3411,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3354,13 +3420,13 @@ "11986" ], "x-ms-request-id": [ - "ad70d18c-1f78-41fd-877e-8c14b58e97db" + "49e8924b-e30a-419a-8884-3ad7afce7667" ], "x-ms-correlation-request-id": [ - "ad70d18c-1f78-41fd-877e-8c14b58e97db" + "49e8924b-e30a-419a-8884-3ad7afce7667" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T224945Z:ad70d18c-1f78-41fd-877e-8c14b58e97db" + "FRANCESOUTH:20201106T112321Z:49e8924b-e30a-419a-8884-3ad7afce7667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3369,7 +3435,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:49:44 GMT" + "Fri, 06 Nov 2020 11:23:20 GMT" ], "Expires": [ "-1" @@ -3382,8 +3448,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3402,7 +3468,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3411,13 +3477,13 @@ "11985" ], "x-ms-request-id": [ - "ce53d998-99d5-4666-bd49-4e76245f5a7a" + "aedf0121-e627-48ef-8d08-8e1c889a9a00" ], "x-ms-correlation-request-id": [ - "ce53d998-99d5-4666-bd49-4e76245f5a7a" + "aedf0121-e627-48ef-8d08-8e1c889a9a00" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225001Z:ce53d998-99d5-4666-bd49-4e76245f5a7a" + "FRANCESOUTH:20201106T112337Z:aedf0121-e627-48ef-8d08-8e1c889a9a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3426,7 +3492,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:50:00 GMT" + "Fri, 06 Nov 2020 11:23:37 GMT" ], "Expires": [ "-1" @@ -3439,8 +3505,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3459,7 +3525,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3468,13 +3534,13 @@ "11984" ], "x-ms-request-id": [ - "f371fb24-d2c6-4722-b802-03c70df3a07e" + "4084b628-ea6b-4828-8a36-b4509d975105" ], "x-ms-correlation-request-id": [ - "f371fb24-d2c6-4722-b802-03c70df3a07e" + "4084b628-ea6b-4828-8a36-b4509d975105" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225016Z:f371fb24-d2c6-4722-b802-03c70df3a07e" + "FRANCESOUTH:20201106T112352Z:4084b628-ea6b-4828-8a36-b4509d975105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3483,7 +3549,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:50:15 GMT" + "Fri, 06 Nov 2020 11:23:52 GMT" ], "Expires": [ "-1" @@ -3496,8 +3562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3516,7 +3582,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3525,13 +3591,13 @@ "11983" ], "x-ms-request-id": [ - "82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + "3ee5b437-7436-418c-a3fc-faa5c25f59da" ], "x-ms-correlation-request-id": [ - "82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + "3ee5b437-7436-418c-a3fc-faa5c25f59da" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225031Z:82ea7f1f-6dd7-4af2-b03a-eb1083d63476" + "FRANCESOUTH:20201106T112407Z:3ee5b437-7436-418c-a3fc-faa5c25f59da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3540,7 +3606,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:50:31 GMT" + "Fri, 06 Nov 2020 11:24:07 GMT" ], "Expires": [ "-1" @@ -3553,8 +3619,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3573,7 +3639,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3582,13 +3648,13 @@ "11982" ], "x-ms-request-id": [ - "efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + "f436b170-98c7-4d36-b071-5007a68b57ea" ], "x-ms-correlation-request-id": [ - "efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + "f436b170-98c7-4d36-b071-5007a68b57ea" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225047Z:efe7cc06-5fb1-4a5c-9171-65677f3b9ce1" + "FRANCESOUTH:20201106T112423Z:f436b170-98c7-4d36-b071-5007a68b57ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,7 +3663,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:50:46 GMT" + "Fri, 06 Nov 2020 11:24:22 GMT" ], "Expires": [ "-1" @@ -3610,8 +3676,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,7 +3696,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3639,13 +3705,13 @@ "11981" ], "x-ms-request-id": [ - "f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + "fc8034ff-4e05-47a1-bd6d-86282f611388" ], "x-ms-correlation-request-id": [ - "f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + "fc8034ff-4e05-47a1-bd6d-86282f611388" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225102Z:f8b981bd-90b9-48e7-8b51-19d0ad1368bc" + "FRANCESOUTH:20201106T112438Z:fc8034ff-4e05-47a1-bd6d-86282f611388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3654,7 +3720,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:51:02 GMT" + "Fri, 06 Nov 2020 11:24:37 GMT" ], "Expires": [ "-1" @@ -3667,8 +3733,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3687,7 +3753,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3696,13 +3762,13 @@ "11980" ], "x-ms-request-id": [ - "36f6b62e-a873-4046-a195-0426235bc6f2" + "c874623d-bca3-41af-ad8b-c32010e28726" ], "x-ms-correlation-request-id": [ - "36f6b62e-a873-4046-a195-0426235bc6f2" + "c874623d-bca3-41af-ad8b-c32010e28726" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225118Z:36f6b62e-a873-4046-a195-0426235bc6f2" + "FRANCESOUTH:20201106T112453Z:c874623d-bca3-41af-ad8b-c32010e28726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3711,7 +3777,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:51:17 GMT" + "Fri, 06 Nov 2020 11:24:53 GMT" ], "Expires": [ "-1" @@ -3724,8 +3790,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3744,7 +3810,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3753,13 +3819,13 @@ "11979" ], "x-ms-request-id": [ - "73c606c1-26cc-46ea-891f-f3e36cab974c" + "663b70c1-db46-4d93-ae47-cf69e82664ea" ], "x-ms-correlation-request-id": [ - "73c606c1-26cc-46ea-891f-f3e36cab974c" + "663b70c1-db46-4d93-ae47-cf69e82664ea" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225133Z:73c606c1-26cc-46ea-891f-f3e36cab974c" + "FRANCESOUTH:20201106T112509Z:663b70c1-db46-4d93-ae47-cf69e82664ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3768,7 +3834,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:51:33 GMT" + "Fri, 06 Nov 2020 11:25:09 GMT" ], "Expires": [ "-1" @@ -3781,8 +3847,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,365 +3866,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-request-id": [ - "26e16241-a558-41bc-b996-44583473405f" - ], - "x-ms-correlation-request-id": [ - "26e16241-a558-41bc-b996-44583473405f" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225148Z:26e16241-a558-41bc-b996-44583473405f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:51:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "8fc7481b-80f5-479f-9425-3a2c7573a475" - ], - "x-ms-correlation-request-id": [ - "8fc7481b-80f5-479f-9425-3a2c7573a475" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225204Z:8fc7481b-80f5-479f-9425-3a2c7573a475" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:52:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "69d64191-cade-4e6a-a4d2-f7b6909a6d42" - ], - "x-ms-correlation-request-id": [ - "69d64191-cade-4e6a-a4d2-f7b6909a6d42" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225219Z:69d64191-cade-4e6a-a4d2-f7b6909a6d42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:52:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "caaada17-5d14-4d6e-80a1-74db48d7d9cd" - ], - "x-ms-correlation-request-id": [ - "caaada17-5d14-4d6e-80a1-74db48d7d9cd" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225235Z:caaada17-5d14-4d6e-80a1-74db48d7d9cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:52:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "c2f68c6c-893f-41ef-82d0-8fbae10ac47c" - ], - "x-ms-correlation-request-id": [ - "c2f68c6c-893f-41ef-82d0-8fbae10ac47c" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225250Z:c2f68c6c-893f-41ef-82d0-8fbae10ac47c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:52:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "16613835-3e72-40cc-866f-4ed173b5495a" - ], - "x-ms-correlation-request-id": [ - "16613835-3e72-40cc-866f-4ed173b5495a" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225305Z:16613835-3e72-40cc-866f-4ed173b5495a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:53:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-request-id": [ - "319ac516-6d29-466f-a877-01492e57e5b0" + "55e738c5-c093-40bf-8de4-53926e64699f" ], "x-ms-correlation-request-id": [ - "319ac516-6d29-466f-a877-01492e57e5b0" + "55e738c5-c093-40bf-8de4-53926e64699f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225321Z:319ac516-6d29-466f-a877-01492e57e5b0" + "FRANCESOUTH:20201106T112525Z:55e738c5-c093-40bf-8de4-53926e64699f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4167,115 +3885,7 @@ "nosniff" ], "Date": [ - "Wed, 04 Nov 2020 22:53:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-request-id": [ - "e1dfdf48-3cff-46ee-a215-02fc32b488ab" - ], - "x-ms-correlation-request-id": [ - "e1dfdf48-3cff-46ee-a215-02fc32b488ab" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201104T225336Z:e1dfdf48-3cff-46ee-a215-02fc32b488ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 04 Nov 2020 22:53:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "5fcba61e-7d52-47d0-8ad1-955dba2f11a3" - ], - "x-ms-correlation-request-id": [ - "5fcba61e-7d52-47d0-8ad1-955dba2f11a3" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20201105T091624Z:5fcba61e-7d52-47d0-8ad1-955dba2f11a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 05 Nov 2020 09:16:24 GMT" + "Fri, 06 Nov 2020 11:25:24 GMT" ], "Expires": [ "-1" @@ -4288,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4308,16 +3918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11977" ], "x-ms-request-id": [ - "48cfd318-af2e-4520-9c38-4646052e90a2" + "74ff422f-ad46-41e9-bf24-577e377cf5f4" ], "x-ms-correlation-request-id": [ - "48cfd318-af2e-4520-9c38-4646052e90a2" + "74ff422f-ad46-41e9-bf24-577e377cf5f4" ], "x-ms-routing-request-id": [ - "UKSOUTH:20201105T091625Z:48cfd318-af2e-4520-9c38-4646052e90a2" + "FRANCESOUTH:20201106T112525Z:74ff422f-ad46-41e9-bf24-577e377cf5f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4326,7 +3936,7 @@ "nosniff" ], "Date": [ - "Thu, 05 Nov 2020 09:16:24 GMT" + "Fri, 06 Nov 2020 11:25:24 GMT" ], "Expires": [ "-1" @@ -4340,12 +3950,12 @@ } ], "Names": { - "Test-SwitchVolumePool": [ - "ps4921", - "ps46", - "ps7579", - "ps7064", - "ps8127" + "Test-SetVolumePool": [ + "ps1030", + "ps9978", + "ps8795", + "ps3144", + "ps4433" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json deleted file mode 100644 index f267365412ee..000000000000 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication - Copy.json +++ /dev/null @@ -1,20191 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4849?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef113a13-6462-41dc-9fef-89e59be3980d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ], - "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": [ - "bf140c14-7578-4ef0-9828-e4586bb14210" - ], - "x-ms-correlation-request-id": [ - "bf140c14-7578-4ef0-9828-e4586bb14210" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150933Z:bf140c14-7578-4ef0-9828-e4586bb14210" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:33 GMT" - ], - "Content-Length": [ - "166" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849\",\r\n \"name\": \"ps4849\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps197?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "62382b18-b21d-423a-8693-913aa6bef098" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "36" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "32f9750f-4edb-482e-ae1e-3f93141f24b3" - ], - "x-ms-correlation-request-id": [ - "32f9750f-4edb-482e-ae1e-3f93141f24b3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150935Z:32f9750f-4edb-482e-ae1e-3f93141f24b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:35 GMT" - ], - "Content-Length": [ - "171" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197\",\r\n \"name\": \"ps197\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0e66ffa9-4c0a-44c3-b763-0dd091b0732e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "305ab63c-ba37-4781-a04c-aedab73aaba3" - ], - "x-ms-correlation-request-id": [ - "305ab63c-ba37-4781-a04c-aedab73aaba3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150936Z:305ab63c-ba37-4781-a04c-aedab73aaba3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "223" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4849-vnet' under resource group 'ps4849' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" - ], - "x-ms-request-id": [ - "bc51ae5e-f781-49da-8806-71448dc3832e" - ], - "x-ms-correlation-request-id": [ - "d3e9452c-a3b0-483d-9ad8-37ba1f50eb1c" - ], - "x-ms-arm-service-request-id": [ - "eda35e32-2f43-4833-9b8e-477be941e057" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150948Z:d3e9452c-a3b0-483d-9ad8-37ba1f50eb1c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:47 GMT" - ], - "Content-Length": [ - "642" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bb2ce29-08df-47d7-a7ed-2841179aa18b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" - ], - "x-ms-request-id": [ - "7d3eb1ed-11db-43f1-8900-4b73c26185c6" - ], - "x-ms-correlation-request-id": [ - "66d66487-5e86-48c9-aae0-872d35e180c9" - ], - "x-ms-arm-service-request-id": [ - "b8af4357-0d9b-48d8-b737-c3d813628386" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150948Z:66d66487-5e86-48c9-aae0-872d35e180c9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:47 GMT" - ], - "Content-Length": [ - "642" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "28b5df94-62e2-4e86-8475-63ea9919e423" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"16ef9299-e404-4e18-9cb0-e687399f5ab5\"" - ], - "x-ms-request-id": [ - "c35a0693-ebbf-41de-9088-d5546b7bcfa3" - ], - "x-ms-correlation-request-id": [ - "101d2298-6ac0-4307-b971-a74f105eb1ea" - ], - "x-ms-arm-service-request-id": [ - "96316430-d80e-4a24-b805-73723786b2e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150948Z:101d2298-6ac0-4307-b971-a74f105eb1ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:47 GMT" - ], - "Content-Length": [ - "642" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"16ef9299-e404-4e18-9cb0-e687399f5ab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"1ba04253-b38c-4d43-9594-aa192e88c91d\"" - ], - "x-ms-request-id": [ - "85dddd5b-7de2-43f2-b178-1946cb8beccc" - ], - "x-ms-correlation-request-id": [ - "fa4f033a-15c2-45db-9f59-598215eff263" - ], - "x-ms-arm-service-request-id": [ - "9c9b58c3-8320-4466-a058-2f70f3c53a20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150953Z:fa4f033a-15c2-45db-9f59-598215eff263" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:53 GMT" - ], - "Content-Length": [ - "2151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "622890b7-81cb-4377-9a1c-950ce5675798" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"1ba04253-b38c-4d43-9594-aa192e88c91d\"" - ], - "x-ms-request-id": [ - "15cde7aa-8d23-4973-93aa-642408d50dbb" - ], - "x-ms-correlation-request-id": [ - "809abc25-c234-4949-a8ba-49affc4b0a84" - ], - "x-ms-arm-service-request-id": [ - "2a2402ab-33aa-4924-8fa8-247a09f091b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150953Z:809abc25-c234-4949-a8ba-49affc4b0a84" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:53 GMT" - ], - "Content-Length": [ - "2151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1ba04253-b38c-4d43-9594-aa192e88c91d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f8d8dde5-5100-4bcf-95cf-e54aae7ebf27" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "261" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "422d2c2f-5439-49e5-a60c-c1ef58dd6e8a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/422d2c2f-5439-49e5-a60c-c1ef58dd6e8a?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "5bb55c4e-8f2a-4a76-b489-d3f08bec85c6" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-arm-service-request-id": [ - "a010eafe-8a8d-430d-9f04-7f09dd73884f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150944Z:5bb55c4e-8f2a-4a76-b489-d3f08bec85c6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:43 GMT" - ], - "Content-Length": [ - "641" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"ebcbb676-5743-4c63-8352-fca4585369a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDg0OS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"location\": \"westus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d3d79da-fbed-4917-9ce3-a53106f3406f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1064" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2ec9d62b-514d-4043-bf60-8e21cad21f1c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/2ec9d62b-514d-4043-bf60-8e21cad21f1c?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "60655e75-41fc-4b75-ac7b-732017faae0a" - ], - "x-ms-arm-service-request-id": [ - "a497f555-e499-4c0a-b187-392aac7f7164" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150949Z:60655e75-41fc-4b75-ac7b-732017faae0a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:48 GMT" - ], - "Content-Length": [ - "2149" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4849-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16678e5c-6e44-4877-9270-cffddca25d6a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a32d8e67-efd5-441b-92ba-b9c6ce8cf8af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/422d2c2f-5439-49e5-a60c-c1ef58dd6e8a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzQyMmQyYzJmLTU0MzktNDllNS1hNjBjLWMxZWY1OGRkNmU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6f8346c6-ab86-4a43-86c9-cc8dc8e75233" - ], - "x-ms-correlation-request-id": [ - "1539d929-6fcc-4061-bead-20e64fda348e" - ], - "x-ms-arm-service-request-id": [ - "9437f449-03ab-4e89-bbe4-86eb766e70e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150947Z:1539d929-6fcc-4061-bead-20e64fda348e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:46 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/2ec9d62b-514d-4043-bf60-8e21cad21f1c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzJlYzlkNjJiLTUxNGQtNDA0My1iZjYwLThlMjFjYWQyMWYxYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5951f4be-aa84-4603-be76-f3caa443101c" - ], - "x-ms-correlation-request-id": [ - "3c78f5d2-281f-4a8a-aac4-aa491df52903" - ], - "x-ms-arm-service-request-id": [ - "154cb52e-36cd-4b54-a3c6-d6fcaaa7ff62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150952Z:3c78f5d2-281f-4a8a-aac4-aa491df52903" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:52 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24a6fd77-78da-42fa-89e0-174ffdfea510" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "8aae4405-6d3f-4023-90b7-335f4d2c6397" - ], - "x-ms-correlation-request-id": [ - "8aae4405-6d3f-4023-90b7-335f4d2c6397" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150953Z:8aae4405-6d3f-4023-90b7-335f4d2c6397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:53 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "221" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps197-vnet' under resource group 'ps197' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" - ], - "x-ms-request-id": [ - "8a26011f-3638-489c-b56b-55dea10e8129" - ], - "x-ms-correlation-request-id": [ - "d6cb02cc-ebb5-481e-922c-21cab218887a" - ], - "x-ms-arm-service-request-id": [ - "fdd9cbc3-967e-4e51-9ea3-1d5562f9ede7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151002Z:d6cb02cc-ebb5-481e-922c-21cab218887a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:02 GMT" - ], - "Content-Length": [ - "638" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5faaf35-346d-4a45-90a6-8534942a61ed" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" - ], - "x-ms-request-id": [ - "3d1c0547-fcd9-4d46-b12a-30446652fe49" - ], - "x-ms-correlation-request-id": [ - "989179d4-0eef-442f-83ba-df81e267dbf9" - ], - "x-ms-arm-service-request-id": [ - "27d20d6e-57eb-4505-876d-ce67a49657c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151002Z:989179d4-0eef-442f-83ba-df81e267dbf9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:02 GMT" - ], - "Content-Length": [ - "638" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c226498-12d6-4db4-960f-27d9ebec8a76" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"e8f44622-0b35-46e4-836d-f682f1426060\"" - ], - "x-ms-request-id": [ - "f5fff4b2-f7e3-441d-b305-f3456bc1a16c" - ], - "x-ms-correlation-request-id": [ - "2cd9e794-9b38-4852-8058-0245bd48025a" - ], - "x-ms-arm-service-request-id": [ - "4f6cf1da-5937-4f2b-acd4-f89c6053fa2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151002Z:2cd9e794-9b38-4852-8058-0245bd48025a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:02 GMT" - ], - "Content-Length": [ - "638" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e8f44622-0b35-46e4-836d-f682f1426060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"2864fcfb-1767-47ea-965e-619867b8574d\"" - ], - "x-ms-request-id": [ - "2a84370a-87bd-4685-b192-1dd2906d6a91" - ], - "x-ms-correlation-request-id": [ - "6fd47f34-5ff9-4d5a-9758-f43a504bc7e1" - ], - "x-ms-arm-service-request-id": [ - "d34dee88-13b3-4657-b647-82aba23c9cd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151006Z:6fd47f34-5ff9-4d5a-9758-f43a504bc7e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:06 GMT" - ], - "Content-Length": [ - "2143" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5eaeb31-d3b1-4c24-9864-b1f0095dd8ab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"2864fcfb-1767-47ea-965e-619867b8574d\"" - ], - "x-ms-request-id": [ - "70b018a3-c6ea-4808-a508-1b6bdf877ae0" - ], - "x-ms-correlation-request-id": [ - "0c3ca855-1640-4852-81ba-a04041c51801" - ], - "x-ms-arm-service-request-id": [ - "56ced242-70ed-430a-a894-10834be0d6d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151006Z:0c3ca855-1640-4852-81ba-a04041c51801" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:06 GMT" - ], - "Content-Length": [ - "2143" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2864fcfb-1767-47ea-965e-619867b8574d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6ff9283-3707-4c12-9cd4-09643ac1c1b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "260" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a0afb46b-2b46-4cf5-8c7e-acd950adf2c1" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a0afb46b-2b46-4cf5-8c7e-acd950adf2c1?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "e1333f73-773e-40aa-8d66-2044e52681a2" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-arm-service-request-id": [ - "4a3b9286-4ec8-4de7-a045-944981914e06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T150958Z:e1333f73-773e-40aa-8d66-2044e52681a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:09:58 GMT" - ], - "Content-Length": [ - "637" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"e37f311d-265b-4d1c-a29d-d295a63a5c47\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxOTctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3c3b9f9-d1ad-4b93-820c-60bdcc436ce1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1061" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0ce8681f-a62b-445c-b7be-a2527c88901d" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/0ce8681f-a62b-445c-b7be-a2527c88901d?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "5ac94ed2-9c02-47ab-8b0e-072023e598ec" - ], - "x-ms-arm-service-request-id": [ - "2ee14d06-e34c-4377-8527-989fbb10f805" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151003Z:5ac94ed2-9c02-47ab-8b0e-072023e598ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:03 GMT" - ], - "Content-Length": [ - "2141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps197-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75fcd0a5-b615-46da-8416-02f9ac828cc2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"6db020da-d2c1-46f3-885c-39c07333be4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a0afb46b-2b46-4cf5-8c7e-acd950adf2c1?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhZmI0NmItMmI0Ni00Y2Y1LThjN2UtYWNkOTUwYWRmMmMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "54828734-e453-4ffc-8cfc-1c39c77f6ab6" - ], - "x-ms-correlation-request-id": [ - "164d8fc5-b16e-48b3-8102-c312674456ce" - ], - "x-ms-arm-service-request-id": [ - "a9873f25-f37a-4bd9-b44e-620661d34637" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151002Z:164d8fc5-b16e-48b3-8102-c312674456ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:02 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/0ce8681f-a62b-445c-b7be-a2527c88901d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGNlODY4MWYtYTYyYi00NDVjLWI3YmUtYTI1MjdjODg5MDFkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "214517ed-fd42-4052-8aeb-39d154359d0f" - ], - "x-ms-correlation-request-id": [ - "9226d83c-0e06-4de5-9c16-2d83c19b94fa" - ], - "x-ms-arm-service-request-id": [ - "b4c9d1ef-a47b-454f-ae13-5ed97f25fb7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151006Z:9226d83c-0e06-4de5-9c16-2d83c19b94fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:06 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e30e6e64-5938-49e9-9e7a-00b9f1b835df" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A10%3A13.7338253Z'\"" - ], - "x-ms-request-id": [ - "44c34766-e730-4fea-a54e-e7d551a2745c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "b727a317-e53f-4b27-824f-f232c32769da" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151014Z:b727a317-e53f-4b27-824f-f232c32769da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:13 GMT" - ], - "Content-Length": [ - "313" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\",\r\n \"name\": \"ps5048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A13.7338253Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY1YmU0ZDEtN2ViNy00YmFiLWI0MWEtZWI1NmM2ZWZlNWUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a5a47bb5-dc40-4539-8a42-08864100bd3f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "7e83996d-883f-4b27-9060-ce9cf4a59462" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151045Z:7e83996d-883f-4b27-9060-ce9cf4a59462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:44 GMT" - ], - "Content-Length": [ - "489" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1\",\r\n \"name\": \"0f5be4d1-7eb7-4bab-b41a-eb56c6efe5e1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:10:13.6506125Z\",\r\n \"endTime\": \"2020-10-23T15:10:13.8068698Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A10%3A13.805874Z'\"" - ], - "x-ms-request-id": [ - "569d339d-5ffb-426c-a32a-0f8248e63437" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "e028ffe0-7977-4259-8d3c-9950a28d5eb7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151045Z:e028ffe0-7977-4259-8d3c-9950a28d5eb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:45 GMT" - ], - "Content-Length": [ - "313" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048\",\r\n \"name\": \"ps5048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A13.805874Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3533c058-30e4-4767-a0a9-a76976033872" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A10%3A49.8406599Z'\"" - ], - "x-ms-request-id": [ - "cc773f36-1821-488f-be0c-c50290a5202d" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "e8eb726b-d9d9-4a84-a1ea-71291a74163b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151051Z:e8eb726b-d9d9-4a84-a1ea-71291a74163b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:10:51 GMT" - ], - "Content-Length": [ - "311" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A49.8406599Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy83ZmJlYTU5Yy03NzM2LTRkZGQtYjYyYi03ZjMzODUxMWU1MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "81955b36-5ae9-499d-9d45-c3be5e3fff64" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "42e63d21-de2a-4485-93c9-748f7d39d770" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151121Z:42e63d21-de2a-4485-93c9-748f7d39d770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:11:21 GMT" - ], - "Content-Length": [ - "487" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7fbea59c-7736-4ddd-b62b-7f338511e501\",\r\n \"name\": \"7fbea59c-7736-4ddd-b62b-7f338511e501\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:10:49.7604862Z\",\r\n \"endTime\": \"2020-10-23T15:10:49.9010921Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A10%3A49.9047062Z'\"" - ], - "x-ms-request-id": [ - "cfffc81f-8c29-4180-a4e5-7ef1900e9ace" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "d59bcf71-5e58-48ba-bdd5-fdd71907c32d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151121Z:d59bcf71-5e58-48ba-bdd5-fdd71907c32d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:11:21 GMT" - ], - "Content-Length": [ - "312" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874\",\r\n \"name\": \"ps8874\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A10%3A49.9047062Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51449b91-fa30-48a1-98ae-5ee97481c790" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "113" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A11%3A26.3052297Z'\"" - ], - "x-ms-request-id": [ - "3409d9b6-5242-40aa-9e9c-cd0059365476" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "82269744-961a-45c9-b475-35382e72731d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151127Z:82269744-961a-45c9-b475-35382e72731d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:11:27 GMT" - ], - "Content-Length": [ - "458" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\",\r\n \"name\": \"ps5048/ps2690\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A11%3A26.3052297Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTE2NTAzYTktMTUwNy00ODRiLWJiNGUtNTk3NTMyNTJjODExP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f98db919-5aea-422d-8018-196e063a7e40" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "a1834aee-c438-4125-bf7a-b33b466fa51c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151157Z:a1834aee-c438-4125-bf7a-b33b466fa51c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:11:57 GMT" - ], - "Content-Length": [ - "510" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a16503a9-1507-484b-bb4e-59753252c811\",\r\n \"name\": \"a16503a9-1507-484b-bb4e-59753252c811\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:11:26.2239993Z\",\r\n \"endTime\": \"2020-10-23T15:11:26.4896765Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A11%3A26.4933578Z'\"" - ], - "x-ms-request-id": [ - "6ca94d5f-636a-406d-8a09-c0a24bc9d36d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "45f2a466-9c2f-4f23-9834-94382510bb86" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151158Z:45f2a466-9c2f-4f23-9834-94382510bb86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:11:57 GMT" - ], - "Content-Length": [ - "528" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690\",\r\n \"name\": \"ps5048/ps2690\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A11%3A26.4933578Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"c1c6da2a-74aa-78d9-f0d3-ab4ee83f3b0c\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "717d548f-ab7a-4da2-8ee7-4e6bf2e87735" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "112" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A12%3A01.382752Z'\"" - ], - "x-ms-request-id": [ - "47160157-2268-415a-9f2e-b7e51ef4a34a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "73c26806-2a00-4a22-8841-9c550bf8ab3c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151202Z:73c26806-2a00-4a22-8841-9c550bf8ab3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:12:02 GMT" - ], - "Content-Length": [ - "455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\",\r\n \"name\": \"ps8874/ps7745\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A01.382752Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjhmMGQ2NS1iOGUyLTRjNTAtYmExYS0wN2M0NWQ1YjRjYjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e4417910-61eb-4aa2-8291-45bf3110e5ee" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "0b020992-833a-4423-89d8-904983648ac1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151232Z:0b020992-833a-4423-89d8-904983648ac1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:12:32 GMT" - ], - "Content-Length": [ - "507" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0\",\r\n \"name\": \"6f8f0d65-b8e2-4c50-ba1a-07c45d5b4cb0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:12:01.3150674Z\",\r\n \"endTime\": \"2020-10-23T15:12:01.627533Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A12%3A01.6309291Z'\"" - ], - "x-ms-request-id": [ - "a5bebaf5-e643-4a33-b245-926345307b93" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "93c172df-06f8-4c32-ae1a-2d1bbdf18567" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151233Z:93c172df-06f8-4c32-ae1a-2d1bbdf18567" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:12:32 GMT" - ], - "Content-Length": [ - "526" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745\",\r\n \"name\": \"ps8874/ps7745\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A01.6309291Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "918d4f39-5964-4887-99ea-24ea546654ce" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "391" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A12%3A36.4209555Z'\"" - ], - "x-ms-request-id": [ - "c1fe645d-636f-40bc-87b5-aa090b06dcbc" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "78d796bb-1de5-47ae-944f-f5d2d0fd8dd1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151238Z:78d796bb-1de5-47ae-944f-f5d2d0fd8dd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:12:37 GMT" - ], - "Content-Length": [ - "681" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A12%3A36.4209555Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1d3e86f8-5c9d-4fc9-bbb4-f0364b382889" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "a398dbd8-df94-4750-b64b-74d1eaeee4bb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151308Z:a398dbd8-df94-4750-b64b-74d1eaeee4bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:13:07 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4db829eb-139e-4177-8a4f-4f283c2b56f3" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "665788e1-6105-4b86-8563-208c8e7460de" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151338Z:665788e1-6105-4b86-8563-208c8e7460de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:13:38 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0b84e00a-7698-411f-81d1-92b9a2416ea7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "a3aadeba-36cc-4e29-bc7e-792ae6773e9a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151408Z:a3aadeba-36cc-4e29-bc7e-792ae6773e9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:14:08 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd8f0b72-f267-4cb5-a1e8-2bfb71afe341" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "91299edc-61a1-411f-9c98-397515dbd755" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151438Z:91299edc-61a1-411f-9c98-397515dbd755" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:14:38 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f135ea3c-bf63-41ca-b1ee-735a28d024b4" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "b318ccea-fd02-4ad8-89b2-b19ada5a73cb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151509Z:b318ccea-fd02-4ad8-89b2-b19ada5a73cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:15:08 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cdd1adae-082f-4755-aee9-1a9b2798611a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "e0f4da9b-2884-4a32-8dfa-cd6bb3562959" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151539Z:e0f4da9b-2884-4a32-8dfa-cd6bb3562959" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:15:39 GMT" - ], - "Content-Length": [ - "514" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTg4ZWQyMzEtMTM0My00OTRkLTg5YzItZGJlOGVlNWE1NGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4c01c4d1-b180-476c-af52-e7d78aad3d4f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "d8b26354-6716-46b9-ae52-6d505841bb4d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151609Z:d8b26354-6716-46b9-ae52-6d505841bb4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:16:09 GMT" - ], - "Content-Length": [ - "525" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"name\": \"a88ed231-1343-494d-89c2-dbe8ee5a54a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:12:36.3541297Z\",\r\n \"endTime\": \"2020-10-23T15:16:03.6983591Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" - ], - "x-ms-request-id": [ - "c4adbceb-8586-4122-ae03-f7d19b001a7b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "541e310f-b431-4270-98fb-b5996f819640" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151610Z:541e310f-b431-4270-98fb-b5996f819640" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:16:10 GMT" - ], - "Content-Length": [ - "1500" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dc00732-fb9c-4722-a534-9d3b3097c29b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" - ], - "x-ms-request-id": [ - "8904d612-6484-4f29-b8af-8b6a8828ebba" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "ef666785-98e6-4fba-9730-e5bfea814610" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151611Z:ef666785-98e6-4fba-9730-e5bfea814610" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:16:11 GMT" - ], - "Content-Length": [ - "1500" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e54ee0c-b678-41dd-a7f3-c558532e3eb6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A16%3A03.691932Z'\"" - ], - "x-ms-request-id": [ - "4d368635-814d-4e76-93a1-effea8f78e3f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "3c72a47f-0dbb-4a72-a295-0770ac611a80" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152151Z:3c72a47f-0dbb-4a72-a295-0770ac611a80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:50 GMT" - ], - "Content-Length": [ - "1500" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A03.691932Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bb7a0ab-66ac-4bd2-a974-166227d4fa19" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\"" - ], - "x-ms-request-id": [ - "747ce227-439b-4e94-a55d-41b3e67931e7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "1af26d45-9f4d-4318-9a23-a0daedc78790" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152324Z:1af26d45-9f4d-4318-9a23-a0daedc78790" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:24 GMT" - ], - "Content-Length": [ - "1772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "667bf10f-ec17-4ae1-885c-164facdd27c0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\"" - ], - "x-ms-request-id": [ - "9de8034f-a418-4ae5-95eb-7ecb3c2d32b9" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" - ], - "x-ms-correlation-request-id": [ - "d025a13e-3511-4405-be34-59c7d69206d7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152818Z:d025a13e-3511-4405-be34-59c7d69206d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:17 GMT" - ], - "Content-Length": [ - "1772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A06.9180389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endpointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70490d55-2f1f-4f8c-8861-662ae78824b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "766" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A16%3A14.7506854Z'\"" - ], - "x-ms-request-id": [ - "d6b3465c-e528-4c3e-985a-6e4cdb9fb15a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "d880eb12-4e49-4985-a52c-32c026f93736" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151615Z:d880eb12-4e49-4985-a52c-32c026f93736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:16:15 GMT" - ], - "Content-Length": [ - "985" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A16%3A14.7506854Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "791997c5-cba9-4d81-9a22-8cd83a4380ed" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "5f561f6b-fcd8-45fe-b69a-692ffdf319af" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151646Z:5f561f6b-fcd8-45fe-b69a-692ffdf319af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:16:45 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4b16509c-fa40-402f-aed2-e33422ec119e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "01a80b71-8552-4fdb-abbf-746d1cd5ed02" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151716Z:01a80b71-8552-4fdb-abbf-746d1cd5ed02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:17:15 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "60119407-8bd2-4836-aa33-e8caad594837" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "d87cfc0c-0d91-44c8-bf44-e4db379febf0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151746Z:d87cfc0c-0d91-44c8-bf44-e4db379febf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:17:45 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ee5b1d5-bd6a-44b5-8530-9ec997a953cc" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "0a16220d-3a94-44da-97c4-0fa8ecc99e73" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151816Z:0a16220d-3a94-44da-97c4-0fa8ecc99e73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:18:16 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4bca5b29-ea78-4273-a2b3-29629880a511" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "9106e090-47cb-428c-b597-4b369f746aac" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151846Z:9106e090-47cb-428c-b597-4b369f746aac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:18:46 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "967a62ac-71aa-42d2-af42-1abaf030cd07" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "780ccf98-7e83-44e6-82dc-91651e82bbfa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151917Z:780ccf98-7e83-44e6-82dc-91651e82bbfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:19:16 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ffa64d9a-4b73-4c73-8cb4-7aa462840228" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "7e3c913e-9a7a-48be-bd8a-fd1d5d7d0252" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T151947Z:7e3c913e-9a7a-48be-bd8a-fd1d5d7d0252" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:19:46 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5c76f55f-2e0b-445d-ad9a-6de818740a09" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "364cc223-662d-4673-9bce-fd5dcb0a4b5b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152017Z:364cc223-662d-4673-9bce-fd5dcb0a4b5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:20:17 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "abacbb43-c328-4a29-befc-d19de28788e2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "e2b56266-8e25-45b9-bf9a-734b780e3443" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152047Z:e2b56266-8e25-45b9-bf9a-734b780e3443" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:20:47 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fd04c57f-f6ab-4062-bde9-d5922d6f8252" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "c8785772-def1-4c4d-8d84-de1f2cec4d28" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152117Z:c8785772-def1-4c4d-8d84-de1f2cec4d28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:17 GMT" - ], - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTcwNDg1Mi0wYjU4LTQ1NzItODFlNi04ODIzYWY2ZGM4Yjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c0c822cb-b732-4455-bbcf-44191450c351" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "a944cfd8-8ad2-4174-89e5-b0770b6b39ac" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152148Z:a944cfd8-8ad2-4174-89e5-b0770b6b39ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:47 GMT" - ], - "Content-Length": [ - "523" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"name\": \"ae704852-0b58-4572-81e6-8823af6dc8b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:16:14.6837539Z\",\r\n \"endTime\": \"2020-10-23T15:21:47.7354065Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" - ], - "x-ms-request-id": [ - "cf71a583-07bf-437c-b9d8-3821d287c4f8" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "293461b5-924f-46e9-8513-aaa44163ee5b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152149Z:293461b5-924f-46e9-8513-aaa44163ee5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:49 GMT" - ], - "Content-Length": [ - "1772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e3a3ea7d-3666-4bea-9128-0c0dd35498dd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" - ], - "x-ms-request-id": [ - "610afae2-4d95-4d5d-a76f-4265d4e377fa" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "fbfbcb70-c40f-4d38-85d2-4cfcdd66f3b1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152150Z:fbfbcb70-c40f-4d38-85d2-4cfcdd66f3b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:49 GMT" - ], - "Content-Length": [ - "1772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a4cf380-7675-4ce0-9a31-3039b590859a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\"" - ], - "x-ms-request-id": [ - "36faa4d6-404c-4b8c-85a3-7da0f7f7cd32" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "02317da8-de79-4fe9-b17a-5192fabf67ca" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152151Z:02317da8-de79-4fe9-b17a-5192fabf67ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:21:50 GMT" - ], - "Content-Length": [ - "1772" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A21%3A47.7439223Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8b0d638-f7d8-43ce-925b-5f02548debd5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A23%3A04.1985086Z'\"" - ], - "x-ms-request-id": [ - "908fc815-68bf-473f-93ef-68ab3c47c666" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "8de2ecc9-5206-40dd-8192-c5e90df02232" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152325Z:8de2ecc9-5206-40dd-8192-c5e90df02232" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:25 GMT" - ], - "Content-Length": [ - "1858" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A23%3A04.1985086Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c08e74b-fcf0-4d8e-86f1-5c8aeb376333" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-23T15%3A27%3A22.6990784Z'\"" - ], - "x-ms-request-id": [ - "1c8335fc-f23e-4798-822b-f69a69a78ee2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" - ], - "x-ms-correlation-request-id": [ - "3380e998-1832-423e-8024-fd20ddec7f6e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152818Z:3380e998-1832-423e-8024-fd20ddec7f6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:18 GMT" - ], - "Content-Length": [ - "1844" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A27%3A22.6990784Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960/authorizeReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUwNDgvY2FwYWNpdHlQb29scy9wczI2OTAvdm9sdW1lcy9wczE5NjAvYXV0aG9yaXplUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a734c4eb-4a05-44dd-862b-f737e8a04771" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "193" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "8d9018cb-749e-48a7-a34c-489a210ba464" - ], - "x-ms-correlation-request-id": [ - "8d9018cb-749e-48a7-a34c-489a210ba464" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152223Z:8d9018cb-749e-48a7-a34c-489a210ba464" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:22:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d6fdaa4-a17d-443a-8a4e-4b4cd688c5ee" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "e1171a30-5777-4584-ba43-c4136a8c2cff" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152254Z:e1171a30-5777-4584-ba43-c4136a8c2cff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:22:53 GMT" - ], - "Content-Length": [ - "526" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"name\": \"a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"status\": \"AuthorizeReplication\",\r\n \"startTime\": \"2020-10-23T15:22:23.6052594Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc3b13a7-0330-45ce-8801-7a8606747e8c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "2ec9a30d-21d1-4544-81f1-bea922b9d636" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152324Z:2ec9a30d-21d1-4544-81f1-bea922b9d636" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:23 GMT" - ], - "Content-Length": [ - "525" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"name\": \"a94cb32e-66c3-4f49-82f2-0cadce291722\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:22:23.6052594Z\",\r\n \"endTime\": \"2020-10-23T15:23:06.9156874Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/a94cb32e-66c3-4f49-82f2-0cadce291722?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTk0Y2IzMmUtNjZjMy00ZjQ5LTgyZjItMGNhZGNlMjkxNzIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0b6b98bf-385f-4dd6-8772-348cb391fc4b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "0a780d53-8406-45c9-b304-525fc7166d60" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152324Z:0a780d53-8406-45c9-b304-525fc7166d60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:23 GMT" - ], - "Content-Length": [ - "2257" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"name\": \"ps5048/ps2690/ps1960\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A22%3A23.684606Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"replicationStatus\": \"\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"name\": \"ps1960\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1960\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_032da47c\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.Network/virtualNetworks/ps4849-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"poolId\": \"c1c6da2a-74aa-78d9-f0d3-ab4ee83f3b0c\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"fileSystemId\": \"a9b8843a-f7e6-d9e8-78dc-9054350a7b90\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5b3be5a-6442-4b82-83b8-ccd4e5d7925c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "262bcc56-8832-427e-9fb5-ab5aa280a450" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "2b15f8a4-9b6f-40e0-a5d9-31b2f3cccb71" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152327Z:2b15f8a4-9b6f-40e0-a5d9-31b2f3cccb71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:26 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05479cd6-96e6-4cd8-8a42-a59cb7fba52e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b16520ad-5723-4e3b-a2d3-db56cc5a16d4" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "1d974a70-f08d-4d2a-b77a-2dfba5e05a44" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152328Z:1d974a70-f08d-4d2a-b77a-2dfba5e05a44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:27 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "243327b7-bb60-4724-b13b-1c166fb61f7a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "529b9232-c894-4e1c-9d37-a8669227fd1c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "ceb52079-4e8f-4ef9-b539-4f888e1d8b7c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152329Z:ceb52079-4e8f-4ef9-b539-4f888e1d8b7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:29 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "974d34e9-6a2c-450a-b68c-3ac8a1b983ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dce6e57d-fc3d-4db7-9c43-4dc468afc556" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "ad726d33-6d38-4bdc-b387-29b74605a38e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152331Z:ad726d33-6d38-4bdc-b387-29b74605a38e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:30 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5431869-ac02-4ad5-9ff1-988e774aeee5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c073a2d7-f7bc-4b76-ab27-8834d50fb633" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "a937ed32-9ffe-433f-8e16-22dbc1a28651" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152332Z:a937ed32-9ffe-433f-8e16-22dbc1a28651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:31 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d67c850-bdaf-4e95-98da-10bb8deb528f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "72643176-498b-46b3-8f8c-c9e06351f66e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "a634f80c-8e61-4769-ae29-ceff23cebdaa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152333Z:a634f80c-8e61-4769-ae29-ceff23cebdaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:33 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc6b8639-262d-444b-8f16-24a5bedae281" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4d8b1b32-f2af-48b2-a0aa-beb23aae5ae9" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "d56d80ae-9318-46e1-b6a3-491355bcf404" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152341Z:d56d80ae-9318-46e1-b6a3-491355bcf404" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:40 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7721caa3-6b86-42f1-9981-bf97e4541676" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "17644ef3-4986-4c42-95fb-bfad3931fa01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "9301b03e-65cf-49b7-99da-c649028db2e4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152342Z:9301b03e-65cf-49b7-99da-c649028db2e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:41 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5b2c6a7b-b4bd-42db-9b89-03dfb0365133" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fe6da86a-c34f-458b-be60-58c25dbec992" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "71167b24-6834-46ad-9052-a9e1cfc9fa26" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152344Z:71167b24-6834-46ad-9052-a9e1cfc9fa26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:43 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc49f8f1-5a08-4852-aaa5-cb906a00c3fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ec2f7f53-374a-469a-8115-e013a5765f46" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "3fc9a93f-143e-4da0-a13b-673a9bc71565" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152345Z:3fc9a93f-143e-4da0-a13b-673a9bc71565" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:44 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "72063616-e4b5-4922-8da0-4f4ecbab7e99" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "301dd114-817e-4d16-9231-60631983519c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "09a5f71a-18b2-4ffb-b608-6e583402e915" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152346Z:09a5f71a-18b2-4ffb-b608-6e583402e915" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:45 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a00bf8ac-15aa-4345-b2e2-96d4e952bb77" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96797c19-dc01-4391-9750-4b3501e4ff87" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "76175a48-8a76-4782-af99-f84a9d0a8995" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152347Z:76175a48-8a76-4782-af99-f84a9d0a8995" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:47 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c0eaf15-b4ec-41b2-8047-c918aa83dbc1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5cfda641-31c4-4cc1-8021-0bead961ed6b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "bd5245a3-4fdb-40a3-ad9e-e172d5a4bbe9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152349Z:bd5245a3-4fdb-40a3-ad9e-e172d5a4bbe9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:48 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "890d2b41-9956-4057-b427-b41f4aa2a5ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16029811-1e88-48b9-b373-6cbfe5500f98" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "286d13bb-9d83-4baf-8c4d-30087deccbff" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152350Z:286d13bb-9d83-4baf-8c4d-30087deccbff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:49 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ededb3d5-4680-487f-86f7-654f41496946" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "34659f05-4ead-4c18-ba58-e6ab3675c31c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "e4d98ae3-3ffc-4e7d-8d13-1af4db3b333d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152351Z:e4d98ae3-3ffc-4e7d-8d13-1af4db3b333d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:51 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3026b4d3-65cf-40d7-b80c-5a3bf62fcea2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9c24c9da-8eda-435f-8a86-56bcda44c505" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "48f0efad-3cc2-4f49-b98e-cd4ce7265fcd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152353Z:48f0efad-3cc2-4f49-b98e-cd4ce7265fcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:52 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "30f6e4ba-1c81-4474-a390-be705b127d29" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fc417a2d-8696-46cc-899e-11827814fcfb" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-correlation-request-id": [ - "7a699974-9009-4a3a-be5a-ffdad703d159" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152354Z:7a699974-9009-4a3a-be5a-ffdad703d159" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:53 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1ee0ec8a-8d7e-464e-bf9d-b7770ecc8701" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f9ba012-9a85-4e0c-affe-cacacee9673d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-correlation-request-id": [ - "e51cf3b9-fd26-4ee5-88a3-98a3b36c6135" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152356Z:e51cf3b9-fd26-4ee5-88a3-98a3b36c6135" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:55 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "80035716-1317-4a3b-8152-dca016af9799" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ad95b9f-0f4f-4627-bcb8-d50f3a9016c6" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-correlation-request-id": [ - "5f6f4650-86f9-49f4-8ebd-6ded9c70cdfe" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152357Z:5f6f4650-86f9-49f4-8ebd-6ded9c70cdfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:57 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d2788044-4e4f-4149-91db-8d18a1cd6812" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cf39fcfd-aa3a-4234-a49f-d51463e8c681" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-correlation-request-id": [ - "91381468-7831-41db-bfea-41de206f6459" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152400Z:91381468-7831-41db-bfea-41de206f6459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:23:59 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c50cbec-7847-493c-84bb-b67b26b6b79c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "803cc7b5-94c5-4fe0-a64f-43fcef6ceb7c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-correlation-request-id": [ - "07d87b28-0e5f-4f0f-a1d0-3893b4e47525" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152401Z:07d87b28-0e5f-4f0f-a1d0-3893b4e47525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:00 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8492cda2-61fb-4441-9136-b9a8cba51db7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5551d133-1473-4c38-b47f-f15dceede19f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-correlation-request-id": [ - "5e215a6b-9ab5-495e-8fd1-6ce7b93fe48e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152403Z:5e215a6b-9ab5-495e-8fd1-6ce7b93fe48e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:02 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5f6c6b90-7090-43f3-bc35-a5e66a81e5ca" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94d5d544-4bfa-4c63-9776-eda6d6dbe36a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "5a6407c3-639e-4e84-86c2-8952cf8bc68a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152405Z:5a6407c3-639e-4e84-86c2-8952cf8bc68a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:04 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33fbfe39-1d4f-4570-991b-fc7d183f9943" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e9da2776-c8d3-4a12-9d42-2e00d765501d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "a7b646fa-4514-48b9-b906-28d756842afe" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152406Z:a7b646fa-4514-48b9-b906-28d756842afe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:05 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d28ad4ce-cbfd-4a80-8aac-d5a614a5fca7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a2f578ba-c06e-498e-bdaa-5ce61b3b047b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "555276f0-af12-418f-af19-dc2715905cb4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152407Z:555276f0-af12-418f-af19-dc2715905cb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:06 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab520cde-07e7-4cac-aabc-bcd47cda5020" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cee038a8-92ca-4534-824b-b82c5427742d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "255a6531-9f6c-40bb-90a0-0f3c0be8eee2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152409Z:255a6531-9f6c-40bb-90a0-0f3c0be8eee2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:08 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2253810c-37d8-493c-b9c9-867f280efecc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aacb3386-c634-4e75-a819-bd52c6062308" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "65c01f69-1799-4f0b-96d6-59ad5fa1adb5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152410Z:65c01f69-1799-4f0b-96d6-59ad5fa1adb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:09 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b182f69e-8697-495c-b414-d861e9521a4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8dd07a65-11bc-49fd-9cb3-5b5f84b13495" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "800b94b9-9420-47bc-a0fd-a54725154f14" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152411Z:800b94b9-9420-47bc-a0fd-a54725154f14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:10 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a91bfe61-eb81-44ca-a361-0271cc48c21c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d3b28e54-53a8-41d5-b6d2-0de9334f7690" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "751d0b17-1c4a-4f5f-bd9e-9ca6b81be856" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152413Z:751d0b17-1c4a-4f5f-bd9e-9ca6b81be856" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:12 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3109c0d-4e8e-4b5a-ba9d-2a75b729d0bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5773e0a3-d199-404b-b320-3cc3e0f4a845" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "2e69cfba-4b46-46f8-b569-08952e00b715" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152414Z:2e69cfba-4b46-46f8-b569-08952e00b715" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:13 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c7623a3-6b87-44b6-8439-0a26f1ef4752" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0170b404-ac8b-4d37-90a2-61f83842a228" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "2d9db842-14ad-42f6-bf84-4d54c6c48313" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152415Z:2d9db842-14ad-42f6-bf84-4d54c6c48313" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:14 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdacabd0-4976-44a7-9c33-dbb28c06f296" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6515d256-853f-405b-adf8-4f6dc88872d0" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "aeeea9ae-4e2f-4259-a85f-9a55f35c0208" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152417Z:aeeea9ae-4e2f-4259-a85f-9a55f35c0208" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:16 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "548f935f-5255-496d-9fd8-0b4ae7c1ad51" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8dd49eeb-4f58-4353-9b46-a26aec801731" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "44392ee3-41e8-4c7e-9047-63a4b81a79f6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152418Z:44392ee3-41e8-4c7e-9047-63a4b81a79f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:17 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e929243-cfaf-4037-9287-e19cd8ddc60b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "41d8954b-b1e1-4d21-b0d7-d80318b68740" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "ade9e7f4-199a-4825-910f-13451d704d1a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152420Z:ade9e7f4-199a-4825-910f-13451d704d1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:19 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad74162a-a86f-4843-ade7-9fa9abde28ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "af9ecbf9-4878-4106-9a27-13a276db9758" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "a42e4402-7771-4928-ad10-307b9307899f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152422Z:a42e4402-7771-4928-ad10-307b9307899f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:21 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f4b2fdea-bc7f-4517-98d7-aa66d9db74f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c8ec1aae-c0ca-425c-abee-7a178f224c9f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "4f67add4-ace1-437a-a8b3-7abd56c513b6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152423Z:4f67add4-ace1-437a-a8b3-7abd56c513b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:22 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34de54ff-b7a4-4544-8a87-d267287f3d6d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "04e1ff90-06fe-467c-b64b-068e82f13a1e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "dc58e852-3597-41ff-9116-aee1960a7576" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152424Z:dc58e852-3597-41ff-9116-aee1960a7576" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:23 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2506382-657b-4326-b0fa-42c66d35f99d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c78d6c7-8479-4bf5-a580-06405a3ec1e3" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "2c1686b7-af10-49e4-8d7d-7733bfaf2863" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152427Z:2c1686b7-af10-49e4-8d7d-7733bfaf2863" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:26 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "02ab289b-3c5e-4ce5-8052-24c1d302db10" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c7aaf5ea-cc5c-446c-974b-4b43993abf1e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "27fab3dc-bbb0-42df-a904-2c39a75a6037" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152428Z:27fab3dc-bbb0-42df-a904-2c39a75a6037" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:27 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c7dbced-38ee-48f4-9dd5-808b43e86ac9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e01da180-8332-4c7c-a994-91b5ebf30868" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "3edc91b6-92b8-4684-8411-0a02e063f381" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152432Z:3edc91b6-92b8-4684-8411-0a02e063f381" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:32 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e1c35468-c7e1-4f3f-bc31-05e97c992724" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "301c88d1-8845-4b87-b1a5-7331dfc2d3e1" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "fa4e6b3c-b372-4f32-b048-2dfa6c882016" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152433Z:fa4e6b3c-b372-4f32-b048-2dfa6c882016" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:33 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c176fa0-8d8c-4db9-960b-74a6dbe3b450" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "467aa909-333a-4175-97cf-32f84f2fac9e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "445a794b-9741-466a-8358-3d443c97e935" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152435Z:445a794b-9741-466a-8358-3d443c97e935" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:35 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44cf02b1-2b93-4203-bb93-1b856d8d5a6d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d14e8709-cb10-41e8-8c9b-2fc0619d4c20" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-correlation-request-id": [ - "adf5b057-9f99-4e29-8695-0013594796e7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152437Z:adf5b057-9f99-4e29-8695-0013594796e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:37 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eceb5145-15d5-4f25-a52b-5c9968f92a78" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d38f7499-3938-47e2-b085-b9ccfad7e452" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "5c6c82f0-5674-493d-aef7-f22f2f68c45e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152438Z:5c6c82f0-5674-493d-aef7-f22f2f68c45e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:38 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08f35b27-4f77-47fd-b6b3-07d1e2940bd3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2b5adc0f-76bc-4ff4-bbf6-b6f3067fef56" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "2fe55667-450d-4c06-954b-4ba98a1d5edd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152440Z:2fe55667-450d-4c06-954b-4ba98a1d5edd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:40 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cfb2c5c5-baca-40b7-a8c4-2c8ebe68dc0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e345d01-2885-4a36-812d-7fdf2fb3e8b4" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "efcc7858-8074-40c1-ac8d-770b23ad791e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152441Z:efcc7858-8074-40c1-ac8d-770b23ad791e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:41 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce5083a7-899d-4c47-9f41-b4579843c036" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "740e828a-5864-4930-b563-4369534de116" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "8489cac0-a3d8-4d13-86bb-4252c33c9b41" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152445Z:8489cac0-a3d8-4d13-86bb-4252c33c9b41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:44 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eaebfdd9-ba83-4203-af6b-068ba2a9d887" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ca387b4b-0fdb-406c-aa14-677760a48470" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-correlation-request-id": [ - "2a76d396-d200-426b-bf0e-07ee4e4f6221" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152446Z:2a76d396-d200-426b-bf0e-07ee4e4f6221" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:46 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ab332c9-4cd6-4328-bf6f-d02749556977" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eea1f250-b6ae-4796-b0c9-c14bddfc58b3" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "019fd3e1-fa63-4edb-8b48-3e57d8506ba9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152447Z:019fd3e1-fa63-4edb-8b48-3e57d8506ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:47 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9347983-e498-4086-a042-06d74c80d6b3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2bc35358-b5b6-4d8e-80be-fa951ffd3f43" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-correlation-request-id": [ - "c0c4eb9a-4ef6-4151-b19e-0223663e2d5b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152449Z:c0c4eb9a-4ef6-4151-b19e-0223663e2d5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:48 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a291e2c8-0b54-4dd1-bc89-34fac833e971" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cda683fb-9f52-48f8-9973-e96e5a10ec97" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-correlation-request-id": [ - "a436fb43-caa3-4813-83b7-a1683fa541d4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152450Z:a436fb43-caa3-4813-83b7-a1683fa541d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:50 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e214d831-ffee-44a5-a787-8a6d1c4dfdfa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c9159ee3-8d63-4902-bbe4-d084006eebbc" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-correlation-request-id": [ - "b7bc6135-df7b-4377-a727-d9365bdeaca9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152452Z:b7bc6135-df7b-4377-a727-d9365bdeaca9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:52 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "914c4573-eeee-469d-bd73-42c54b59d2ce" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c124d133-fa25-40a8-b5e1-1412ad2050ac" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-correlation-request-id": [ - "812dbcf3-8ac0-43c3-862f-87020a94c58f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152453Z:812dbcf3-8ac0-43c3-862f-87020a94c58f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:53 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55cca226-9197-4c51-968d-2132cdcedeb2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "334417c3-dd4e-4f1e-a4cc-5c6bba7fa4b1" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-correlation-request-id": [ - "0f176dd1-2672-4afb-8b76-92fa6ec69d76" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152456Z:0f176dd1-2672-4afb-8b76-92fa6ec69d76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:56 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2ab4714-e439-47a5-a40f-5e78a5859065" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7c147160-7a50-41b1-8102-197000ce0bca" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-correlation-request-id": [ - "c681fa88-1115-4676-accf-7eb871a37ebc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152458Z:c681fa88-1115-4676-accf-7eb871a37ebc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:58 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ace460b4-e6e1-493b-9153-34444a23054b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c47442f-cab3-4155-a184-82ef2f414ca2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-correlation-request-id": [ - "dfe225d4-cafe-4de8-a5b3-8e5794ed8e2b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152459Z:dfe225d4-cafe-4de8-a5b3-8e5794ed8e2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:24:59 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4135e62-aeb1-462b-8798-a56f21efaa9f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bd7011a7-1321-4aff-bc4d-74f27796414e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "e48a4248-26df-43a9-bc30-dd25f24c7f94" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152501Z:e48a4248-26df-43a9-bc30-dd25f24c7f94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:01 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40c8bae3-096a-4ab7-a9c0-fe45b16d55cb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1eaa4e9-51dc-4d7b-8c8f-5152f0fb134a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-correlation-request-id": [ - "85faf9e6-537e-4368-bd50-e05ba61733b5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152504Z:85faf9e6-537e-4368-bd50-e05ba61733b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:03 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "89640961-c4d5-4c79-8a45-084fb9658e65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "18bd3b58-0f1b-41ea-a579-be306a0ff918" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-correlation-request-id": [ - "a66b3fa2-28e7-43d6-9cf4-b66d6d34fb50" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152505Z:a66b3fa2-28e7-43d6-9cf4-b66d6d34fb50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:05 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ee8fa74-fdb5-4033-84a5-04270074d926" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6ef93b18-5f0f-43fa-aa95-791e6e18d33a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-correlation-request-id": [ - "ef26ffd8-4576-4d08-9889-5c27642bfe6f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152507Z:ef26ffd8-4576-4d08-9889-5c27642bfe6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:06 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57bc28ce-695a-4a88-853a-f693637b848a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3198615e-dddf-4c2d-9eca-a2e5a72e5cec" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-correlation-request-id": [ - "18b01743-4436-4b8d-bc08-559849530a3b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152508Z:18b01743-4436-4b8d-bc08-559849530a3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:08 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "296ee8f5-16ac-43e1-9568-05099b65415e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c3f8ed62-60de-4df3-a698-563dfc472752" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-correlation-request-id": [ - "28510735-8366-45de-9926-76d7c710e932" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152509Z:28510735-8366-45de-9926-76d7c710e932" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:09 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ea68cfa7-b63e-4b6e-a003-69b362758743" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "60c21bc5-b2f9-4150-b7d2-bdd6c952eb42" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-correlation-request-id": [ - "2cbeeb62-b9c8-4299-8930-4074ff9f2687" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152511Z:2cbeeb62-b9c8-4299-8930-4074ff9f2687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:10 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98b4c1d8-f4b9-4b4e-a261-4f0ad710050b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6386bbad-33d7-4a24-aabe-43b2608ee4c5" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-correlation-request-id": [ - "06cd3242-3810-43db-a98c-d09c1bc3ceb0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152512Z:06cd3242-3810-43db-a98c-d09c1bc3ceb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:12 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4fa805f2-8e8b-4dff-97fb-459cc1f6d266" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "026a526e-aa04-416f-be8c-fc1af8ebf472" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-correlation-request-id": [ - "9b992319-f730-4b5b-ba3f-9301ede05bd4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152514Z:9b992319-f730-4b5b-ba3f-9301ede05bd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:13 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2575940c-dc1a-4fab-89c1-0a7304e80a8b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "215023ba-24ed-4335-9c1b-33fd611c1820" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-correlation-request-id": [ - "6d8d9455-a45e-4ecb-9e1a-56496ea5b76a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152515Z:6d8d9455-a45e-4ecb-9e1a-56496ea5b76a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:15 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf8c9174-5bc0-4037-9f57-6e0c312de6e4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36588fd9-36fa-44c1-a698-7ec8ba101dba" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-correlation-request-id": [ - "8bf93db0-3d63-448b-b1cd-440d8c6898a8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152516Z:8bf93db0-3d63-448b-b1cd-440d8c6898a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:16 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26a0f45d-5f8c-41e6-b3be-0b4beafedd07" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e23fe27-5771-4728-8799-bd42d8e3412f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-correlation-request-id": [ - "a84d4fd1-9ba5-4855-b88e-55b645f4b3fd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152518Z:a84d4fd1-9ba5-4855-b88e-55b645f4b3fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:17 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3fd4627b-87c5-48ff-bdb3-53338aa1390b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bc077ff2-94cd-4d15-9bea-8cba9d82f672" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-correlation-request-id": [ - "5a711d5d-b817-436d-8289-781bec3c4754" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152519Z:5a711d5d-b817-436d-8289-781bec3c4754" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:19 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ff500f73-2763-4fed-8eb5-fd9fca0152d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "60d707b1-9a2c-4f24-8eef-83899b69bd5f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-correlation-request-id": [ - "c9d55d6a-684e-41da-96af-67514d4362ca" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152521Z:c9d55d6a-684e-41da-96af-67514d4362ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:20 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d497395-e5d7-4e35-90d1-7276713075df" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aa308f00-7d14-4bad-b1cd-6aa9b26b84ce" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-correlation-request-id": [ - "d7dbd0db-b89c-4280-b1db-f5e978907afd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152522Z:d7dbd0db-b89c-4280-b1db-f5e978907afd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:22 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0046616-4008-41fa-99ef-62525beb5c69" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0a79a9ac-55c6-4106-bed8-4f1458a90033" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-correlation-request-id": [ - "a93fbff1-f6dc-452d-8e99-4d8448a3cf54" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152523Z:a93fbff1-f6dc-452d-8e99-4d8448a3cf54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:23 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76571c71-d343-4594-9257-90d61781ad26" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0687f268-34f1-4d5b-b21e-d1dd226dc1d7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-correlation-request-id": [ - "d8e7aadc-1d6f-4360-9a1e-b21619a3234a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152525Z:d8e7aadc-1d6f-4360-9a1e-b21619a3234a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:25 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8c79457-4d14-43de-bc2b-c79a665167d1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e333ac64-51ab-43ec-a55d-f422aa00c297" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-correlation-request-id": [ - "89d08c90-1281-4b04-8ea1-4a5edbd319e7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152526Z:89d08c90-1281-4b04-8ea1-4a5edbd319e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:26 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b82ead5-703a-47e2-ad67-c3defd17c26d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5dcc0865-f7b7-4a7c-9db7-508d45ea1729" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-correlation-request-id": [ - "638eec86-2fd4-4082-b932-29c8c47cd16e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152528Z:638eec86-2fd4-4082-b932-29c8c47cd16e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:27 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76554c28-701f-4c75-8fdf-58a371a0d8ac" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d7bf78d-c472-4138-94e3-ea017619cf77" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-correlation-request-id": [ - "f3e239a8-7981-42b6-8db5-91c1eb90c099" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152529Z:f3e239a8-7981-42b6-8db5-91c1eb90c099" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:29 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "405a664f-cec4-4219-8661-81798c1855f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26537278-6e65-42d0-99ef-9297f47357a0" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-correlation-request-id": [ - "7191a330-1509-46f0-a24b-f22f16cdd10a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152531Z:7191a330-1509-46f0-a24b-f22f16cdd10a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:30 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8906f387-b933-4737-9cd5-53063cec37c2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "39c0bcab-ebc4-495b-abba-84ec29203ec2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-correlation-request-id": [ - "ad3de7a2-994a-42be-afc7-92ce9c3bce31" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152532Z:ad3de7a2-994a-42be-afc7-92ce9c3bce31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:31 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd6e5680-421b-46d4-b183-432f44c9ec30" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dce2e4ee-756d-4c78-bae5-b2c3341dcf40" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-correlation-request-id": [ - "38451bd0-e09b-46d3-a6fd-1231adb29865" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152534Z:38451bd0-e09b-46d3-a6fd-1231adb29865" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:33 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "484d850d-b80e-497c-ae99-92e5b4e228d2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96970814-9f2f-4b77-853c-52b4da58fa34" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-correlation-request-id": [ - "74c384ab-1129-4996-9398-a59c8b87c98e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152535Z:74c384ab-1129-4996-9398-a59c8b87c98e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:35 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b68eff4-afb5-45cf-b7eb-07bc9a281873" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e894850-f5ae-461b-b627-03c83712bd3a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-correlation-request-id": [ - "44ceb244-12fe-489b-9b4b-084e8c3b8c9e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152537Z:44ceb244-12fe-489b-9b4b-084e8c3b8c9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:37 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2274736d-cd7c-4c17-807f-df901b2263d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8fcf196a-dcf9-47c7-b961-26e6ba3c12b5" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-correlation-request-id": [ - "6780b46c-a3ab-48ae-9829-ec6568b3e816" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152539Z:6780b46c-a3ab-48ae-9829-ec6568b3e816" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:38 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "710186f8-3dd9-4f69-b71f-89a916940425" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "05046ccd-0988-4e3e-afda-9e759a7328a2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-correlation-request-id": [ - "ede3d1d0-405b-4933-9b1d-3611e9bb92a6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152540Z:ede3d1d0-405b-4933-9b1d-3611e9bb92a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:40 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "87a2c765-85b2-4290-8b3b-630aef24a2d6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "830b4acb-3a42-43ba-a292-dce2772db947" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-correlation-request-id": [ - "1d94fa08-01f9-4abd-af85-1f5738bcd387" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152541Z:1d94fa08-01f9-4abd-af85-1f5738bcd387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:41 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "18ff7623-02a6-433c-ab59-64ddeac9e23b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2b78dce3-c441-4f9b-969f-f1be6bd669f8" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-correlation-request-id": [ - "b626e10f-1d1f-4add-bf00-d13d0b63ea9f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152543Z:b626e10f-1d1f-4add-bf00-d13d0b63ea9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:42 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "393795f3-0ef7-4a03-ace4-f5f4f8293283" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "86cb170c-09ed-4408-8352-bae1d29ca790" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-correlation-request-id": [ - "4508d9cd-18bb-4fc3-964a-607ab0a53c1b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152544Z:4508d9cd-18bb-4fc3-964a-607ab0a53c1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:44 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47041a6c-d219-4d3d-a12c-bcbfb2f46f60" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f9fb2eaa-a1fe-45e7-aa42-f0843bf218da" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-correlation-request-id": [ - "ac9f6a61-6473-4d3b-8049-785b86583e8c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152546Z:ac9f6a61-6473-4d3b-8049-785b86583e8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:45 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "782b0de3-750c-471e-9d51-52eea3665a85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f21ae069-bc4c-47fe-b01f-c0e647fd8842" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-correlation-request-id": [ - "f2d68616-7829-4cda-8c1c-2153eb556077" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152547Z:f2d68616-7829-4cda-8c1c-2153eb556077" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:46 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8c65a00-d785-4f10-86f8-4861ac65bda9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "451f2bae-6e05-4478-b5a5-236a1d9a8ab7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-correlation-request-id": [ - "57fce165-b373-4d97-9ff3-de9730930874" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152548Z:57fce165-b373-4d97-9ff3-de9730930874" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:48 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e9994af-4ced-4ce5-b13a-b0ec05db0127" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c3a38eb3-88ae-4961-8d17-6c0a7c12976a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-correlation-request-id": [ - "b8a0271f-70af-4fe6-ad94-254ff037ee7d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152549Z:b8a0271f-70af-4fe6-ad94-254ff037ee7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:49 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "666cbe47-6329-43ef-8209-d1297ef3744a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3cf7a74d-a6a9-4ffa-910a-3e3a3d9bb9bf" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" - ], - "x-ms-correlation-request-id": [ - "5a36d77c-837d-4e0c-95f8-af39eb1161d7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152551Z:5a36d77c-837d-4e0c-95f8-af39eb1161d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:50 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c26b2a4d-65fc-43a7-a05f-d73ba66c4878" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d181cb87-6f4b-4c0c-a268-39d0d3a040f6" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-correlation-request-id": [ - "d3b0379a-bd17-4012-9f7c-f00c7cba1e21" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152552Z:d3b0379a-bd17-4012-9f7c-f00c7cba1e21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:52 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "726affaa-ce2d-4280-a6bf-2013a3330d88" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8465482e-22a4-4163-badb-9d906c8f713a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-correlation-request-id": [ - "a2c025de-0b22-4e2a-9073-726234a4e3b2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152553Z:a2c025de-0b22-4e2a-9073-726234a4e3b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:53 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "77e20672-136f-4b17-9fa0-5172baf4ac83" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c7aa8b76-1bb3-4b3d-84f6-28572b5ff527" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-correlation-request-id": [ - "434fe393-ae63-49ca-9864-c164a8becdcd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152555Z:434fe393-ae63-49ca-9864-c164a8becdcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:54 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd7f5f08-2ecf-45f1-a453-a2483db736bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3e12d28f-3d03-49d4-ac8a-4317cd87a20f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" - ], - "x-ms-correlation-request-id": [ - "8e8157d6-fffc-4fbc-8a34-5a1ecf81e216" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152556Z:8e8157d6-fffc-4fbc-8a34-5a1ecf81e216" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:56 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "233d440a-980c-4d36-a0a7-d90dfd5a414d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "163dd5c8-a8b1-4411-8d9d-c22174659c77" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-correlation-request-id": [ - "aaf81368-2eb6-45c8-981a-840e3e9ee727" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152557Z:aaf81368-2eb6-45c8-981a-840e3e9ee727" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:57 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5408050e-9cf3-4d58-bbde-ba31938ec989" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "01ecfc7d-8826-42a8-bc72-f30c8357b86e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" - ], - "x-ms-correlation-request-id": [ - "d2f26bbb-cc7a-4040-9b52-478e5fb98f93" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152559Z:d2f26bbb-cc7a-4040-9b52-478e5fb98f93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:58 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd981ce8-17f5-43ff-afe3-5071a02a20d3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bae8505f-90fa-4fa4-b044-25850d082bfe" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-correlation-request-id": [ - "eb511409-1f53-4b68-a9dd-7820f4b7fdf1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152600Z:eb511409-1f53-4b68-a9dd-7820f4b7fdf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:25:59 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aeefe78d-c5ab-43ed-89c1-8453e0200585" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4db9765d-f098-4296-aeac-360ff6736121" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" - ], - "x-ms-correlation-request-id": [ - "d21950e0-d01b-456a-94a1-1037fe6e1d24" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152601Z:d21950e0-d01b-456a-94a1-1037fe6e1d24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:01 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bebbb133-c36f-4aa2-9e82-9c05080ae357" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e5f60e47-69fd-4e0c-9428-06e8f3b534c4" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-correlation-request-id": [ - "fa188998-3513-4774-a5fd-f82ea0832b8e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152603Z:fa188998-3513-4774-a5fd-f82ea0832b8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:02 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2661486f-1882-4f12-bb43-1ca8ca3b0c0b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9d2e3926-b78d-40a9-b7d8-3e2571462652" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-correlation-request-id": [ - "9393ca8d-4a16-472d-bdde-8892b0855c20" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152604Z:9393ca8d-4a16-472d-bdde-8892b0855c20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:03 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d10038b-e738-4015-af84-44d4e1cfdfaf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d929d9e2-1692-4497-81ca-4c893d22fbe1" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-correlation-request-id": [ - "6428a6e1-d772-44fd-bde0-cd3010796dc7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152605Z:6428a6e1-d772-44fd-bde0-cd3010796dc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:05 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7340d6a1-d15a-4215-a6d1-b377d6ecaf05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8bd448c6-6912-4bcb-a569-0aeb076da86e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" - ], - "x-ms-correlation-request-id": [ - "59ec0d41-ab0b-48e4-8157-4c425ed39cbb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152606Z:59ec0d41-ab0b-48e4-8157-4c425ed39cbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:06 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4c1f090e-6666-4ba4-896c-7e9cf5703a3c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8569a46b-6fc9-42d5-93d2-06129f71db45" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-correlation-request-id": [ - "22cd3a88-a759-4b54-9cab-c81f8ad67956" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152608Z:22cd3a88-a759-4b54-9cab-c81f8ad67956" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:07 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a8487ea3-de74-43a0-99fa-01fbff203221" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1b940da-4c4c-4d46-bbb8-7af0e531bc02" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" - ], - "x-ms-correlation-request-id": [ - "e455083b-c8e0-4d67-9610-d1cb3feeb7eb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152609Z:e455083b-c8e0-4d67-9610-d1cb3feeb7eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:08 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2964bd0d-f785-4616-8170-7cab10f8bf95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1daa8e49-9c18-49f4-8e99-5797dae64b2b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" - ], - "x-ms-correlation-request-id": [ - "afc081a3-e6fe-4f61-ba22-a0cd94cb15fc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152610Z:afc081a3-e6fe-4f61-ba22-a0cd94cb15fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:10 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c347dc80-46c6-4478-bd73-969dddd92e46" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11aa8b24-bf81-4edc-83d8-7225e841be61" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" - ], - "x-ms-correlation-request-id": [ - "b9761d79-72aa-48b1-bf25-50cd504d518c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152612Z:b9761d79-72aa-48b1-bf25-50cd504d518c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:11 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09070d18-4fc7-41a2-89c1-8ddb5a9e33e6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "31c5b9c3-83f7-4ae4-959d-e5b431edcbd2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" - ], - "x-ms-correlation-request-id": [ - "b236d84b-8c20-4af2-9b9a-8095f4c29d65" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152613Z:b236d84b-8c20-4af2-9b9a-8095f4c29d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:12 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af25a0fe-2ddd-48a4-aea5-6f1e868ee5db" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e3670680-172e-463d-b054-2c3d4848e034" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-correlation-request-id": [ - "f8a794a6-41fb-4431-9309-c7bfbb80c21f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152614Z:f8a794a6-41fb-4431-9309-c7bfbb80c21f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:14 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52d478fd-e960-4db3-b25e-fffbb02791e8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "18b9db41-9385-41a8-9625-11650af21bb7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" - ], - "x-ms-correlation-request-id": [ - "dbf8869c-605a-4392-95ea-b2e6a3393f9f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152616Z:dbf8869c-605a-4392-95ea-b2e6a3393f9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:15 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b2a167c-042e-4542-bfc5-a88fc14b032b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "80168b92-8bad-4f0a-9b2a-97ab0d0ea92f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" - ], - "x-ms-correlation-request-id": [ - "5ff8d7f3-2fef-4df8-8a75-9137192d2c52" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152617Z:5ff8d7f3-2fef-4df8-8a75-9137192d2c52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:16 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8ae8128-10fd-4880-ab4c-e7130e050d41" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1dcc48ac-f04b-4d20-b81e-b80266503f31" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" - ], - "x-ms-correlation-request-id": [ - "15413f77-c928-4897-9581-cd85241bcce7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152618Z:15413f77-c928-4897-9581-cd85241bcce7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:18 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31b9927c-8f09-4c19-988e-c1ea12b0b041" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "95c18955-87a0-4d99-b764-2b57677d48f6" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-correlation-request-id": [ - "1c7d71d0-0aaa-45be-a1c6-dc35727c4c83" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152620Z:1c7d71d0-0aaa-45be-a1c6-dc35727c4c83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:19 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe7f3f9e-e26e-4467-823b-c08a7ee6f7e4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "721fe542-96b8-44fd-a8d0-cf46b832ef6b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" - ], - "x-ms-correlation-request-id": [ - "50cb67d0-5fd3-488f-afb1-ba14a38ca2f8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152621Z:50cb67d0-5fd3-488f-afb1-ba14a38ca2f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:20 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eac586dd-ec41-48b5-8c6e-71904fe2148a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3186d1b4-d5a3-4bb1-add0-bed5eb11a627" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" - ], - "x-ms-correlation-request-id": [ - "1caf62e9-c1d4-4e98-a2e2-f3b818bf0ccf" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152622Z:1caf62e9-c1d4-4e98-a2e2-f3b818bf0ccf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:22 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "656275a9-90d7-4548-9c5b-54045f3ef09b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "076febdf-9348-43c2-b7a3-d64f361b06ec" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" - ], - "x-ms-correlation-request-id": [ - "057dc3fd-1b56-4479-afc0-3d3beb00bd71" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152624Z:057dc3fd-1b56-4479-afc0-3d3beb00bd71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:23 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fdd48bc6-0e46-4248-9bb1-d2c9556fc0ac" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b40456d9-fe4f-4c40-9cd8-c705e97e6c8e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], - "x-ms-correlation-request-id": [ - "724cfc49-2521-4bd2-93ae-8185c3f785bb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152625Z:724cfc49-2521-4bd2-93ae-8185c3f785bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:25 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ee99e8c-115b-401c-97af-10f9bd5d0d0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ef1d7e8a-d72d-41d1-b731-41084da42abd" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" - ], - "x-ms-correlation-request-id": [ - "23c4f655-0757-4bb9-82b2-f1b1c717920f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152627Z:23c4f655-0757-4bb9-82b2-f1b1c717920f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:26 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "934fbf66-684b-4d9a-bb96-d16dd4ddfd11" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "df1d7d3e-8099-413f-b216-23a8276648ab" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], - "x-ms-correlation-request-id": [ - "a852c8e4-ce34-46ca-802c-2859b716cb11" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152628Z:a852c8e4-ce34-46ca-802c-2859b716cb11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:27 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "540a0c46-7a4f-4399-a8b1-35248ee0c7c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6350af69-3962-4d38-9d0e-8f2151ec2801" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" - ], - "x-ms-correlation-request-id": [ - "01657c37-61e0-4e23-b990-0979e5c22d02" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152629Z:01657c37-61e0-4e23-b990-0979e5c22d02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:29 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6dd2c992-c781-4696-a4ee-aecb8c667b71" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "76cdda42-1b6d-47eb-a4e7-d15a7ee9afed" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" - ], - "x-ms-correlation-request-id": [ - "41caa6e9-2fb0-4ffe-bf59-867889920c24" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152631Z:41caa6e9-2fb0-4ffe-bf59-867889920c24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:30 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c0d3c25-7fa5-4a87-95ce-e6d717667064" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1a2eafff-f6a2-4ce5-8c09-714b1c96e060" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" - ], - "x-ms-correlation-request-id": [ - "b90785f4-a29c-4e21-b822-212c67b53375" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152633Z:b90785f4-a29c-4e21-b822-212c67b53375" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:32 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d1e58da-8c0b-4b56-8d6e-7f3db649c0ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11e76669-056e-4cc7-afec-04ba281658a5" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], - "x-ms-correlation-request-id": [ - "7ec46b60-121a-4c68-b013-5c0745bf4960" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152634Z:7ec46b60-121a-4c68-b013-5c0745bf4960" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:33 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dbcc6445-fced-46e1-b106-7ad8209a8f8a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "19df02db-9705-43a1-9544-7792e8d883b3" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" - ], - "x-ms-correlation-request-id": [ - "377501cf-9cb5-4239-af5f-f6817217f1b5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152637Z:377501cf-9cb5-4239-af5f-f6817217f1b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:36 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33df75c7-de2b-4ac1-8ae5-c6c3fe9cf5b4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b4d356d3-0430-4d5d-93e2-7626efc8853e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" - ], - "x-ms-correlation-request-id": [ - "f9bbdd29-9987-4bf1-964f-643cc39bcbd6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152638Z:f9bbdd29-9987-4bf1-964f-643cc39bcbd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:37 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b63cebc-c75e-4cd2-9075-d9f15099dfb2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "efa28995-ca7b-47d8-9e28-1a5c8bef4d77" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" - ], - "x-ms-correlation-request-id": [ - "6509a4b5-c4d5-4475-b8c8-7ee29960b38e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152640Z:6509a4b5-c4d5-4475-b8c8-7ee29960b38e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:39 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a841bef6-038a-485a-9ca6-972282530ab7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d501a84b-8426-4bb0-88f6-cd572b3b227c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" - ], - "x-ms-correlation-request-id": [ - "1f6e65d9-b1f9-4d69-adfb-69c2f40f53f3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152641Z:1f6e65d9-b1f9-4d69-adfb-69c2f40f53f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:40 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7798279-fd86-4f93-a9d1-5b436bed788c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6a283067-85cc-4314-b121-b9e5726d7a99" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" - ], - "x-ms-correlation-request-id": [ - "b786a2fc-fcc8-4d07-b2f6-b9907f9a385b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152643Z:b786a2fc-fcc8-4d07-b2f6-b9907f9a385b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:42 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "231855cc-4dea-48da-b3d3-38e7032559c4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ecea33b0-a560-48a5-b1a8-12ea29f5e9c9" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" - ], - "x-ms-correlation-request-id": [ - "712f794f-81c1-47b2-a9cf-496854ff63da" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152644Z:712f794f-81c1-47b2-a9cf-496854ff63da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:43 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "509df707-6e0a-4a4b-8bf9-40863e5768c9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4b9df6a2-c3f2-4219-b3b0-dfd439855922" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" - ], - "x-ms-correlation-request-id": [ - "f24d795e-9382-470a-964a-d856a7b6a4ad" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152645Z:f24d795e-9382-470a-964a-d856a7b6a4ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:44 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "04b32593-7674-460e-9214-789f4be8d52b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eff8f448-1510-472a-a53d-3f383f9e3c23" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" - ], - "x-ms-correlation-request-id": [ - "a2323a83-dd41-4113-a04c-f7d217fc31a4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152647Z:a2323a83-dd41-4113-a04c-f7d217fc31a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:46 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e98cf35e-c442-4647-a2e8-d10c82a197a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4346b303-787c-4a25-928e-8a2e591fdc4b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" - ], - "x-ms-correlation-request-id": [ - "3e2259ff-707d-41aa-b8c2-80d4cd376eed" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152648Z:3e2259ff-707d-41aa-b8c2-80d4cd376eed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:47 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd35c258-80d2-4b37-b79a-cf280cfb6217" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "853c565a-9b66-493d-8648-287846b7d491" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" - ], - "x-ms-correlation-request-id": [ - "f32acc60-5dca-49ce-ab03-937845c7a787" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152649Z:f32acc60-5dca-49ce-ab03-937845c7a787" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:48 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c35381f8-3eb4-4ef0-92cc-800e76315617" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7056c586-7863-40da-88c2-2ec7263b3048" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" - ], - "x-ms-correlation-request-id": [ - "df7409b1-bdce-4e6e-8200-146e0a393e75" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152651Z:df7409b1-bdce-4e6e-8200-146e0a393e75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:50 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75455ee3-997e-4e03-a2ac-51d75457fe7d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d3045180-6888-4a06-a65d-325da09b3a06" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" - ], - "x-ms-correlation-request-id": [ - "cd6287d5-f870-464a-a2db-f504d6da1936" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152653Z:cd6287d5-f870-464a-a2db-f504d6da1936" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:52 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23e07326-ce42-4f75-a1ae-3661abf022c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5454b66-f91c-4bb5-9eb6-4b4ee660de1d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" - ], - "x-ms-correlation-request-id": [ - "8758a415-99a9-4380-818c-34b7cbeb110b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152654Z:8758a415-99a9-4380-818c-34b7cbeb110b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:53 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc5f6f6f-3b66-4e12-83b9-a21c7bc35b35" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "61e48e84-1491-40cb-b27f-37170f67d909" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" - ], - "x-ms-correlation-request-id": [ - "e2910545-78eb-4f60-8c35-e862ea46f8f6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152656Z:e2910545-78eb-4f60-8c35-e862ea46f8f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:55 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ccbb4b68-947f-4468-8183-53299f29d5ac" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "816826d3-4848-423b-bbe6-4f1763f0b66d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" - ], - "x-ms-correlation-request-id": [ - "e7fcafab-7d4b-4e6a-821b-5727e48c54a2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152657Z:e7fcafab-7d4b-4e6a-821b-5727e48c54a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:56 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a1f6b16-ce67-4323-81de-4500ddab2dc4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "302fccdf-b0fc-4cba-aec4-f7ea05c17033" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" - ], - "x-ms-correlation-request-id": [ - "b7df2cbe-0304-4ea2-aedd-1a08bfc1e5c0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152658Z:b7df2cbe-0304-4ea2-aedd-1a08bfc1e5c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:57 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "752fa281-d236-4ba4-a9bf-19b334c9ec4d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "20638314-80d5-4902-8bb8-3a123b7183b1" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" - ], - "x-ms-correlation-request-id": [ - "87221bd7-5dd8-4f4e-a580-e1f7a5f5529c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152700Z:87221bd7-5dd8-4f4e-a580-e1f7a5f5529c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:26:59 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41d8e42e-2bfb-4593-b3d1-ab83cbe14fe0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d9090d1c-9ce6-4819-b6ff-0f43dcccce21" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" - ], - "x-ms-correlation-request-id": [ - "3cf89181-d7ce-49f2-bdd2-8766c0d7fbad" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152701Z:3cf89181-d7ce-49f2-bdd2-8766c0d7fbad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:00 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da7b7918-fd61-4d11-b8cb-7c089d8542aa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5810588a-88a3-4227-a678-c118ccb9f9bc" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" - ], - "x-ms-correlation-request-id": [ - "fb688726-5e37-49a0-83a6-4d4548a93c8f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152703Z:fb688726-5e37-49a0-83a6-4d4548a93c8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:02 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6cbbe3db-9077-418a-9bc4-06e153cffd4c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "30b5c089-0dca-49b2-9ae4-7ae7b6570b81" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" - ], - "x-ms-correlation-request-id": [ - "a1fb35ab-1862-4d8e-904e-e2300486c5a0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152704Z:a1fb35ab-1862-4d8e-904e-e2300486c5a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:03 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c0376db8-9bd0-4ea8-8c4d-b8beeb54f215" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "73e8b602-2f71-4e5a-9c8d-c560da62fc17" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" - ], - "x-ms-correlation-request-id": [ - "145427fb-256a-4a2b-8038-5e3e0f1dbba5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152705Z:145427fb-256a-4a2b-8038-5e3e0f1dbba5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:04 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e753a99e-254d-4d0a-a448-c4baf1a0f3f3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e34b0c13-d7ea-4ac0-9a7e-b9c47db2940a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" - ], - "x-ms-correlation-request-id": [ - "7f7ec894-2c06-40a8-99b9-3550ce2b9131" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152707Z:7f7ec894-2c06-40a8-99b9-3550ce2b9131" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:06 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "66b4e8fd-621f-4acb-8a07-8d2160f7ca0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43918d4c-120b-4a5d-bcaa-bb73d14afc0b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" - ], - "x-ms-correlation-request-id": [ - "9f11bf03-62e3-427c-8991-9e75840b88f4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152708Z:9f11bf03-62e3-427c-8991-9e75840b88f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:07 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc47f33a-89ee-47d5-974c-3bb00a2f95d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fd3ec7fa-0a54-4b37-a78e-97531484dd3f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" - ], - "x-ms-correlation-request-id": [ - "ac76958e-e8fe-4605-8688-7bd054f10600" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152709Z:ac76958e-e8fe-4605-8688-7bd054f10600" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:08 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d52c4382-1921-48e4-af14-421f09f1d9d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2112918e-3214-4fcb-a71b-df5a374b5db8" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" - ], - "x-ms-correlation-request-id": [ - "17d7e4b4-9d02-4a9a-8816-0ae7a5fd194d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152711Z:17d7e4b4-9d02-4a9a-8816-0ae7a5fd194d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:11 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81eec26a-5cb2-4feb-87d8-6c9c18763b5f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "de0f2f39-9880-4a04-b225-2b0586220148" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], - "x-ms-correlation-request-id": [ - "6c7808d7-dc78-4cc0-a446-bf59717f7432" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152712Z:6c7808d7-dc78-4cc0-a446-bf59717f7432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:12 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8bb9e4e7-ed14-4e6d-9746-e484293faa6b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3f5cd103-dd71-44b2-a6bf-6e8e4f58967e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" - ], - "x-ms-correlation-request-id": [ - "6913d968-8ff0-4c1a-96a1-58183630617b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152713Z:6913d968-8ff0-4c1a-96a1-58183630617b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:13 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e63660bf-f357-41e5-9323-c734d1f5ee85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2480366b-f5a8-4e0e-92fa-c4040185fd15" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" - ], - "x-ms-correlation-request-id": [ - "2221e84e-3e99-405e-8f02-1819a15b7a87" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152746Z:2221e84e-3e99-405e-8f02-1819a15b7a87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:45 GMT" - ], - "Content-Length": [ - "109" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3ceb4d8-7a22-4bab-8fb6-bb01181f191b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e3ac46d-63d6-45c2-9609-b1fb7ea9564f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" - ], - "x-ms-correlation-request-id": [ - "a884bcad-f62d-4dbc-bc52-3ceb77b3d486" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152850Z:a884bcad-f62d-4dbc-bc52-3ceb77b3d486" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:50 GMT" - ], - "Content-Length": [ - "119" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Transferring\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXBsaWNhdGlvblN0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c683c9b4-00ae-4b41-9fa2-60eaa8273447" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "76df6435-6438-40ba-a87e-d9a4bba7b970" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" - ], - "x-ms-correlation-request-id": [ - "1b2fe131-5b62-4834-b005-ef7e2304eb22" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152953Z:1b2fe131-5b62-4834-b005-ef7e2304eb22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:29:52 GMT" - ], - "Content-Length": [ - "109" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"20352\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/breakReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9icmVha1JlcGxpY2F0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70ecb7ae-80f2-42bc-923f-f81039f85412" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "c1677f86-8391-4f04-bd48-8e30c4d47564" - ], - "x-ms-correlation-request-id": [ - "c1677f86-8391-4f04-bd48-8e30c4d47564" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152715Z:c1677f86-8391-4f04-bd48-8e30c4d47564" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/breakReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9icmVha1JlcGxpY2F0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"forceBreakReplication\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "322eeda3-ccf4-40c5-a03f-bc055cb325f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "37" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "3e180646-4f6d-456d-8c61-25ca692989c0" - ], - "x-ms-correlation-request-id": [ - "3e180646-4f6d-456d-8c61-25ca692989c0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152922Z:3e180646-4f6d-456d-8c61-25ca692989c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:29:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy81NWUxZWVlNy1lNDlmLTQ0MjgtODdhMC0yODZhNmRkMjIwOTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c2c72d76-7e21-4e2a-82cc-addd3c65e8c5" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "10230d95-2787-42f2-a1d9-61bf8b62fbf2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152745Z:10230d95-2787-42f2-a1d9-61bf8b62fbf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:45 GMT" - ], - "Content-Length": [ - "522" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092\",\r\n \"name\": \"55e1eee7-e49f-4428-87a0-286a6dd22092\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:27:15.0987003Z\",\r\n \"endTime\": \"2020-10-23T15:27:22.698532Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/55e1eee7-e49f-4428-87a0-286a6dd22092?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy81NWUxZWVlNy1lNDlmLTQ0MjgtODdhMC0yODZhNmRkMjIwOTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "be479d62-d26f-4a73-bcdb-65d3aea5d58c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" - ], - "x-ms-correlation-request-id": [ - "f4e56ee5-59d9-43e7-ab02-fb2b11a1758f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152745Z:f4e56ee5-59d9-43e7-ab02-fb2b11a1758f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:27:45 GMT" - ], - "Content-Length": [ - "2355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A27%3A15.13368Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/resyncReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9yZXN5bmNSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3bcbd556-dca0-42c4-b12d-68571846a85d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" - ], - "x-ms-correlation-request-id": [ - "be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152820Z:be6589e5-f5b6-4d63-ace3-b6f6a4d89b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82Y2RkOGI2Ni0wZDJiLTQwODctYTIwZS04MzRmYjYwN2M0MmQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "474d64ea-1f07-47a0-8617-81938658c0f2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" - ], - "x-ms-correlation-request-id": [ - "2d8dc51f-cf20-4c7d-87f3-b9c9db16d5a8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152850Z:2d8dc51f-cf20-4c7d-87f3-b9c9db16d5a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:49 GMT" - ], - "Content-Length": [ - "523" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d\",\r\n \"name\": \"6cdd8b66-0d2b-4087-a20e-834fb607c42d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:28:20.0940102Z\",\r\n \"endTime\": \"2020-10-23T15:28:27.4828904Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6cdd8b66-0d2b-4087-a20e-834fb607c42d?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82Y2RkOGI2Ni0wZDJiLTQwODctYTIwZS04MzRmYjYwN2M0MmQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97c0f406-f324-4e81-83f7-c94050ea4c89" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" - ], - "x-ms-correlation-request-id": [ - "50ca35fb-aee5-46cf-8bda-b2798d32680a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152850Z:50ca35fb-aee5-46cf-8bda-b2798d32680a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:28:49 GMT" - ], - "Content-Length": [ - "2392" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A28%3A20.1230783Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Mirrored\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iNjVkN2QyNi01ZjRkLTRjNTUtOWMwYi05ZmZmNTJmZGE3ZWY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd334043-600e-4c88-8333-767269192102" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" - ], - "x-ms-correlation-request-id": [ - "6540db1c-d3b1-4838-bc97-d24aff453cf6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152952Z:6540db1c-d3b1-4838-bc97-d24aff453cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:29:52 GMT" - ], - "Content-Length": [ - "520" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef\",\r\n \"name\": \"b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:29:22.2059Z\",\r\n \"endTime\": \"2020-10-23T15:29:29.5129814Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b65d7d26-5f4d-4c55-9c0b-9fff52fda7ef?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iNjVkN2QyNi01ZjRkLTRjNTUtOWMwYi05ZmZmNTJmZGE3ZWY/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5b2dbc1c-f876-4a94-b7a8-29c7f3e7aa28" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" - ], - "x-ms-correlation-request-id": [ - "e850cd0e-b08b-47bd-940b-763b70fc637c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T152952Z:e850cd0e-b08b-47bd-940b-763b70fc637c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:29:52 GMT" - ], - "Content-Length": [ - "2357" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A29%3A22.2574433Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"6d447652-d133-92b1-8391-a1b09bde38a7\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"volumeName\": \"vol_ps1605_7fb0ea\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4849/providers/Microsoft.NetApp/netAppAccounts/ps5048/capacityPools/ps2690/volumes/ps1960\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605/deleteReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODg3NC9jYXBhY2l0eVBvb2xzL3BzNzc0NS92b2x1bWVzL3BzMTYwNS9kZWxldGVSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2b184b12-7013-4698-b685-6cd0d4f595b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" - ], - "x-ms-correlation-request-id": [ - "b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153024Z:b205a5fc-fb95-4ed5-a050-b5e9a3394d1a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:30:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yOWJmZDJlYy05NDM3LTQ5ZmUtOTkyMS1hMWNlZmI1NWFhYmU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7e8af610-7839-414e-9906-2ba38bc80055" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" - ], - "x-ms-correlation-request-id": [ - "19b7548f-bed5-4142-8789-0794268c989a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153054Z:19b7548f-bed5-4142-8789-0794268c989a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:30:54 GMT" - ], - "Content-Length": [ - "522" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe\",\r\n \"name\": \"29bfd2ec-9437-49fe-9921-a1cefb55aabe\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T15:30:24.4946456Z\",\r\n \"endTime\": \"2020-10-23T15:30:26.264521Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/29bfd2ec-9437-49fe-9921-a1cefb55aabe?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yOWJmZDJlYy05NDM3LTQ5ZmUtOTkyMS1hMWNlZmI1NWFhYmU/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "25016d71-2354-4541-8555-9ec153a4d1e7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" - ], - "x-ms-correlation-request-id": [ - "3c7f4782-7d6d-4a8f-8a14-0f5fd8f920b6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153054Z:3c7f4782-7d6d-4a8f-8a14-0f5fd8f920b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:30:54 GMT" - ], - "Content-Length": [ - "1794" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"name\": \"ps8874/ps7745/ps1605\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T15%3A30%3A24.5359135Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {},\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"name\": \"ps1605\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1605\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_eac19aaa\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.Network/virtualNetworks/ps197-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps197/providers/Microsoft.NetApp/netAppAccounts/ps8874/capacityPools/ps7745/volumes/ps1605\",\r\n \"poolId\": \"b47f0277-6ef2-88e0-1e09-197ef2190c19\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"fileSystemId\": \"391d6542-f5cc-d17d-f881-ba524d384830\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4849?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98e437d3-6a93-40f6-9f47-7ddef8bf592b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "e63d1b47-1321-4e30-9d31-faf86b7d05cc" - ], - "x-ms-correlation-request-id": [ - "e63d1b47-1321-4e30-9d31-faf86b7d05cc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153059Z:e63d1b47-1321-4e30-9d31-faf86b7d05cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:30:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" - ], - "x-ms-correlation-request-id": [ - "30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153114Z:30adfc1c-85c9-47dd-b1e9-d8e71ba9efcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:31:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "0743c5da-4514-4a77-8b36-744eb0b45dc0" - ], - "x-ms-correlation-request-id": [ - "0743c5da-4514-4a77-8b36-744eb0b45dc0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153130Z:0743c5da-4514-4a77-8b36-744eb0b45dc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:31:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "836cb833-50f5-4323-8c1e-32e43a6db179" - ], - "x-ms-correlation-request-id": [ - "836cb833-50f5-4323-8c1e-32e43a6db179" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153145Z:836cb833-50f5-4323-8c1e-32e43a6db179" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:31:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "415a4548-8843-4cd3-a169-7b5a5fef4a75" - ], - "x-ms-correlation-request-id": [ - "415a4548-8843-4cd3-a169-7b5a5fef4a75" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153200Z:415a4548-8843-4cd3-a169-7b5a5fef4a75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:32:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "0f91d04f-4541-481a-8885-8730946e1534" - ], - "x-ms-correlation-request-id": [ - "0f91d04f-4541-481a-8885-8730946e1534" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153216Z:0f91d04f-4541-481a-8885-8730946e1534" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:32:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "00740a19-cae3-4030-964c-b1d9297b340d" - ], - "x-ms-correlation-request-id": [ - "00740a19-cae3-4030-964c-b1d9297b340d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153231Z:00740a19-cae3-4030-964c-b1d9297b340d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:32:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" - ], - "x-ms-correlation-request-id": [ - "7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153246Z:7ea7848c-3dd6-4081-b515-c7ebd89a6fc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:32:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "909d566f-e904-414c-bad6-b7656b84ca3b" - ], - "x-ms-correlation-request-id": [ - "909d566f-e904-414c-bad6-b7656b84ca3b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153302Z:909d566f-e904-414c-bad6-b7656b84ca3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:33:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" - ], - "x-ms-correlation-request-id": [ - "35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153317Z:35d552d5-05e9-4a6d-a6c1-ff07e45d71b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:33:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "d98a0df8-3469-45bf-815b-2ef60d8b447f" - ], - "x-ms-correlation-request-id": [ - "d98a0df8-3469-45bf-815b-2ef60d8b447f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153333Z:d98a0df8-3469-45bf-815b-2ef60d8b447f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:33:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "4ed069a3-3350-4026-b432-55d5478c2afa" - ], - "x-ms-correlation-request-id": [ - "4ed069a3-3350-4026-b432-55d5478c2afa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153348Z:4ed069a3-3350-4026-b432-55d5478c2afa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:33:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" - ], - "x-ms-correlation-request-id": [ - "e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153403Z:e5f85a81-f6d1-4728-891d-2cd8c4a2bf55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:34:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "89c3b91b-cb81-48cb-b95f-9b16e9233728" - ], - "x-ms-correlation-request-id": [ - "89c3b91b-cb81-48cb-b95f-9b16e9233728" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153419Z:89c3b91b-cb81-48cb-b95f-9b16e9233728" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:34:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "acebb157-0166-4b4b-8bed-78fc0efdd6e3" - ], - "x-ms-correlation-request-id": [ - "acebb157-0166-4b4b-8bed-78fc0efdd6e3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153434Z:acebb157-0166-4b4b-8bed-78fc0efdd6e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:34:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "6443a18e-ae78-40f3-bdd7-ce2d699078c9" - ], - "x-ms-correlation-request-id": [ - "6443a18e-ae78-40f3-bdd7-ce2d699078c9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153449Z:6443a18e-ae78-40f3-bdd7-ce2d699078c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:34:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "528930aa-37ca-42d0-9ac4-feaa28b828ff" - ], - "x-ms-correlation-request-id": [ - "528930aa-37ca-42d0-9ac4-feaa28b828ff" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153505Z:528930aa-37ca-42d0-9ac4-feaa28b828ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:35:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "9f004703-baf6-4311-8eca-bf2d459336d5" - ], - "x-ms-correlation-request-id": [ - "9f004703-baf6-4311-8eca-bf2d459336d5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153520Z:9f004703-baf6-4311-8eca-bf2d459336d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:35:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "952461b9-b4d9-4b2f-9ee6-e3e289be1b55" - ], - "x-ms-correlation-request-id": [ - "952461b9-b4d9-4b2f-9ee6-e3e289be1b55" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153536Z:952461b9-b4d9-4b2f-9ee6-e3e289be1b55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:35:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "b3a5d154-dcb2-48f0-a674-6d0711418264" - ], - "x-ms-correlation-request-id": [ - "b3a5d154-dcb2-48f0-a674-6d0711418264" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153551Z:b3a5d154-dcb2-48f0-a674-6d0711418264" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:35:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "c8315f9b-6dbb-4afc-b800-1092514ca79d" - ], - "x-ms-correlation-request-id": [ - "c8315f9b-6dbb-4afc-b800-1092514ca79d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153607Z:c8315f9b-6dbb-4afc-b800-1092514ca79d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:36:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "f0ec2ec9-d576-48d6-98ca-58927a3407a6" - ], - "x-ms-correlation-request-id": [ - "f0ec2ec9-d576-48d6-98ca-58927a3407a6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153622Z:f0ec2ec9-d576-48d6-98ca-58927a3407a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:36:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" - ], - "x-ms-correlation-request-id": [ - "4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153638Z:4f6ae59d-c2ac-4123-a6be-d839f83ab5a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:36:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "555a4e0c-300b-473a-bd26-a5755ce4a234" - ], - "x-ms-correlation-request-id": [ - "555a4e0c-300b-473a-bd26-a5755ce4a234" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153653Z:555a4e0c-300b-473a-bd26-a5755ce4a234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:36:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "430ba00b-cf96-45cc-9415-5fb208590e8c" - ], - "x-ms-correlation-request-id": [ - "430ba00b-cf96-45cc-9415-5fb208590e8c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153709Z:430ba00b-cf96-45cc-9415-5fb208590e8c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "71f8968f-98ee-4b23-95d3-ca30331405ec" - ], - "x-ms-correlation-request-id": [ - "71f8968f-98ee-4b23-95d3-ca30331405ec" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153724Z:71f8968f-98ee-4b23-95d3-ca30331405ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "ed1c7bc9-b4db-41ca-91b3-f32018ca6672" - ], - "x-ms-correlation-request-id": [ - "ed1c7bc9-b4db-41ca-91b3-f32018ca6672" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153739Z:ed1c7bc9-b4db-41ca-91b3-f32018ca6672" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-request-id": [ - "221f2d66-d275-4c52-92d0-49218e40ad79" - ], - "x-ms-correlation-request-id": [ - "221f2d66-d275-4c52-92d0-49218e40ad79" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153740Z:221f2d66-d275-4c52-92d0-49218e40ad79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps197?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eba5464e-543a-4a08-a266-886741a396c8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" - ], - "x-ms-correlation-request-id": [ - "4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153743Z:4c54c5cf-a8b0-4b42-a05b-1391cf4dbfaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-request-id": [ - "0f03a349-e229-4339-a872-ffa57ccb609c" - ], - "x-ms-correlation-request-id": [ - "0f03a349-e229-4339-a872-ffa57ccb609c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153758Z:0f03a349-e229-4339-a872-ffa57ccb609c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:37:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-request-id": [ - "2af4d173-f595-4b0b-9f40-c4f670636683" - ], - "x-ms-correlation-request-id": [ - "2af4d173-f595-4b0b-9f40-c4f670636683" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153814Z:2af4d173-f595-4b0b-9f40-c4f670636683" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:38:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" - ], - "x-ms-correlation-request-id": [ - "2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153829Z:2d2be2b0-457c-4c81-bf9c-83af02e6fb2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:38:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-request-id": [ - "ce575445-2880-4511-87af-128bc94958d2" - ], - "x-ms-correlation-request-id": [ - "ce575445-2880-4511-87af-128bc94958d2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153857Z:ce575445-2880-4511-87af-128bc94958d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:38:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-request-id": [ - "e418a948-fed3-47cf-b152-14d4c8d1ab5c" - ], - "x-ms-correlation-request-id": [ - "e418a948-fed3-47cf-b152-14d4c8d1ab5c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153912Z:e418a948-fed3-47cf-b152-14d4c8d1ab5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:39:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-request-id": [ - "b9364f86-be30-488e-acc1-e6c8839d4f09" - ], - "x-ms-correlation-request-id": [ - "b9364f86-be30-488e-acc1-e6c8839d4f09" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153928Z:b9364f86-be30-488e-acc1-e6c8839d4f09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:39:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-request-id": [ - "18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" - ], - "x-ms-correlation-request-id": [ - "18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153943Z:18391a2a-e1b2-4bb1-bab2-8a0d8d50c8e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:39:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-request-id": [ - "d4e61e52-789a-416e-87fd-3b4351234904" - ], - "x-ms-correlation-request-id": [ - "d4e61e52-789a-416e-87fd-3b4351234904" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T153959Z:d4e61e52-789a-416e-87fd-3b4351234904" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:39:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "be5287c1-1a78-4cc0-a3ca-54565ecafff5" - ], - "x-ms-correlation-request-id": [ - "be5287c1-1a78-4cc0-a3ca-54565ecafff5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154014Z:be5287c1-1a78-4cc0-a3ca-54565ecafff5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:40:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-request-id": [ - "6eb7aed0-1a9b-41a4-9456-6f3eb510703e" - ], - "x-ms-correlation-request-id": [ - "6eb7aed0-1a9b-41a4-9456-6f3eb510703e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154029Z:6eb7aed0-1a9b-41a4-9456-6f3eb510703e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:40:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" - ], - "x-ms-correlation-request-id": [ - "440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154045Z:440ad64e-8a8c-4bff-b974-5cc0d3cf43d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:40:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "deba1b52-781c-4ce1-beea-6a552b95ed3b" - ], - "x-ms-correlation-request-id": [ - "deba1b52-781c-4ce1-beea-6a552b95ed3b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154100Z:deba1b52-781c-4ce1-beea-6a552b95ed3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:41:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" - ], - "x-ms-correlation-request-id": [ - "df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154116Z:df0e6d1c-fdd2-47b8-bf78-90b4a5e19296" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:41:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "8304c790-a722-4010-9b14-48611d9851f0" - ], - "x-ms-correlation-request-id": [ - "8304c790-a722-4010-9b14-48611d9851f0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154131Z:8304c790-a722-4010-9b14-48611d9851f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:41:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "39d621f4-752b-4107-8986-604e6b491856" - ], - "x-ms-correlation-request-id": [ - "39d621f4-752b-4107-8986-604e6b491856" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154146Z:39d621f4-752b-4107-8986-604e6b491856" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:41:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "0b83ee5d-a418-46fa-b47a-d0b907db36f0" - ], - "x-ms-correlation-request-id": [ - "0b83ee5d-a418-46fa-b47a-d0b907db36f0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154202Z:0b83ee5d-a418-46fa-b47a-d0b907db36f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:42:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "0676869b-4d99-41e3-8651-6a5c28a2cd2b" - ], - "x-ms-correlation-request-id": [ - "0676869b-4d99-41e3-8651-6a5c28a2cd2b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154217Z:0676869b-4d99-41e3-8651-6a5c28a2cd2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:42:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-request-id": [ - "6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" - ], - "x-ms-correlation-request-id": [ - "6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154232Z:6d6be9b3-3bcd-45a2-be02-9fd4d1c95184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:42:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "bd0e1b01-6f54-4e84-b134-8695b85f244e" - ], - "x-ms-correlation-request-id": [ - "bd0e1b01-6f54-4e84-b134-8695b85f244e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154248Z:bd0e1b01-6f54-4e84-b134-8695b85f244e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:42:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-request-id": [ - "e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" - ], - "x-ms-correlation-request-id": [ - "e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154303Z:e8dcca5f-6b78-4966-b0c2-e6cc84f08e57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:43:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "c12898de-bd73-4cab-b516-0cdb08fad972" - ], - "x-ms-correlation-request-id": [ - "c12898de-bd73-4cab-b516-0cdb08fad972" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154318Z:c12898de-bd73-4cab-b516-0cdb08fad972" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:43:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-request-id": [ - "cb096604-4b94-4754-ab01-de89b8fd0369" - ], - "x-ms-correlation-request-id": [ - "cb096604-4b94-4754-ab01-de89b8fd0369" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154334Z:cb096604-4b94-4754-ab01-de89b8fd0369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:43:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "7160f4c4-a4c8-4fc3-9509-a50eda319c71" - ], - "x-ms-correlation-request-id": [ - "7160f4c4-a4c8-4fc3-9509-a50eda319c71" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154349Z:7160f4c4-a4c8-4fc3-9509-a50eda319c71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:43:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-request-id": [ - "1beeae88-7edf-47ec-b7d3-927297c8a485" - ], - "x-ms-correlation-request-id": [ - "1beeae88-7edf-47ec-b7d3-927297c8a485" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154405Z:1beeae88-7edf-47ec-b7d3-927297c8a485" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:44:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "ffbb022e-df07-4dce-a82c-f3834848e4ee" - ], - "x-ms-correlation-request-id": [ - "ffbb022e-df07-4dce-a82c-f3834848e4ee" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154420Z:ffbb022e-df07-4dce-a82c-f3834848e4ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:44:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-request-id": [ - "2d53d129-1035-455b-92f2-cf2476238a60" - ], - "x-ms-correlation-request-id": [ - "2d53d129-1035-455b-92f2-cf2476238a60" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154435Z:2d53d129-1035-455b-92f2-cf2476238a60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:44:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" - ], - "x-ms-correlation-request-id": [ - "d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154451Z:d0ff653d-6d99-41e8-b8f3-c56d63edb5eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:44:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-request-id": [ - "052b051e-912e-4662-86e1-ec47a65324de" - ], - "x-ms-correlation-request-id": [ - "052b051e-912e-4662-86e1-ec47a65324de" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154506Z:052b051e-912e-4662-86e1-ec47a65324de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:45:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "731a2049-51d5-481f-b7bc-fc90a1463f11" - ], - "x-ms-correlation-request-id": [ - "731a2049-51d5-481f-b7bc-fc90a1463f11" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154521Z:731a2049-51d5-481f-b7bc-fc90a1463f11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:45:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-request-id": [ - "d47dafbc-a346-42d9-ae0b-152c676d5075" - ], - "x-ms-correlation-request-id": [ - "d47dafbc-a346-42d9-ae0b-152c676d5075" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154537Z:d47dafbc-a346-42d9-ae0b-152c676d5075" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:45:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-request-id": [ - "dd7aa1d4-a7a4-4f70-a307-9f785b545f01" - ], - "x-ms-correlation-request-id": [ - "dd7aa1d4-a7a4-4f70-a307-9f785b545f01" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154552Z:dd7aa1d4-a7a4-4f70-a307-9f785b545f01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:45:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-request-id": [ - "90e05790-38b1-4f1b-907e-271738e606c5" - ], - "x-ms-correlation-request-id": [ - "90e05790-38b1-4f1b-907e-271738e606c5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154607Z:90e05790-38b1-4f1b-907e-271738e606c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:46:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-request-id": [ - "e1273768-874c-45e3-83ed-512771ca697c" - ], - "x-ms-correlation-request-id": [ - "e1273768-874c-45e3-83ed-512771ca697c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154623Z:e1273768-874c-45e3-83ed-512771ca697c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:46:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU55MVRUMVZVU0VORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pYzI5MWRHaGpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-request-id": [ - "b8fbef5f-017a-40e0-a7a1-42bb1856c854" - ], - "x-ms-correlation-request-id": [ - "b8fbef5f-017a-40e0-a7a1-42bb1856c854" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T154623Z:b8fbef5f-017a-40e0-a7a1-42bb1856c854" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Oct 2020 15:46:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-VolumeReplication": [ - "ps4849", - "ps197", - "ps5048", - "ps8874", - "ps2690", - "ps7745", - "ps1960", - "ps1605" - ] - }, - "Variables": { - "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" - } -} \ No newline at end of file From ee7bd276f19597b78c1123775dc2b0dd475ed34f Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sat, 7 Nov 2020 15:23:16 +0000 Subject: [PATCH 17/22] update tests recordings --- .../ScenarioTests/BackupTests.ps1 | 2 +- .../TestBackupPolicyCrud.json | 713 +- .../TestBackupPolicyPipelines.json | 663 +- .../TestBackupCrud.json | 1779 ++- .../TestBackupPipelines.json | 1692 +- .../TestPoolCrud.json | 785 +- .../TestPoolPipelines.json | 1088 +- .../TestSnapshotPolicyCrud.json | 636 +- .../TestSnapshotPolicyPipelines.json | 498 +- .../TestVolumePoolChange.json | 4051 ----- .../TestVolumeReplication.json | 12957 +++++++++++++--- .../Backups/UpdateNetAppFilesBackup.cs | 2 +- 12 files changed, 14741 insertions(+), 10125 deletions(-) delete mode 100644 src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 index f4567cc197f4..3daf2ab0c7db 100644 --- a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 @@ -122,7 +122,7 @@ function Test-BackupCrud # Assert-AreEqual $label $getRetrievedBackup.Label # update and check a Backup by name and check again - $updateBackup = Update-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -PoolName $poolName -VolumeName $volName1 -Name $backupName1 -Label $labelUpdate + $updateBackup = Update-AzNetAppFilesBackup -ResourceGroupName $resourceGroup -AccountName $accName1 -Location $backupLocation -PoolName $poolName -VolumeName $volName1 -Name $backupName1 -Label $labelUpdate # service side issue does not return label enable when fixed (ANF-8057) #Assert-AreEqual $labelUpdate $updateBackup.Label diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json index 32626fcc2883..bd82600564b4 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5945?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1621?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23bb4a53-48bb-41a8-938e-d1358d991289" + "dc88b8f9-a6c1-4e68-873f-93e40a940741" ], "Accept-Language": [ "en-US" @@ -22,7 +22,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "36" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "990697c8-cab0-478c-a355-713d5ac23e97" + "e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" ], "x-ms-correlation-request-id": [ - "990697c8-cab0-478c-a355-713d5ac23e97" + "e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140531Z:990697c8-cab0-478c-a355-713d5ac23e97" + "FRANCESOUTH:20201106T134205Z:e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:05:30 GMT" + "Fri, 06 Nov 2020 13:42:04 GMT" ], "Content-Length": [ - "170" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945\",\r\n \"name\": \"ps5945\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621\",\r\n \"name\": \"ps1621\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fbdf96d0-a265-4a12-9421-269f2fe6af82" + "704a31ea-5662-4027-af6a-ac16ada5fba6" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "77" + "80" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A05%3A35.6763712Z'\"" + "W/\"datetime'2020-11-06T13%3A42%3A11.4887775Z'\"" ], "x-ms-request-id": [ - "1ae3814c-659b-4ff9-b68a-63d0eb05ce43" + "6159270d-13e6-4187-af43-f380d0eb7cb7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0a1c209a-011d-45ab-a4af-7af85a1a9370?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "08c375e4-17a0-4ea6-84b3-df964fccc7b1" + "4109df54-0b03-403e-a2c0-7c655c0ad2a7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140536Z:08c375e4-17a0-4ea6-84b3-df964fccc7b1" + "FRANCESOUTH:20201106T134212Z:4109df54-0b03-403e-a2c0-7c655c0ad2a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:05:36 GMT" + "Fri, 06 Nov 2020 13:42:12 GMT" ], "Content-Length": [ - "345" + "346" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\",\r\n \"name\": \"ps3902\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A05%3A35.6763712Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430\",\r\n \"name\": \"ps430\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A42%3A11.4887775Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2ViYWY5ZjA3LTYyYmItNDY2My1hZmYzLWVmODQ4ZWZlNTdkZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0a1c209a-011d-45ab-a4af-7af85a1a9370?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzBhMWMyMDlhLTAxMWQtNDVhYi1hNGFmLTdhZjg1YTFhOTM3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "17ed1b69-3857-405a-8b05-a86adb2d917a" + "577e9ef2-774e-4142-acd3-f3c69d2547b1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "efb7d6df-ee7e-42ab-b78c-ab68e94ffb34" + "77bdc176-ed52-4c33-b08e-bcffb8cba1cf" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140606Z:efb7d6df-ee7e-42ab-b78c-ab68e94ffb34" + "FRANCESOUTH:20201106T134243Z:77bdc176-ed52-4c33-b08e-bcffb8cba1cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,10 +201,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:06 GMT" + "Fri, 06 Nov 2020 13:42:42 GMT" ], "Content-Length": [ - "493" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ebaf9f07-62bb-4663-aff3-ef848efe57dd\",\r\n \"name\": \"ebaf9f07-62bb-4663-aff3-ef848efe57dd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:05:35.6338312Z\",\r\n \"endTime\": \"2020-10-26T14:05:35.7488246Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/0a1c209a-011d-45ab-a4af-7af85a1a9370\",\r\n \"name\": \"0a1c209a-011d-45ab-a4af-7af85a1a9370\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:42:11.4137648Z\",\r\n \"endTime\": \"2020-11-06T13:42:11.5856835Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A05%3A35.7434179Z'\"" + "W/\"datetime'2020-11-06T13%3A42%3A11.5858484Z'\"" ], "x-ms-request-id": [ - "842b967d-3ab1-42a5-b925-95de40671460" + "bb1d1193-02b6-433c-bbeb-485bf8c83e43" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "d5fca569-9298-456c-be08-e69d4c503a83" + "310b0e09-8368-4796-941c-69c4b7efeff6" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140607Z:d5fca569-9298-456c-be08-e69d4c503a83" + "FRANCESOUTH:20201106T134243Z:310b0e09-8368-4796-941c-69c4b7efeff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,10 +270,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:06 GMT" + "Fri, 06 Nov 2020 13:42:43 GMT" ], "Content-Length": [ - "346" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902\",\r\n \"name\": \"ps3902\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A05%3A35.7434179Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430\",\r\n \"name\": \"ps430\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A42%3A11.5858484Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed310911-28ce-47e2-8dde-10f90e33b768" + "b030d009-6d0d-44e3-b20b-9fe862ec550e" ], "Accept-Language": [ "en-US" @@ -307,7 +307,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "203" + "206" ] }, "ResponseHeaders": { @@ -318,13 +318,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A08.3841967Z'\"" + "W/\"datetime'2020-11-06T13%3A42%3A45.0914561Z'\"" ], "x-ms-request-id": [ - "c64b5e7a-7733-431d-b6a1-ecb957e32537" + "7cf7df89-418d-4b99-a662-da74c9796fda" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/fae18126-8b83-46f3-b0c5-42d6fcad5cf4?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -342,10 +342,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "701fb71d-eff7-4745-983b-d7950557817e" + "6b1843b3-d036-43b7-bfb2-159fc578fdad" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140609Z:701fb71d-eff7-4745-983b-d7950557817e" + "FRANCESOUTH:20201106T134246Z:6b1843b3-d036-43b7-bfb2-159fc578fdad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:09 GMT" + "Fri, 06 Nov 2020 13:42:45 GMT" ], "Content-Length": [ - "472" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,12 +366,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.3841967Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A42%3A45.0914561Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2UzZWI3YTVmLWJmNDYtNDU5My1iOTlmLWQ4Nzc0MWEzMzA5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/fae18126-8b83-46f3-b0c5-42d6fcad5cf4?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2ZhZTE4MTI2LThiODMtNDZmMy1iMGM1LTQyZDZmY2FkNWNmND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -390,7 +390,7 @@ "no-cache" ], "x-ms-request-id": [ - "a0579f0a-329a-42c1-9bbd-143f5fee3606" + "24fdc05e-a6fa-4c74-b5d2-eea29406d7ad" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -408,10 +408,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "4dd45e3e-cbeb-42bf-a7a3-41c7014d64ff" + "fd5ae1c8-4343-4a95-ba19-b8bfdf0c5d35" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140639Z:4dd45e3e-cbeb-42bf-a7a3-41c7014d64ff" + "FRANCESOUTH:20201106T134316Z:fd5ae1c8-4343-4a95-ba19-b8bfdf0c5d35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,10 +420,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:38 GMT" + "Fri, 06 Nov 2020 13:43:16 GMT" ], "Content-Length": [ - "514" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,12 +432,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/e3eb7a5f-bf46-4593-b99f-d87741a33097\",\r\n \"name\": \"e3eb7a5f-bf46-4593-b99f-d87741a33097\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:06:08.312143Z\",\r\n \"endTime\": \"2020-10-26T14:06:08.5544142Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/fae18126-8b83-46f3-b0c5-42d6fcad5cf4\",\r\n \"name\": \"fae18126-8b83-46f3-b0c5-42d6fcad5cf4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:42:45.0342959Z\",\r\n \"endTime\": \"2020-11-06T13:42:45.2999783Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -456,10 +456,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + "W/\"datetime'2020-11-06T13%3A42%3A45.3026119Z'\"" ], "x-ms-request-id": [ - "cb5a9cdd-d943-4b94-a316-7fdb80c1a308" + "13035589-005a-4329-bd32-6aae99230774" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -477,10 +477,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "2a028065-0910-4ff3-8b48-50e077ee95fb" + "775af5e0-61f8-4f3a-84fc-ad18ef90725c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140639Z:2a028065-0910-4ff3-8b48-50e077ee95fb" + "FRANCESOUTH:20201106T134316Z:775af5e0-61f8-4f3a-84fc-ad18ef90725c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,10 +489,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:38 GMT" + "Fri, 06 Nov 2020 13:43:16 GMT" ], "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,17 +501,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A42%3A45.3026119Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f72b119-c95b-4f1e-aaaa-3735e76470ee" + "6ce109c1-7ab9-4bce-b1b9-919d7db0d0a8" ], "Accept-Language": [ "en-US" @@ -531,10 +531,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + "W/\"datetime'2020-11-06T13%3A42%3A45.3026119Z'\"" ], "x-ms-request-id": [ - "12b12003-d1fe-4a71-87b1-8e582abbca8b" + "0d768a3a-c4ac-4ca6-8668-23b6b63ae6dc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -552,10 +552,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "76c931a1-60cf-48e8-b7c4-45ada275faa2" + "3d76d9df-3d98-459b-9566-ba95cb07f794" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140640Z:76c931a1-60cf-48e8-b7c4-45ada275faa2" + "FRANCESOUTH:20201106T134317Z:3d76d9df-3d98-459b-9566-ba95cb07f794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,10 +564,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:39 GMT" + "Fri, 06 Nov 2020 13:43:17 GMT" ], "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,17 +576,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A42%3A45.3026119Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26111936-3b49-423c-8d2a-f7e4a9409f5c" + "b42d4cb3-e29e-420a-a0bf-47bf08fb4355" ], "Accept-Language": [ "en-US" @@ -606,10 +606,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + "W/\"datetime'2020-11-06T13%3A43%3A17.9847694Z'\"" ], "x-ms-request-id": [ - "b22a31f8-c13b-42d1-aa10-da7002e5f775" + "3a2cc763-7b90-4af6-b433-565bf9f8eca6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -627,10 +627,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "2de4b9e2-df76-4677-8b2a-c22313a67f94" + "860ec224-66e5-449e-857a-ad61a6aa4225" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140713Z:2de4b9e2-df76-4677-8b2a-c22313a67f94" + "FRANCESOUTH:20201106T134352Z:860ec224-66e5-449e-857a-ad61a6aa4225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,10 +639,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:13 GMT" + "Fri, 06 Nov 2020 13:43:51 GMT" ], "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,17 +651,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A17.9847694Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 2,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae842625-03b4-44c6-8c73-6e7607f85731" + "9846d1f1-1b4b-4d16-bc6c-ed50183d203e" ], "Accept-Language": [ "en-US" @@ -681,10 +681,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\"" + "W/\"datetime'2020-11-06T13%3A43%3A17.9847694Z'\"" ], "x-ms-request-id": [ - "1d112c77-8738-4600-a275-3e1f12f94e6e" + "3497e278-62d9-4f8b-a774-f8e1a8347738" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -702,10 +702,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "57a45c84-c1d2-44bc-a436-e1bf9b84ba92" + "878c829a-9b44-47b7-8fb6-a8ac38355b7c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140713Z:57a45c84-c1d2-44bc-a436-e1bf9b84ba92" + "FRANCESOUTH:20201106T134352Z:878c829a-9b44-47b7-8fb6-a8ac38355b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,10 +714,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:13 GMT" + "Fri, 06 Nov 2020 13:43:51 GMT" ], "Content-Length": [ - "529" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,17 +726,98 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A17.9847694Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 2,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 2\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d94299e8-3044-4054-992c-19cc4c50ac29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "90" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-06T13%3A43%3A17.5974841Z'\"" + ], + "x-ms-request-id": [ + "1cc2ed93-3a26-480f-a1a4-ad647cd37ac7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "0eab1a09-a6e2-48aa-bbc0-44f5d0c1c58f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134318Z:0eab1a09-a6e2-48aa-bbc0-44f5d0c1c58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:18 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A17.5974841Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 2,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczg5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27001317-c8fa-4ab8-a96f-9cd5641d3db8" + "a18a5d81-949a-447f-83a8-23ad8754cd9d" ], "Accept-Language": [ "en-US" @@ -751,7 +832,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "203" + "206" ] }, "ResponseHeaders": { @@ -762,13 +843,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A41.5733587Z'\"" + "W/\"datetime'2020-11-06T13%3A43%3A19.7790929Z'\"" ], "x-ms-request-id": [ - "e484d0d7-758d-4e4e-860f-6b5d2fe3da82" + "5f8f6e75-b1da-435e-a0d1-cd58df2309f2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c0d5965-75fd-4049-8c99-2fcd385582f7?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -783,13 +864,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "b59fccb8-1817-4190-93fd-900ee02484f4" + "db7c6b5e-d8db-44c6-8b81-e8a69acd2724" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140642Z:b59fccb8-1817-4190-93fd-900ee02484f4" + "FRANCESOUTH:20201106T134320Z:db7c6b5e-d8db-44c6-8b81-e8a69acd2724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,10 +879,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:06:41 GMT" + "Fri, 06 Nov 2020 13:43:20 GMT" ], "Content-Length": [ - "472" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,12 +891,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.5733587Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\",\r\n \"name\": \"ps430/ps898\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A19.7790929Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzY5Y2FjNzk0LWQ0NDMtNDk3Yi05MWNjLWI0YTAzMjhmMGE2Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c0d5965-75fd-4049-8c99-2fcd385582f7?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFjMGQ1OTY1LTc1ZmQtNDA0OS04Yzk5LTJmY2QzODU1ODJmNz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -834,7 +915,7 @@ "no-cache" ], "x-ms-request-id": [ - "4431a616-06b3-49cb-99b7-1be01a69f0b6" + "7408f69b-6343-4002-b425-09ac139a3d61" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -852,10 +933,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "e7ab47b8-aa0e-479d-9d40-f01ff23f447b" + "4abdcd16-10a1-46aa-a0e1-e70843f71f5e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140712Z:e7ab47b8-aa0e-479d-9d40-f01ff23f447b" + "FRANCESOUTH:20201106T134350Z:4abdcd16-10a1-46aa-a0e1-e70843f71f5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -864,10 +945,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:12 GMT" + "Fri, 06 Nov 2020 13:43:50 GMT" ], "Content-Length": [ - "515" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,12 +957,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/69cac794-d443-497b-91cc-b4a0328f0a66\",\r\n \"name\": \"69cac794-d443-497b-91cc-b4a0328f0a66\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:06:41.5189405Z\",\r\n \"endTime\": \"2020-10-26T14:06:41.7212388Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c0d5965-75fd-4049-8c99-2fcd385582f7\",\r\n \"name\": \"1c0d5965-75fd-4049-8c99-2fcd385582f7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:43:19.7224722Z\",\r\n \"endTime\": \"2020-11-06T13:43:19.9412705Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczg5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -900,10 +981,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\"" + "W/\"datetime'2020-11-06T13%3A43%3A19.9302048Z'\"" ], "x-ms-request-id": [ - "85ea8b5c-960f-4872-bd79-7f8268b2f0ba" + "62a298a3-25e5-417c-ac79-ce554d044d25" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -921,10 +1002,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "60fea2c5-44d5-43d4-a0d8-561ab0635a46" + "4d791943-53fb-4ad2-971f-e7266565f691" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140712Z:60fea2c5-44d5-43d4-a0d8-561ab0635a46" + "FRANCESOUTH:20201106T134351Z:4d791943-53fb-4ad2-971f-e7266565f691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +1014,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:12 GMT" + "Fri, 06 Nov 2020 13:43:50 GMT" ], "Content-Length": [ - "529" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,17 +1026,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\",\r\n \"name\": \"ps430/ps898\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A19.9302048Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"07f29db8-2036-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40db82d2-a096-4c4d-ab87-2625b95e647a" + "8736302b-4a36-45d8-a07a-53382e50cad8" ], "Accept-Language": [ "en-US" @@ -975,7 +1056,7 @@ "no-cache" ], "x-ms-request-id": [ - "f817f5a7-0a3d-4d1e-ba87-3f397714cc9c" + "b8d24699-a951-462b-969c-fbcd28957df1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -993,10 +1074,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "ba21f78d-de4d-4cdb-b3e8-9ddd3395c713" + "ad34d9d0-7199-4b36-b4af-5877e8d482bb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140713Z:ba21f78d-de4d-4cdb-b3e8-9ddd3395c713" + "FRANCESOUTH:20201106T134351Z:ad34d9d0-7199-4b36-b4af-5877e8d482bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,7 +1086,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:12 GMT" + "Fri, 06 Nov 2020 13:43:51 GMT" ], "Content-Length": [ "1071" @@ -1017,17 +1098,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A08.5483113Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A17.9847694Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 2,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\",\r\n \"name\": \"ps430/ps898\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A19.9302048Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"07f29db8-2036-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02afef6c-9363-413f-b3d7-93ef508c9f22" + "6f1ee8fa-28d6-4486-9ce1-eea1a216c441" ], "Accept-Language": [ "en-US" @@ -1047,7 +1128,7 @@ "no-cache" ], "x-ms-request-id": [ - "c48d2286-b6d8-4471-b144-78aa2c9d61a7" + "d0515106-7578-4740-9f4c-8d7e9c4dc313" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1065,10 +1146,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "c66dfc46-c2ae-4664-8e34-5c54ac0870df" + "dc9fb84a-fb9c-41a6-bd30-a4344d271bff" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140745Z:c66dfc46-c2ae-4664-8e34-5c54ac0870df" + "FRANCESOUTH:20201106T134423Z:dc9fb84a-fb9c-41a6-bd30-a4344d271bff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,10 +1158,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:44 GMT" + "Fri, 06 Nov 2020 13:44:23 GMT" ], "Content-Length": [ - "541" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A06%3A41.7124553Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\",\r\n \"name\": \"ps430/ps898\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A19.9302048Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"07f29db8-2036-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9449f9ae-896d-4a88-8e0c-5a59e933252e" + "4d97e0b2-c1c3-46e1-a075-a2cc68cad17a" ], "Accept-Language": [ "en-US" @@ -1119,7 +1200,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5f10e90-8f9f-4939-8007-20c2c8eba315" + "130bddfc-bb80-4eba-900b-3b85c2c6b2b7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1137,10 +1218,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "c9641ff3-1fa6-42dc-83e5-d55255665f6e" + "75e4dbff-77f1-4fb3-8311-a919ec4741e7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140816Z:c9641ff3-1fa6-42dc-83e5-d55255665f6e" + "FRANCESOUTH:20201106T134455Z:75e4dbff-77f1-4fb3-8311-a919ec4741e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1149,7 +1230,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:15 GMT" + "Fri, 06 Nov 2020 13:44:54 GMT" ], "Content-Length": [ "12" @@ -1165,13 +1246,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHM0MDQ5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a0499c7-b8cb-4f9e-85f1-2f2954a83c85" + "e48d14d6-6c05-4e23-874d-bb5f25232da1" ], "Accept-Language": [ "en-US" @@ -1191,10 +1272,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1209,16 +1290,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + "c16729f8-0443-411f-a8fc-024be0646d6c" ], "x-ms-correlation-request-id": [ - "0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + "c16729f8-0443-411f-a8fc-024be0646d6c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140714Z:0af2cbc5-dfd7-44b1-9c50-f40ded97013d" + "FRANCESOUTH:20201106T134353Z:c16729f8-0443-411f-a8fc-024be0646d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1227,7 +1308,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:13 GMT" + "Fri, 06 Nov 2020 13:43:52 GMT" ], "Expires": [ "-1" @@ -1240,8 +1321,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzI0MzVmYTllLTk3NjYtNDkxYy1iM2Q4LWFiZTdkMmNiZTQ1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRjODYyZGU3LTNjODctNDM2Yy05MWQ5LTA4MDMwMGU5MTI4ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1260,7 +1341,7 @@ "no-cache" ], "x-ms-request-id": [ - "b6b49063-3ae6-48c2-8d35-575ba3961865" + "14097eb6-e46d-497f-86d9-3b83b5fd576d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1278,10 +1359,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "511e8333-b8d3-4b70-8389-7cf94a564f6b" + "b1f48f24-7f4d-432c-9877-6b86f5edd1fb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140744Z:511e8333-b8d3-4b70-8389-7cf94a564f6b" + "FRANCESOUTH:20201106T134423Z:b1f48f24-7f4d-432c-9877-6b86f5edd1fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,10 +1371,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:43 GMT" + "Fri, 06 Nov 2020 13:44:23 GMT" ], "Content-Length": [ - "515" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1302,12 +1383,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d\",\r\n \"name\": \"2435fa9e-9766-491c-b3d8-abe7d2cbe45d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:07:14.3794003Z\",\r\n \"endTime\": \"2020-10-26T14:07:14.7288794Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284\",\r\n \"name\": \"4c862de7-3c87-436c-91d9-080300e91284\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:43:52.9943615Z\",\r\n \"endTime\": \"2020-11-06T13:43:53.4165012Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2435fa9e-9766-491c-b3d8-abe7d2cbe45d?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzI0MzVmYTllLTk3NjYtNDkxYy1iM2Q4LWFiZTdkMmNiZTQ1ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRjODYyZGU3LTNjODctNDM2Yy05MWQ5LTA4MDMwMGU5MTI4ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1326,7 +1407,7 @@ "no-cache" ], "x-ms-request-id": [ - "1382885d-207d-4961-acb2-490931f4cc1e" + "497a15b8-993a-4ccc-b292-fbb64606fd85" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1344,10 +1425,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "f8af900c-f62c-42b0-9932-1641fa542966" + "5a6b59f6-2058-4548-83b4-5318881f95ff" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140744Z:f8af900c-f62c-42b0-9932-1641fa542966" + "FRANCESOUTH:20201106T134423Z:5a6b59f6-2058-4548-83b4-5318881f95ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,10 +1437,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:43 GMT" + "Fri, 06 Nov 2020 13:44:23 GMT" ], "Content-Length": [ - "528" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,17 +1449,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps4049\",\r\n \"name\": \"ps3902/ps4049\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A07%3A14.4483005Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"652a501a-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152\",\r\n \"name\": \"ps430/ps6152\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A43%3A53.0525903Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"f34b5659-2035-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 2,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM5MDIvYmFja3VwUG9saWNpZXMvcHMyNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczg5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3df06b4b-aae2-43f1-91bf-55439c4c133a" + "3f14aa22-88ce-4483-959e-7129c68360a3" ], "Accept-Language": [ "en-US" @@ -1398,10 +1479,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1416,16 +1497,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-request-id": [ - "611fd217-cf5f-4736-9acd-5758cd91ad71" + "faf79f27-06f9-4152-88b2-974132c011c7" ], "x-ms-correlation-request-id": [ - "611fd217-cf5f-4736-9acd-5758cd91ad71" + "faf79f27-06f9-4152-88b2-974132c011c7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140745Z:611fd217-cf5f-4736-9acd-5758cd91ad71" + "FRANCESOUTH:20201106T134424Z:faf79f27-06f9-4152-88b2-974132c011c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,7 +1515,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:07:44 GMT" + "Fri, 06 Nov 2020 13:44:24 GMT" ], "Expires": [ "-1" @@ -1447,8 +1528,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzFhMWEyZGY3LWYzMjEtNDAwNi1hZGUzLTNmZWYzMjg1ZmE2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkzN2RiYWZhLWM3ZWUtNDhiYS05ZjJmLTZiYzE1MTI5ZDJlZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,7 +1548,7 @@ "no-cache" ], "x-ms-request-id": [ - "88065584-073c-4fe2-8831-fbc31598aea1" + "6dc47524-bdc3-4235-9ff2-9efaebc764a9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1485,10 +1566,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "35f92fa3-5b6f-40e3-a6f0-b5fd62aa8534" + "716dceeb-8bc0-4046-abb4-cfd79562d130" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140816Z:35f92fa3-5b6f-40e3-a6f0-b5fd62aa8534" + "FRANCESOUTH:20201106T134455Z:716dceeb-8bc0-4046-abb4-cfd79562d130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,10 +1578,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:15 GMT" + "Fri, 06 Nov 2020 13:44:54 GMT" ], "Content-Length": [ - "515" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1509,12 +1590,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61\",\r\n \"name\": \"1a1a2df7-f321-4006-ade3-3fef3285fa61\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:07:45.7228156Z\",\r\n \"endTime\": \"2020-10-26T14:07:46.0983863Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee\",\r\n \"name\": \"937dbafa-c7ee-48ba-9f2f-6bc15129d2ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:44:24.8497322Z\",\r\n \"endTime\": \"2020-11-06T13:44:25.2739797Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/1a1a2df7-f321-4006-ade3-3fef3285fa61?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzFhMWEyZGY3LWYzMjEtNDAwNi1hZGUzLTNmZWYzMjg1ZmE2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkzN2RiYWZhLWM3ZWUtNDhiYS05ZjJmLTZiYzE1MTI5ZDJlZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1533,7 +1614,7 @@ "no-cache" ], "x-ms-request-id": [ - "ec3f7cf5-3e80-4309-9c95-b8c54dab39eb" + "2a310fe5-b726-4e94-8558-b5ac7b9606f5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1551,10 +1632,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "2f5c72a8-6ce7-4472-a498-514306b772cb" + "8a639068-84d4-4a87-9967-832250d3b3ff" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140816Z:2f5c72a8-6ce7-4472-a498-514306b772cb" + "FRANCESOUTH:20201106T134455Z:8a639068-84d4-4a87-9967-832250d3b3ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,10 +1644,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:15 GMT" + "Fri, 06 Nov 2020 13:44:54 GMT" ], "Content-Length": [ - "528" + "527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,17 +1656,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5945/providers/Microsoft.NetApp/netAppAccounts/ps3902/backupPolicies/ps2734\",\r\n \"name\": \"ps3902/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A07%3A45.7651986Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"78ee3214-1794-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898\",\r\n \"name\": \"ps430/ps898\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A44%3A24.9100441Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"07f29db8-2036-11eb-bb2e-eaea74ff041b\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5945?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1621?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c396930-817c-48f2-b160-ddf71a8418fd" + "8bfc9f19-8d4a-46cf-94dc-714578c10741" ], "Accept-Language": [ "en-US" @@ -1605,7 +1686,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1614,13 +1695,13 @@ "14998" ], "x-ms-request-id": [ - "0da60bc0-3f12-4898-866b-659db9056f61" + "5c3fe956-a64d-445b-9e17-43ae732b4aaf" ], "x-ms-correlation-request-id": [ - "0da60bc0-3f12-4898-866b-659db9056f61" + "5c3fe956-a64d-445b-9e17-43ae732b4aaf" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140818Z:0da60bc0-3f12-4898-866b-659db9056f61" + "FRANCESOUTH:20201106T134459Z:5c3fe956-a64d-445b-9e17-43ae732b4aaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,7 +1710,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:18 GMT" + "Fri, 06 Nov 2020 13:44:58 GMT" ], "Expires": [ "-1" @@ -1642,8 +1723,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1662,22 +1743,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "478dc955-46ad-44ef-af69-6882e482bb05" + "5c5d24bb-576f-4509-8e69-99ebbc402fc1" ], "x-ms-correlation-request-id": [ - "478dc955-46ad-44ef-af69-6882e482bb05" + "5c5d24bb-576f-4509-8e69-99ebbc402fc1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140833Z:478dc955-46ad-44ef-af69-6882e482bb05" + "FRANCESOUTH:20201106T134514Z:5c5d24bb-576f-4509-8e69-99ebbc402fc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,7 +1767,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:33 GMT" + "Fri, 06 Nov 2020 13:45:13 GMT" ], "Expires": [ "-1" @@ -1699,8 +1780,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1719,22 +1800,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "29eaab0f-ebe2-4e45-9050-ac43ee54d448" + "81591942-f9f0-41fc-abb0-fa27e6f10cb6" ], "x-ms-correlation-request-id": [ - "29eaab0f-ebe2-4e45-9050-ac43ee54d448" + "81591942-f9f0-41fc-abb0-fa27e6f10cb6" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140849Z:29eaab0f-ebe2-4e45-9050-ac43ee54d448" + "FRANCESOUTH:20201106T134530Z:81591942-f9f0-41fc-abb0-fa27e6f10cb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,7 +1824,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:08:49 GMT" + "Fri, 06 Nov 2020 13:45:29 GMT" ], "Expires": [ "-1" @@ -1756,8 +1837,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1776,22 +1857,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-request-id": [ - "73ae02b4-ae55-4b28-a3db-369965f7e7bb" + "afd28912-803f-45de-ba5a-641633a2ef7a" ], "x-ms-correlation-request-id": [ - "73ae02b4-ae55-4b28-a3db-369965f7e7bb" + "afd28912-803f-45de-ba5a-641633a2ef7a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140904Z:73ae02b4-ae55-4b28-a3db-369965f7e7bb" + "FRANCESOUTH:20201106T134545Z:afd28912-803f-45de-ba5a-641633a2ef7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,7 +1881,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:09:04 GMT" + "Fri, 06 Nov 2020 13:45:44 GMT" ], "Expires": [ "-1" @@ -1813,8 +1894,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1833,22 +1914,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-request-id": [ - "3fdaf369-2386-4219-9c6b-34cc358c058e" + "068f0b19-bebe-446c-bb4c-32a60766d9b0" ], "x-ms-correlation-request-id": [ - "3fdaf369-2386-4219-9c6b-34cc358c058e" + "068f0b19-bebe-446c-bb4c-32a60766d9b0" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140919Z:3fdaf369-2386-4219-9c6b-34cc358c058e" + "FRANCESOUTH:20201106T134600Z:068f0b19-bebe-446c-bb4c-32a60766d9b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,7 +1938,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:09:19 GMT" + "Fri, 06 Nov 2020 13:46:00 GMT" ], "Expires": [ "-1" @@ -1870,8 +1951,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1890,22 +1971,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11995" ], "x-ms-request-id": [ - "aaccb502-68d3-4989-b48f-049990ef9c85" + "ded1c880-da3c-4ad9-9d95-641be68677e9" ], "x-ms-correlation-request-id": [ - "aaccb502-68d3-4989-b48f-049990ef9c85" + "ded1c880-da3c-4ad9-9d95-641be68677e9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140935Z:aaccb502-68d3-4989-b48f-049990ef9c85" + "FRANCESOUTH:20201106T134616Z:ded1c880-da3c-4ad9-9d95-641be68677e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,7 +1995,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:09:34 GMT" + "Fri, 06 Nov 2020 13:46:15 GMT" ], "Expires": [ "-1" @@ -1927,8 +2008,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1947,22 +2028,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11994" ], "x-ms-request-id": [ - "dd290265-65bf-41b8-9b54-fa310e134e63" + "8a6c09ab-61ae-4830-98e8-822afec9bb7f" ], "x-ms-correlation-request-id": [ - "dd290265-65bf-41b8-9b54-fa310e134e63" + "8a6c09ab-61ae-4830-98e8-822afec9bb7f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T140950Z:dd290265-65bf-41b8-9b54-fa310e134e63" + "FRANCESOUTH:20201106T134631Z:8a6c09ab-61ae-4830-98e8-822afec9bb7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1971,7 +2052,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:09:50 GMT" + "Fri, 06 Nov 2020 13:46:31 GMT" ], "Expires": [ "-1" @@ -1984,8 +2065,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2004,22 +2085,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11993" ], "x-ms-request-id": [ - "ab8c5add-5827-4920-a7dd-06170bb8c337" + "3b65875d-9a73-41a1-aca6-9c871db8f5fe" ], "x-ms-correlation-request-id": [ - "ab8c5add-5827-4920-a7dd-06170bb8c337" + "3b65875d-9a73-41a1-aca6-9c871db8f5fe" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141005Z:ab8c5add-5827-4920-a7dd-06170bb8c337" + "FRANCESOUTH:20201106T134646Z:3b65875d-9a73-41a1-aca6-9c871db8f5fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2028,7 +2109,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:10:05 GMT" + "Fri, 06 Nov 2020 13:46:46 GMT" ], "Expires": [ "-1" @@ -2041,8 +2122,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2061,22 +2142,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11992" ], "x-ms-request-id": [ - "fd0e0308-ceca-4f69-956e-c93766bfe563" + "b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" ], "x-ms-correlation-request-id": [ - "fd0e0308-ceca-4f69-956e-c93766bfe563" + "b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141020Z:fd0e0308-ceca-4f69-956e-c93766bfe563" + "FRANCESOUTH:20201106T134702Z:b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,7 +2166,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:10:20 GMT" + "Fri, 06 Nov 2020 13:47:01 GMT" ], "Expires": [ "-1" @@ -2098,8 +2179,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2118,22 +2199,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11991" ], "x-ms-request-id": [ - "8f703a51-4d50-4ef2-acb7-f575a386d227" + "720a5754-bc34-4fbb-b8ba-a215c93bfa21" ], "x-ms-correlation-request-id": [ - "8f703a51-4d50-4ef2-acb7-f575a386d227" + "720a5754-bc34-4fbb-b8ba-a215c93bfa21" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141036Z:8f703a51-4d50-4ef2-acb7-f575a386d227" + "FRANCESOUTH:20201106T134717Z:720a5754-bc34-4fbb-b8ba-a215c93bfa21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,7 +2223,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:10:35 GMT" + "Fri, 06 Nov 2020 13:47:17 GMT" ], "Expires": [ "-1" @@ -2155,8 +2236,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,22 +2256,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11990" ], "x-ms-request-id": [ - "02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + "f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" ], "x-ms-correlation-request-id": [ - "02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + "f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141051Z:02fa41e8-5df2-4c91-af7f-2a2d92211b6d" + "FRANCESOUTH:20201106T134732Z:f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2199,7 +2280,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:10:51 GMT" + "Fri, 06 Nov 2020 13:47:32 GMT" ], "Expires": [ "-1" @@ -2212,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2232,16 +2313,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11989" ], "x-ms-request-id": [ - "84d7c0e2-9699-4eba-b04e-7c467f793d7e" + "8c5b3685-856d-44a7-9a6a-09483d2161be" ], "x-ms-correlation-request-id": [ - "84d7c0e2-9699-4eba-b04e-7c467f793d7e" + "8c5b3685-856d-44a7-9a6a-09483d2161be" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141106Z:84d7c0e2-9699-4eba-b04e-7c467f793d7e" + "FRANCESOUTH:20201106T134748Z:8c5b3685-856d-44a7-9a6a-09483d2161be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2250,7 +2331,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:11:06 GMT" + "Fri, 06 Nov 2020 13:47:48 GMT" ], "Expires": [ "-1" @@ -2263,8 +2344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2283,16 +2364,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11988" ], "x-ms-request-id": [ - "98776873-6ef3-47b8-b016-f757f81e47ba" + "1f9ce8b1-67d6-462f-947e-ef3cbff04676" ], "x-ms-correlation-request-id": [ - "98776873-6ef3-47b8-b016-f757f81e47ba" + "1f9ce8b1-67d6-462f-947e-ef3cbff04676" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T141106Z:98776873-6ef3-47b8-b016-f757f81e47ba" + "FRANCESOUTH:20201106T134748Z:1f9ce8b1-67d6-462f-947e-ef3cbff04676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2301,7 +2382,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:11:06 GMT" + "Fri, 06 Nov 2020 13:47:48 GMT" ], "Expires": [ "-1" @@ -2316,11 +2397,11 @@ ], "Names": { "Test-BackupPolicyCrud": [ - "ps5945", - "ps3902", - "ps4049", - "ps2734", - "ps9044" + "ps1621", + "ps430", + "ps6152", + "ps898", + "ps732" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json index faf6e873959f..0318836bfb79 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3849?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17055ef9-dcdc-4dec-926c-0aa609dd1fad" + "39b86dc3-e311-4f51-ac4f-c396bfdbdb24" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "66522c6d-9f84-47dd-936d-6fa9d157a6b4" + "e85562d6-cd69-469c-862d-765901b185e1" ], "x-ms-correlation-request-id": [ - "66522c6d-9f84-47dd-936d-6fa9d157a6b4" + "e85562d6-cd69-469c-862d-765901b185e1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144828Z:66522c6d-9f84-47dd-936d-6fa9d157a6b4" + "FRANCESOUTH:20201106T134756Z:e85562d6-cd69-469c-862d-765901b185e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:48:27 GMT" + "Fri, 06 Nov 2020 13:47:56 GMT" ], "Content-Length": [ "170" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997\",\r\n \"name\": \"ps1997\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849\",\r\n \"name\": \"ps3849\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9c795a5-df50-44e6-931d-c3fc91a0b94c" + "dfd1ca23-3c5d-491b-9a27-8e47ecd22ba8" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A48%3A32.2868138Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A03.007979Z'\"" ], "x-ms-request-id": [ - "b8140f24-53d9-4189-a12f-4710c09356ea" + "9241eb3b-9954-4ee0-b722-445ede0885cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6e9e1405-6804-4390-b2d5-39c52d5fae62?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -120,13 +120,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f127b845-007d-429c-b573-2e97c5217351" + "fea480be-d8fc-4980-b3ec-0dab83accaff" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144833Z:f127b845-007d-429c-b573-2e97c5217351" + "FRANCESOUTH:20201106T134804Z:fea480be-d8fc-4980-b3ec-0dab83accaff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:48:32 GMT" + "Fri, 06 Nov 2020 13:48:03 GMT" ], "Content-Length": [ - "317" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.2868138Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352\",\r\n \"name\": \"ps2352\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A03.007979Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzE3ZDdiMDEyLTVmNGYtNGNlYi1iYzk5LTEwOTljZjZkZDYzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6e9e1405-6804-4390-b2d5-39c52d5fae62?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzZlOWUxNDA1LTY4MDQtNDM5MC1iMmQ1LTM5YzUyZDVmYWU2Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "8f2936b8-a8b0-40c6-a49d-97d8b24759c6" + "c335b610-0c67-400d-9f48-f80d1681eec9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -186,13 +186,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "4044515f-3b94-4dbd-af1b-4de28919984f" + "fdc7260d-4ff4-4b2e-8856-7cdd5529826a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144903Z:4044515f-3b94-4dbd-af1b-4de28919984f" + "FRANCESOUTH:20201106T134834Z:fdc7260d-4ff4-4b2e-8856-7cdd5529826a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:02 GMT" + "Fri, 06 Nov 2020 13:48:34 GMT" ], "Content-Length": [ "493" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/17d7b012-5f4f-4ceb-bc99-1099cf6dd633\",\r\n \"name\": \"17d7b012-5f4f-4ceb-bc99-1099cf6dd633\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:48:32.2207133Z\",\r\n \"endTime\": \"2020-10-26T14:48:32.3500504Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6e9e1405-6804-4390-b2d5-39c52d5fae62\",\r\n \"name\": \"6e9e1405-6804-4390-b2d5-39c52d5fae62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:48:02.9342146Z\",\r\n \"endTime\": \"2020-11-06T13:48:03.1427072Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\"" ], "x-ms-request-id": [ - "bd8e78d6-25d3-4bb7-acc1-c62faf4e296e" + "e5143d52-41b9-4977-8a6b-3d5af3b11666" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -255,13 +255,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "5959b66c-1357-4983-a265-ab70d4384aef" + "d688cb7f-90b3-4c58-a843-70ebbfb26d3c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144903Z:5959b66c-1357-4983-a265-ab70d4384aef" + "FRANCESOUTH:20201106T134834Z:d688cb7f-90b3-4c58-a843-70ebbfb26d3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:02 GMT" + "Fri, 06 Nov 2020 13:48:34 GMT" ], "Content-Length": [ "318" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352\",\r\n \"name\": \"ps2352\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "235a2262-0f28-4f10-a1a3-002048e321b2" + "5ae147d9-a8b7-48c2-b486-d7c659a44445" ], "Accept-Language": [ "en-US" @@ -312,10 +312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\"" ], "x-ms-request-id": [ - "11a5b98c-00c2-4fde-a2f0-18203f125578" + "a58c1133-9ee9-441e-b222-d90eb34a4b2d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -330,13 +330,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "c85820cd-f10e-4c3d-bf9f-a006b74c0d07" + "5db98ddd-f9ea-4ed9-aea8-22119e7cac83" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144903Z:c85820cd-f10e-4c3d-bf9f-a006b74c0d07" + "FRANCESOUTH:20201106T134834Z:5db98ddd-f9ea-4ed9-aea8-22119e7cac83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,7 +345,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:02 GMT" + "Fri, 06 Nov 2020 13:48:34 GMT" ], "Content-Length": [ "318" @@ -357,17 +357,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352\",\r\n \"name\": \"ps2352\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1Mjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85dad99b-e32c-4dcc-9b0a-d38361db7b62" + "b8183624-bf7d-4fc0-8160-052653a8cbbc" ], "Accept-Language": [ "en-US" @@ -387,10 +387,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\"" ], "x-ms-request-id": [ - "a234b62b-8138-4d6a-bb0c-71fb811cb646" + "813998ee-212c-4109-809f-ae1d41cf7a1b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -405,13 +405,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-correlation-request-id": [ - "3eba00e2-af57-4ecf-9bb9-0f3ddb19e05c" + "48651351-2c44-4634-b376-9547b123f63b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144936Z:3eba00e2-af57-4ecf-9bb9-0f3ddb19e05c" + "FRANCESOUTH:20201106T134907Z:48651351-2c44-4634-b376-9547b123f63b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,7 +420,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:35 GMT" + "Fri, 06 Nov 2020 13:49:07 GMT" ], "Content-Length": [ "318" @@ -432,17 +432,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528\",\r\n \"name\": \"ps6528\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A48%3A32.3468558Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352\",\r\n \"name\": \"ps2352\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A03.1330707Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTIvYmFja3VwUG9saWNpZXMvcHM1NjY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7bfc2a4-73bb-4857-95ec-9fb7a40fbfca" + "e51e4ac4-d9c5-47b3-9f23-b8bd38cb1758" ], "Accept-Language": [ "en-US" @@ -468,13 +468,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A49%3A04.9027451Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A36.3116053Z'\"" ], "x-ms-request-id": [ - "bf3d8dd5-73f1-417e-8f09-fedcc02774bb" + "0debcd0c-4a99-474a-afb4-c302b064ccca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/acc1b518-62a8-4c88-a881-b6490f991f18?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -489,13 +489,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "5896cd15-cae7-4ed2-ad47-a479c0465932" + "00139540-2a76-4270-be2f-b5452cb94af7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144905Z:5896cd15-cae7-4ed2-ad47-a479c0465932" + "FRANCESOUTH:20201106T134837Z:00139540-2a76-4270-be2f-b5452cb94af7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,10 +504,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:04 GMT" + "Fri, 06 Nov 2020 13:48:37 GMT" ], "Content-Length": [ - "472" + "470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,12 +516,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A04.9027451Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566\",\r\n \"name\": \"ps2352/ps566\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A36.3116053Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2EyZTU3OWZiLTM5ZGQtNGIwZC04MTEwLTZlYmYzMzQ0MDQ2Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/acc1b518-62a8-4c88-a881-b6490f991f18?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2FjYzFiNTE4LTYyYTgtNGM4OC1hODgxLWI2NDkwZjk5MWYxOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -540,7 +540,7 @@ "no-cache" ], "x-ms-request-id": [ - "274bfaed-13c5-46f4-9120-5d11462464dc" + "d9de78e8-b201-4d8b-afc8-652ef1463787" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -555,13 +555,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "25f77a29-cffb-4c17-bbab-324d71b67e91" + "50947837-011e-4219-8619-eeb00895230b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144935Z:25f77a29-cffb-4c17-bbab-324d71b67e91" + "FRANCESOUTH:20201106T134907Z:50947837-011e-4219-8619-eeb00895230b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,10 +570,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:35 GMT" + "Fri, 06 Nov 2020 13:49:06 GMT" ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,12 +582,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a2e579fb-39dd-4b0d-8110-6ebf3344046c\",\r\n \"name\": \"a2e579fb-39dd-4b0d-8110-6ebf3344046c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-26T14:49:04.8161873Z\",\r\n \"endTime\": \"2020-10-26T14:49:05.0908669Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/acc1b518-62a8-4c88-a881-b6490f991f18\",\r\n \"name\": \"acc1b518-62a8-4c88-a881-b6490f991f18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:48:36.2542463Z\",\r\n \"endTime\": \"2020-11-06T13:48:36.6086436Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTIvYmFja3VwUG9saWNpZXMvcHM1NjY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A49%3A05.087876Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A36.5998192Z'\"" ], "x-ms-request-id": [ - "a1b5daca-8985-4c00-b02c-693337323040" + "3301053a-304c-4dd2-82fd-4ab4c8d9951d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -624,13 +624,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11995" ], "x-ms-correlation-request-id": [ - "c97b9c30-4d5b-4651-89e4-7c1d70da70ac" + "2e52980d-3d6c-4ecf-9677-399e26d0ff7d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144936Z:c97b9c30-4d5b-4651-89e4-7c1d70da70ac" + "FRANCESOUTH:20201106T134907Z:2e52980d-3d6c-4ecf-9677-399e26d0ff7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,10 +639,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:35 GMT" + "Fri, 06 Nov 2020 13:49:06 GMT" ], "Content-Length": [ - "528" + "527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,17 +651,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A05.087876Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"64e7123c-179a-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566\",\r\n \"name\": \"ps2352/ps566\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A36.5998192Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"c4b1d6b6-2036-11eb-b21f-863486e19f06\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY1MjgvYmFja3VwUG9saWNpZXMvcHMyOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTIvYmFja3VwUG9saWNpZXMvcHM1NjY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "856591c3-9085-42e2-93fd-73be40811828" + "5f3016d4-c118-497b-bfe3-881110df64c9" ], "Accept-Language": [ "en-US" @@ -681,10 +681,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-26T14%3A49%3A05.087876Z'\"" + "W/\"datetime'2020-11-06T13%3A48%3A36.5998192Z'\"" ], "x-ms-request-id": [ - "e252001f-8fac-4730-9e46-afbf3a295814" + "eef8a41f-9d88-48cb-ad39-f1d23d592d19" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -699,13 +699,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11993" ], "x-ms-correlation-request-id": [ - "d746ab04-4583-4c9c-8e8f-184899084db0" + "fe9bcb67-05ae-470d-ae95-48310b8c080f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144936Z:d746ab04-4583-4c9c-8e8f-184899084db0" + "FRANCESOUTH:20201106T134908Z:fe9bcb67-05ae-470d-ae95-48310b8c080f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,10 +714,10 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:36 GMT" + "Fri, 06 Nov 2020 13:49:07 GMT" ], "Content-Length": [ - "528" + "527" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,17 +726,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1997/providers/Microsoft.NetApp/netAppAccounts/ps6528/backupPolicies/ps2966\",\r\n \"name\": \"ps6528/ps2966\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-26T14%3A49%3A05.087876Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"64e7123c-179a-11eb-a8de-960e45ee010d\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566\",\r\n \"name\": \"ps2352/ps566\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A48%3A36.5998192Z'\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"c4b1d6b6-2036-11eb-b21f-863486e19f06\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3849?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c20c42e-44ca-4ed5-a26d-75e5d6a0d3aa" + "5e3f36bb-f994-47ec-a376-50ed42899949" ], "Accept-Language": [ "en-US" @@ -756,22 +756,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "b83a46cd-2951-4c36-9de5-c8c1e83511f3" + "366a907d-a611-4a94-87b7-3b979c35c73f" ], "x-ms-correlation-request-id": [ - "b83a46cd-2951-4c36-9de5-c8c1e83511f3" + "366a907d-a611-4a94-87b7-3b979c35c73f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144938Z:b83a46cd-2951-4c36-9de5-c8c1e83511f3" + "FRANCESOUTH:20201106T134910Z:366a907d-a611-4a94-87b7-3b979c35c73f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,7 +780,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:38 GMT" + "Fri, 06 Nov 2020 13:49:09 GMT" ], "Expires": [ "-1" @@ -793,8 +793,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,7 +813,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -822,13 +822,13 @@ "11999" ], "x-ms-request-id": [ - "c420c410-dc6f-43a0-84f1-d9710c62d9d1" + "055ed3bf-978b-4c96-9f10-4c964e1cce47" ], "x-ms-correlation-request-id": [ - "c420c410-dc6f-43a0-84f1-d9710c62d9d1" + "055ed3bf-978b-4c96-9f10-4c964e1cce47" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T144954Z:c420c410-dc6f-43a0-84f1-d9710c62d9d1" + "FRANCESOUTH:20201106T134925Z:055ed3bf-978b-4c96-9f10-4c964e1cce47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -837,7 +837,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:49:54 GMT" + "Fri, 06 Nov 2020 13:49:24 GMT" ], "Expires": [ "-1" @@ -850,8 +850,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,7 +870,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -879,13 +879,13 @@ "11998" ], "x-ms-request-id": [ - "ed9e6cbf-6596-4ef3-8726-3d2140010726" + "248b2cf2-9703-444f-ad3a-5214e3be87b1" ], "x-ms-correlation-request-id": [ - "ed9e6cbf-6596-4ef3-8726-3d2140010726" + "248b2cf2-9703-444f-ad3a-5214e3be87b1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145009Z:ed9e6cbf-6596-4ef3-8726-3d2140010726" + "FRANCESOUTH:20201106T134940Z:248b2cf2-9703-444f-ad3a-5214e3be87b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,7 +894,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:50:09 GMT" + "Fri, 06 Nov 2020 13:49:40 GMT" ], "Expires": [ "-1" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -927,7 +927,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -936,13 +936,13 @@ "11997" ], "x-ms-request-id": [ - "5724a93d-fa16-4dbd-89a3-4b39acd91f84" + "258857c7-ffde-4561-9a4b-791b16576b25" ], "x-ms-correlation-request-id": [ - "5724a93d-fa16-4dbd-89a3-4b39acd91f84" + "258857c7-ffde-4561-9a4b-791b16576b25" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145024Z:5724a93d-fa16-4dbd-89a3-4b39acd91f84" + "FRANCESOUTH:20201106T134956Z:258857c7-ffde-4561-9a4b-791b16576b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +951,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:50:24 GMT" + "Fri, 06 Nov 2020 13:49:55 GMT" ], "Expires": [ "-1" @@ -964,8 +964,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,7 +984,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -993,13 +993,13 @@ "11996" ], "x-ms-request-id": [ - "1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + "7e0045cf-095e-4400-81a6-094a74384cf6" ], "x-ms-correlation-request-id": [ - "1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + "7e0045cf-095e-4400-81a6-094a74384cf6" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145039Z:1963fe7a-dc2f-43a3-aaf4-c7a993829dd8" + "FRANCESOUTH:20201106T135011Z:7e0045cf-095e-4400-81a6-094a74384cf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +1008,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:50:39 GMT" + "Fri, 06 Nov 2020 13:50:10 GMT" ], "Expires": [ "-1" @@ -1021,8 +1021,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1041,7 +1041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1050,13 +1050,13 @@ "11995" ], "x-ms-request-id": [ - "fac35ac7-9dde-45a0-9374-869b48d4b55a" + "5b82e43b-3323-460f-9c49-b1742c1b5953" ], "x-ms-correlation-request-id": [ - "fac35ac7-9dde-45a0-9374-869b48d4b55a" + "5b82e43b-3323-460f-9c49-b1742c1b5953" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145055Z:fac35ac7-9dde-45a0-9374-869b48d4b55a" + "FRANCESOUTH:20201106T135026Z:5b82e43b-3323-460f-9c49-b1742c1b5953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,7 +1065,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:50:54 GMT" + "Fri, 06 Nov 2020 13:50:26 GMT" ], "Expires": [ "-1" @@ -1078,8 +1078,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,7 +1098,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1107,13 +1107,13 @@ "11994" ], "x-ms-request-id": [ - "4b559385-5536-41e0-88ba-045e62156fa6" + "afb48779-ceff-4154-acc8-dd0ba940e7e1" ], "x-ms-correlation-request-id": [ - "4b559385-5536-41e0-88ba-045e62156fa6" + "afb48779-ceff-4154-acc8-dd0ba940e7e1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145110Z:4b559385-5536-41e0-88ba-045e62156fa6" + "FRANCESOUTH:20201106T135041Z:afb48779-ceff-4154-acc8-dd0ba940e7e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,7 +1122,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:51:09 GMT" + "Fri, 06 Nov 2020 13:50:41 GMT" ], "Expires": [ "-1" @@ -1135,8 +1135,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,7 +1155,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1164,13 +1164,13 @@ "11993" ], "x-ms-request-id": [ - "8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + "adf6738c-3e65-4184-8a43-22ce5371ee1e" ], "x-ms-correlation-request-id": [ - "8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + "adf6738c-3e65-4184-8a43-22ce5371ee1e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145125Z:8dd5ccf5-8980-413d-9b43-0cf6a85ae1f4" + "FRANCESOUTH:20201106T135057Z:adf6738c-3e65-4184-8a43-22ce5371ee1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,7 +1179,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:51:25 GMT" + "Fri, 06 Nov 2020 13:50:56 GMT" ], "Expires": [ "-1" @@ -1192,8 +1192,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1212,7 +1212,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1221,13 +1221,13 @@ "11992" ], "x-ms-request-id": [ - "924dbd25-7430-4181-b6b0-be5db890959a" + "de02cf25-a737-4c97-8518-e95972583cfe" ], "x-ms-correlation-request-id": [ - "924dbd25-7430-4181-b6b0-be5db890959a" + "de02cf25-a737-4c97-8518-e95972583cfe" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145140Z:924dbd25-7430-4181-b6b0-be5db890959a" + "FRANCESOUTH:20201106T135112Z:de02cf25-a737-4c97-8518-e95972583cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,7 +1236,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:51:40 GMT" + "Fri, 06 Nov 2020 13:51:11 GMT" ], "Expires": [ "-1" @@ -1249,8 +1249,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1269,7 +1269,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1278,13 +1278,13 @@ "11991" ], "x-ms-request-id": [ - "8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + "08df6835-b8d6-446f-a8ca-ca86159e9bde" ], "x-ms-correlation-request-id": [ - "8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + "08df6835-b8d6-446f-a8ca-ca86159e9bde" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145156Z:8d9a8e2c-95ff-4f99-b406-6c1a4772e535" + "FRANCESOUTH:20201106T135127Z:08df6835-b8d6-446f-a8ca-ca86159e9bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1293,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:51:55 GMT" + "Fri, 06 Nov 2020 13:51:27 GMT" ], "Expires": [ "-1" @@ -1306,8 +1306,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1325,80 +1325,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-request-id": [ - "78a6b4af-5145-456b-bd11-63865901d04f" - ], - "x-ms-correlation-request-id": [ - "78a6b4af-5145-456b-bd11-63865901d04f" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145211Z:78a6b4af-5145-456b-bd11-63865901d04f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 26 Oct 2020 14:52:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "4a299121-d53a-4d83-b604-75837b732411" + "768986d7-3733-4a61-b1e1-634c261f83c3" ], "x-ms-correlation-request-id": [ - "4a299121-d53a-4d83-b604-75837b732411" + "768986d7-3733-4a61-b1e1-634c261f83c3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145226Z:4a299121-d53a-4d83-b604-75837b732411" + "FRANCESOUTH:20201106T135143Z:768986d7-3733-4a61-b1e1-634c261f83c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,229 +1344,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:52:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "a4b081f6-0b33-43a1-ad2a-d70c059e6275" - ], - "x-ms-correlation-request-id": [ - "a4b081f6-0b33-43a1-ad2a-d70c059e6275" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145242Z:a4b081f6-0b33-43a1-ad2a-d70c059e6275" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 26 Oct 2020 14:52:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "4d05b607-9bcd-47c6-9275-5cfc9b246308" - ], - "x-ms-correlation-request-id": [ - "4d05b607-9bcd-47c6-9275-5cfc9b246308" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145257Z:4d05b607-9bcd-47c6-9275-5cfc9b246308" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 26 Oct 2020 14:52:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "748c96d0-042b-4e65-9cdd-91f18b32584f" - ], - "x-ms-correlation-request-id": [ - "748c96d0-042b-4e65-9cdd-91f18b32584f" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145312Z:748c96d0-042b-4e65-9cdd-91f18b32584f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 26 Oct 2020 14:53:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "c11aa5a3-6445-49eb-8cae-ff39d02bd870" - ], - "x-ms-correlation-request-id": [ - "c11aa5a3-6445-49eb-8cae-ff39d02bd870" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145327Z:c11aa5a3-6445-49eb-8cae-ff39d02bd870" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 26 Oct 2020 14:53:26 GMT" + "Fri, 06 Nov 2020 13:51:42 GMT" ], "Expires": [ "-1" @@ -1642,8 +1357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE5OTctRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNU9UY3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1662,16 +1377,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11989" ], "x-ms-request-id": [ - "4ca2abbe-0355-4787-b33e-121feddafeb7" + "b9804118-3089-4073-8a9f-dec09b033934" ], "x-ms-correlation-request-id": [ - "4ca2abbe-0355-4787-b33e-121feddafeb7" + "b9804118-3089-4073-8a9f-dec09b033934" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201026T145328Z:4ca2abbe-0355-4787-b33e-121feddafeb7" + "FRANCESOUTH:20201106T135143Z:b9804118-3089-4073-8a9f-dec09b033934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1395,7 @@ "nosniff" ], "Date": [ - "Mon, 26 Oct 2020 14:53:27 GMT" + "Fri, 06 Nov 2020 13:51:42 GMT" ], "Expires": [ "-1" @@ -1695,11 +1410,11 @@ ], "Names": { "Test-BackupPolicyPipelines": [ - "ps1997", - "ps6528", - "ps2966", - "ps1057", - "ps9448" + "ps3849", + "ps2352", + "ps566", + "ps7036", + "ps1606" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json index 0c29f78cccc2..8319271ca71c 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4533?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6919?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8fe9fa5-5844-4a59-b36c-aa0a935a01ad" + "cc95fcb8-5c5c-46e5-a36d-addcbb723d85" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "91bc6813-a735-4938-9cc0-562f649d8d29" + "5675ac53-24f7-4bdd-b4ae-ebe066e64487" ], "x-ms-correlation-request-id": [ - "91bc6813-a735-4938-9cc0-562f649d8d29" + "5675ac53-24f7-4bdd-b4ae-ebe066e64487" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092409Z:91bc6813-a735-4938-9cc0-562f649d8d29" + "FRANCESOUTH:20201107T134458Z:5675ac53-24f7-4bdd-b4ae-ebe066e64487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:09 GMT" + "Sat, 07 Nov 2020 13:44:58 GMT" ], "Content-Length": [ "173" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533\",\r\n \"name\": \"ps4533\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919\",\r\n \"name\": \"ps6919\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c02a9266-5940-4b8a-b319-f3a33e9623f5" + "6ca4a31f-1ed3-41f7-af96-60be60ae0656" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + "9e3c83eb-da79-40ba-b339-37a35fdc729d" ], "x-ms-correlation-request-id": [ - "5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + "9e3c83eb-da79-40ba-b339-37a35fdc729d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092410Z:5b462256-5adc-4e4c-b3a1-1c4bf112cedf" + "FRANCESOUTH:20201107T134459Z:9e3c83eb-da79-40ba-b339-37a35fdc729d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:09 GMT" + "Sat, 07 Nov 2020 13:44:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,12 +123,12 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4533-vnet' under resource group 'ps4533' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6919-vnet' under resource group 'ps6919' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + "W/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" ], "x-ms-request-id": [ - "c68fdea9-375f-47a2-a27b-5029305c2c44" + "d0cb51c6-f105-4503-97ff-13c77361e2ed" ], "x-ms-correlation-request-id": [ - "dc45653b-8836-4f54-bd42-d1c0935862f7" + "f2432475-9de2-4d55-93ca-9d6d908c69bb" ], "x-ms-arm-service-request-id": [ - "e1596a10-72df-4aa4-be3a-c2340aae9fd0" + "25e11312-f616-4c9d-a08d-766f18262559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,13 +169,13 @@ "11995" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092421Z:dc45653b-8836-4f54-bd42-d1c0935862f7" + "FRANCESOUTH:20201107T134510Z:f2432475-9de2-4d55-93ca-9d6d908c69bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:21 GMT" + "Sat, 07 Nov 2020 13:45:09 GMT" ], "Content-Length": [ "649" @@ -187,17 +187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"da85afa7-8663-4d22-bb78-cf52660f43d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d2b98d3-685c-499e-b133-a17c4fc64f08" + "e81f105f-9a52-4939-97b3-3dc12e14d712" ], "Accept-Language": [ "en-US" @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + "W/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" ], "x-ms-request-id": [ - "ad3eca4b-2904-4b89-a961-d5c96d14e22c" + "e67f8c28-4219-4c3e-b1d0-4d75424949a9" ], "x-ms-correlation-request-id": [ - "64813585-fadd-4312-a411-7dbee0c532e3" + "aede2ec7-162f-49af-8acb-f3add3e665dc" ], "x-ms-arm-service-request-id": [ - "c4841f3f-84ae-40d9-b4a3-7cff02cdfbdc" + "a86f62fc-3ae1-46b4-90d2-eb21f7dd338e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,13 +239,13 @@ "11994" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092421Z:64813585-fadd-4312-a411-7dbee0c532e3" + "FRANCESOUTH:20201107T134510Z:aede2ec7-162f-49af-8acb-f3add3e665dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:21 GMT" + "Sat, 07 Nov 2020 13:45:09 GMT" ], "Content-Length": [ "649" @@ -257,17 +257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"da85afa7-8663-4d22-bb78-cf52660f43d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "198b37ed-0f94-41c3-a88d-0ac3388731eb" + "40324952-6334-4130-985e-bef94342f903" ], "Accept-Language": [ "en-US" @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\"" + "W/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" ], "x-ms-request-id": [ - "4f493cce-4f01-4665-a77d-163655e9b874" + "2cbe9a7a-a065-4f80-93cf-5c503bc10740" ], "x-ms-correlation-request-id": [ - "6fe01625-9731-4381-85b3-cc1b06f787c9" + "ce80585c-d3a5-41f3-818f-52910a26f0be" ], "x-ms-arm-service-request-id": [ - "f829ab72-f378-42e0-97fb-391c99948e0e" + "f643560a-4d63-43e9-a8d9-2591d0beff39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,13 +309,13 @@ "11993" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092422Z:6fe01625-9731-4381-85b3-cc1b06f787c9" + "FRANCESOUTH:20201107T134510Z:ce80585c-d3a5-41f3-818f-52910a26f0be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:21 GMT" + "Sat, 07 Nov 2020 13:45:10 GMT" ], "Content-Length": [ "649" @@ -327,12 +327,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"f270a4c8-e06a-46a6-9442-d2ff44375cb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"da85afa7-8663-4d22-bb78-cf52660f43d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\"" + "W/\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\"" ], "x-ms-request-id": [ - "28a96ca8-fb59-4e3a-986f-1a340b708598" + "80fdac9a-6a1b-4dfa-8bb9-4640bc99b4c9" ], "x-ms-correlation-request-id": [ - "07a232fa-1bf6-493d-859e-1128ae0a5c4e" + "6a2ec4c3-f078-476a-adcb-e6178111f94d" ], "x-ms-arm-service-request-id": [ - "f5ae425b-5863-4dc2-8aba-db21b834c650" + "83a8c0a6-68c9-43a7-aa06-bfb2f11b3d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,13 +373,13 @@ "11991" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092426Z:07a232fa-1bf6-493d-859e-1128ae0a5c4e" + "FRANCESOUTH:20201107T134515Z:6a2ec4c3-f078-476a-adcb-e6178111f94d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:25 GMT" + "Sat, 07 Nov 2020 13:45:14 GMT" ], "Content-Length": [ "2184" @@ -391,17 +391,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e36b228-6f2f-471b-9d5d-bbb34c61daa3" + "f24d21b3-f4e3-4183-8bca-554690cd2e68" ], "Accept-Language": [ "en-US" @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\"" + "W/\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\"" ], "x-ms-request-id": [ - "4e2e4a57-4ae5-4067-938d-53889500bb52" + "be1bf2c9-e8b5-4ae3-b8bc-4a9dd6ffc44b" ], "x-ms-correlation-request-id": [ - "189d6cf7-3f68-401e-bb9d-4a4de4508b1c" + "61077134-3054-4444-9cf0-58afc0333a80" ], "x-ms-arm-service-request-id": [ - "133b5e8d-00bb-42d8-806b-9daff4f6e101" + "72fd1c30-1459-4714-ab4d-8c24c39c27a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,13 +443,13 @@ "11990" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092426Z:189d6cf7-3f68-401e-bb9d-4a4de4508b1c" + "FRANCESOUTH:20201107T134515Z:61077134-3054-4444-9cf0-58afc0333a80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:26 GMT" + "Sat, 07 Nov 2020 13:45:14 GMT" ], "Content-Length": [ "2184" @@ -461,17 +461,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c15eeaa0-9a91-4298-8cb2-42f2a0aa1519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f479be1a-db4a-432e-91c4-20ad9c841942" + "7db545bf-19a8-449e-a7af-3dbf747515a1" ], "Accept-Language": [ "en-US" @@ -500,19 +500,19 @@ "3" ], "x-ms-request-id": [ - "9217b443-cee1-435e-9020-364abb0cb8dd" + "60020805-8059-4be0-af23-f03cbb7fc192" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/9217b443-cee1-435e-9020-364abb0cb8dd?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/60020805-8059-4be0-af23-f03cbb7fc192?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "74f6f6a7-9288-4a60-a5d7-138a2df17ae8" + "19b6c633-10e5-4aa8-9d4c-20b70566159e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "83d1ebd0-54ad-4653-bbdf-95e8cbe25811" + "8d4be053-72df-423b-918a-dcc5a399070b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,13 +525,13 @@ "1199" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092418Z:74f6f6a7-9288-4a60-a5d7-138a2df17ae8" + "FRANCESOUTH:20201107T134506Z:19b6c633-10e5-4aa8-9d4c-20b70566159e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:17 GMT" + "Sat, 07 Nov 2020 13:45:06 GMT" ], "Content-Length": [ "648" @@ -543,17 +543,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"a87bf870-6aaf-4121-8cb2-0d675145204f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"6f7c8b58-b016-4127-bd3c-8502a181d40c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDUzMy12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55a3876c-9de2-4ae0-80b1-6c92e9c9702a" + "7e65127f-b7cf-4ce5-9c18-a362cc06fc5f" ], "Accept-Language": [ "en-US" @@ -582,16 +582,16 @@ "3" ], "x-ms-request-id": [ - "e3be8f26-53fc-4afd-92f0-190ee87f810b" + "cf1ebb87-ec8e-4664-a087-a3542f148d6f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/e3be8f26-53fc-4afd-92f0-190ee87f810b?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/cf1ebb87-ec8e-4664-a087-a3542f148d6f?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "ec3d7850-4ac3-4882-a0fb-3c4d9dda4b2f" + "02eac0db-a357-4270-af11-9b6ceff05723" ], "x-ms-arm-service-request-id": [ - "eee3f192-6145-482f-aac7-1e989354f5ae" + "c2987e80-6d7b-42ec-b5a1-d4c7ec7fec61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -604,13 +604,13 @@ "1198" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092423Z:ec3d7850-4ac3-4882-a0fb-3c4d9dda4b2f" + "FRANCESOUTH:20201107T134511Z:02eac0db-a357-4270-af11-9b6ceff05723" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:22 GMT" + "Sat, 07 Nov 2020 13:45:11 GMT" ], "Content-Length": [ "2182" @@ -622,12 +622,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4533-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0073affb-ddc7-44c9-acdf-025a7988e620\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"88092f6f-b19a-45b1-89fa-43e6bd9177c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6919-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"etag\": \"W/\\\"2770f31b-315e-4428-8837-50bc64942200\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6b22a0de-e3fa-458b-a954-89fca7772295\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2770f31b-315e-4428-8837-50bc64942200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2770f31b-315e-4428-8837-50bc64942200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/9217b443-cee1-435e-9020-364abb0cb8dd?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85MjE3YjQ0My1jZWUxLTQzNWUtOTAyMC0zNjRhYmIwY2I4ZGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/60020805-8059-4be0-af23-f03cbb7fc192?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy82MDAyMDgwNS04MDU5LTRiZTAtYWYyMy1mMDNjYmI3ZmMxOTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -646,13 +646,13 @@ "no-cache" ], "x-ms-request-id": [ - "8dbd50a6-6b9d-4aa3-bd9a-65d3958524bf" + "dc99db22-2084-4349-9aa2-852f9be1aa39" ], "x-ms-correlation-request-id": [ - "0cf71ebc-1bf2-4ba9-9943-f087ab9ad424" + "384f145e-50c1-4662-be7a-ce124221c36c" ], "x-ms-arm-service-request-id": [ - "49e0b826-8458-4df4-adbc-c269263509f8" + "85ac71f2-24fc-4f16-a41e-273bb9dae617" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,13 +665,13 @@ "11996" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092421Z:0cf71ebc-1bf2-4ba9-9943-f087ab9ad424" + "FRANCESOUTH:20201107T134510Z:384f145e-50c1-4662-be7a-ce124221c36c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:20 GMT" + "Sat, 07 Nov 2020 13:45:09 GMT" ], "Content-Length": [ "29" @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/e3be8f26-53fc-4afd-92f0-190ee87f810b?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9lM2JlOGYyNi01M2ZjLTRhZmQtOTJmMC0xOTBlZTg3ZjgxMGI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/cf1ebb87-ec8e-4664-a087-a3542f148d6f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jZjFlYmI4Ny1lYzhlLTQ2NjQtYTA4Ny1hMzU0MmYxNDhkNmY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,13 +707,13 @@ "no-cache" ], "x-ms-request-id": [ - "2b7fff58-f13d-473b-96cd-6fa69a459402" + "feec053c-7f10-4c5f-a1d3-de9fda53b1bd" ], "x-ms-correlation-request-id": [ - "90c2225c-0f9f-4eaa-921e-043ba111eddd" + "db318043-5d03-4df7-bd86-f7f04a57445d" ], "x-ms-arm-service-request-id": [ - "0b17e757-f81d-4db2-94a2-41266764e1b3" + "210e1413-5167-41df-9dd3-5cf2cef347b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +726,13 @@ "11992" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092426Z:90c2225c-0f9f-4eaa-921e-043ba111eddd" + "FRANCESOUTH:20201107T134514Z:db318043-5d03-4df7-bd86-f7f04a57445d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:25 GMT" + "Sat, 07 Nov 2020 13:45:14 GMT" ], "Content-Length": [ "29" @@ -748,13 +748,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73425049-e8e9-4362-b308-870b298fd818" + "561d7b74-397e-4f50-a5c5-ea4ded4ba32b" ], "Accept-Language": [ "en-US" @@ -780,13 +780,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A24%3A33.6006859Z'\"" + "W/\"datetime'2020-11-07T13%3A45%3A22.2806312Z'\"" ], "x-ms-request-id": [ - "6f371d47-fc22-4969-9d6a-4a800626d369" + "b3391031-1f28-47de-b66d-ef8c69c197b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d48071dc-303f-4746-a456-34bdda8a849d?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -804,10 +804,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "d1015d20-81a1-4804-a077-ede21067023d" + "e1932663-4c5f-48a3-887e-9059757b48f3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092434Z:d1015d20-81a1-4804-a077-ede21067023d" + "FRANCESOUTH:20201107T134523Z:e1932663-4c5f-48a3-887e-9059757b48f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,7 +816,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:24:34 GMT" + "Sat, 07 Nov 2020 13:45:23 GMT" ], "Content-Length": [ "348" @@ -828,12 +828,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\",\r\n \"name\": \"ps7450\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A24%3A33.6006859Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569\",\r\n \"name\": \"ps4569\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A45%3A22.2806312Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2JlMmQwOGQ4LWI4NGMtNGExNy1iNjVhLWE2ZDQxZTVlNGQ2YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d48071dc-303f-4746-a456-34bdda8a849d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Q0ODA3MWRjLTMwM2YtNDc0Ni1hNDU2LTM0YmRkYThhODQ5ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,7 +852,7 @@ "no-cache" ], "x-ms-request-id": [ - "7def0c1d-7bb1-4025-ac85-1f3be202785b" + "0aff89ee-5504-4370-a1f6-6518675b50da" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -870,10 +870,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "fb10429c-aa2f-486c-831c-de95c360ff66" + "6fd66daf-cb9b-4fe9-98f4-230a7da639ef" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092504Z:fb10429c-aa2f-486c-831c-de95c360ff66" + "FRANCESOUTH:20201107T134553Z:6fd66daf-cb9b-4fe9-98f4-230a7da639ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,7 +882,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:04 GMT" + "Sat, 07 Nov 2020 13:45:52 GMT" ], "Content-Length": [ "496" @@ -894,12 +894,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a\",\r\n \"name\": \"be2d08d8-b84c-4a17-b65a-a6d41e5e4d6a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:24:33.5182938Z\",\r\n \"endTime\": \"2020-10-28T09:24:33.6589021Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d48071dc-303f-4746-a456-34bdda8a849d\",\r\n \"name\": \"d48071dc-303f-4746-a456-34bdda8a849d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:45:22.1221647Z\",\r\n \"endTime\": \"2020-11-07T13:45:22.3563196Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -918,10 +918,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A24%3A33.6607317Z'\"" + "W/\"datetime'2020-11-07T13%3A45%3A22.3476784Z'\"" ], "x-ms-request-id": [ - "f6d2d2cd-242a-4374-975a-02e4b516a975" + "f9be1177-f100-4bf3-84ba-3bb7e0aceb36" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -939,10 +939,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "f451c8b9-8b8e-438b-9546-f94a8dfeeae5" + "ebe81c66-2a68-4d1a-8a96-e985d1624468" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092505Z:f451c8b9-8b8e-438b-9546-f94a8dfeeae5" + "FRANCESOUTH:20201107T134553Z:ebe81c66-2a68-4d1a-8a96-e985d1624468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +951,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:04 GMT" + "Sat, 07 Nov 2020 13:45:52 GMT" ], "Content-Length": [ "349" @@ -963,17 +963,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450\",\r\n \"name\": \"ps7450\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A24%3A33.6607317Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569\",\r\n \"name\": \"ps4569\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A45%3A22.3476784Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvYmFja3VwUG9saWNpZXMvcHM2NzQyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvYmFja3VwUG9saWNpZXMvcHMzMjc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9657fa2e-b320-4ac6-b569-d802adc750da" + "2b4d785c-510f-42a2-b48f-af3445074d07" ], "Accept-Language": [ "en-US" @@ -999,13 +999,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A25%3A06.8138321Z'\"" + "W/\"datetime'2020-11-07T13%3A45%3A56.0444Z'\"" ], "x-ms-request-id": [ - "b925d995-4d73-45e1-bd87-bbf0213b716b" + "a6135613-9262-446f-9315-2398f1262632" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c8c7275-2607-40ec-90d6-d769fdc0398d?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1023,10 +1023,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "78649020-5f68-49e0-bc3c-70a564db08f5" + "08df88fd-43a2-4ff3-9b9c-78654b9a5c80" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092507Z:78649020-5f68-49e0-bc3c-70a564db08f5" + "FRANCESOUTH:20201107T134557Z:08df88fd-43a2-4ff3-9b9c-78654b9a5c80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1035,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:07 GMT" + "Sat, 07 Nov 2020 13:45:56 GMT" ], "Content-Length": [ - "475" + "470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,12 +1047,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\",\r\n \"name\": \"ps7450/ps6742\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A06.8138321Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327\",\r\n \"name\": \"ps4569/ps327\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A45%3A56.0444Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 1,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VlYjcxY2FmLTRhNjgtNDJiNC1hNWZhLTM2NTYwMzRmOTU0Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c8c7275-2607-40ec-90d6-d769fdc0398d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFjOGM3Mjc1LTI2MDctNDBlYy05MGQ2LWQ3NjlmZGMwMzk4ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1071,7 +1071,7 @@ "no-cache" ], "x-ms-request-id": [ - "389b3447-639d-4c36-973e-ab8d2bbc439d" + "899436b3-6232-4d4a-8dca-456c340ff6c9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1089,10 +1089,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "b534e7b7-39c0-4e24-9791-ed6dc0400535" + "10842396-6a85-4795-aa58-d7ee65df0dd8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092538Z:b534e7b7-39c0-4e24-9791-ed6dc0400535" + "FRANCESOUTH:20201107T134627Z:10842396-6a85-4795-aa58-d7ee65df0dd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,10 +1101,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:37 GMT" + "Sat, 07 Nov 2020 13:46:26 GMT" ], "Content-Length": [ - "518" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1113,12 +1113,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/eeb71caf-4a68-42b4-a5fa-3656034f954c\",\r\n \"name\": \"eeb71caf-4a68-42b4-a5fa-3656034f954c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:25:06.7200981Z\",\r\n \"endTime\": \"2020-10-28T09:25:10.8124384Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1c8c7275-2607-40ec-90d6-d769fdc0398d\",\r\n \"name\": \"1c8c7275-2607-40ec-90d6-d769fdc0398d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:45:55.9946213Z\",\r\n \"endTime\": \"2020-11-07T13:45:57.4729578Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvYmFja3VwUG9saWNpZXMvcHM2NzQyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvYmFja3VwUG9saWNpZXMvcHMzMjc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1137,10 +1137,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A25%3A10.8158618Z'\"" + "W/\"datetime'2020-11-07T13%3A45%3A57.463401Z'\"" ], "x-ms-request-id": [ - "ca6c5b20-2ede-421e-9ec0-db7ed3789246" + "c4c79235-dc95-4b81-b14d-eb587f5a5c98" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1158,10 +1158,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "006beb7c-8983-45df-b4c5-680891f61fe5" + "d711e741-e819-4bc4-881d-c3e6cb3bd3e5" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092538Z:006beb7c-8983-45df-b4c5-680891f61fe5" + "FRANCESOUTH:20201107T134627Z:d711e741-e819-4bc4-881d-c3e6cb3bd3e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,10 +1170,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:37 GMT" + "Sat, 07 Nov 2020 13:46:27 GMT" ], "Content-Length": [ - "532" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,17 +1182,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/backupPolicies/ps6742\",\r\n \"name\": \"ps7450/ps6742\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A10.8158618Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"79faab0f-18ff-11eb-8819-722c3fa6b241\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327\",\r\n \"name\": \"ps4569/ps327\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/backupPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A45%3A57.463401Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"backupPolicyId\": \"8f9bc085-20ff-11eb-8819-722c3fa6b241\",\r\n \"dailyBackupsToKeep\": 4,\r\n \"weeklyBackupsToKeep\": 3,\r\n \"monthlyBackupsToKeep\": 2,\r\n \"yearlyBackupsToKeep\": 0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12ff5b56-835d-411c-80f4-4a11e898fad2" + "bc2cb3c1-5a98-42b5-800e-492f9a8abb29" ], "Accept-Language": [ "en-US" @@ -1218,13 +1218,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A25%3A40.6254295Z'\"" + "W/\"datetime'2020-11-07T13%3A46%3A29.7801503Z'\"" ], "x-ms-request-id": [ - "019c923b-00c5-4ddf-b34a-fcfb59f5923f" + "818d1dcb-9e21-41ab-b02c-ad0be884b96b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/917331d9-96fa-4530-8e93-c583a9f44e16?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1242,10 +1242,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "099ba586-bdb8-4195-80b7-519977e32e57" + "da985e81-c630-4404-a291-22d561b9f98e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092542Z:099ba586-bdb8-4195-80b7-519977e32e57" + "FRANCESOUTH:20201107T134630Z:da985e81-c630-4404-a291-22d561b9f98e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,7 +1254,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:25:41 GMT" + "Sat, 07 Nov 2020 13:46:29 GMT" ], "Content-Length": [ "465" @@ -1266,12 +1266,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\",\r\n \"name\": \"ps7450/ps6822\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A40.6254295Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755\",\r\n \"name\": \"ps4569/ps6755\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A46%3A29.7801503Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzdkNDIwYjQwLTBhNWItNGU3NS1iZDU2LThjNTBmMzk4OTlkZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/917331d9-96fa-4530-8e93-c583a9f44e16?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkxNzMzMWQ5LTk2ZmEtNDUzMC04ZTkzLWM1ODNhOWY0NGUxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,7 +1290,7 @@ "no-cache" ], "x-ms-request-id": [ - "b568f238-3335-4ec4-9a86-40bd0e60e715" + "edcce208-008b-454d-a0f7-f99b8880db59" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1308,10 +1308,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "31152901-0bf6-44d8-b41c-773dbc55b9d5" + "f39d0dd7-b704-4c5c-b865-4ddb9d2c0188" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092612Z:31152901-0bf6-44d8-b41c-773dbc55b9d5" + "FRANCESOUTH:20201107T134700Z:f39d0dd7-b704-4c5c-b865-4ddb9d2c0188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1320,10 +1320,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:26:12 GMT" + "Sat, 07 Nov 2020 13:47:00 GMT" ], "Content-Length": [ - "516" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,12 +1332,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/7d420b40-0a5b-4e75-bd56-8c50f39899df\",\r\n \"name\": \"7d420b40-0a5b-4e75-bd56-8c50f39899df\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:25:40.534967Z\",\r\n \"endTime\": \"2020-10-28T09:25:40.7849482Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/917331d9-96fa-4530-8e93-c583a9f44e16\",\r\n \"name\": \"917331d9-96fa-4530-8e93-c583a9f44e16\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:46:29.7219395Z\",\r\n \"endTime\": \"2020-11-07T13:46:29.9926595Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,10 +1356,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A25%3A40.7865512Z'\"" + "W/\"datetime'2020-11-07T13%3A46%3A29.9832932Z'\"" ], "x-ms-request-id": [ - "2d9358b9-2b6e-434f-a521-18da37fc3526" + "7340fa28-1562-4f12-8983-af92fd6a9a20" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1377,10 +1377,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "db40bcdf-e560-4c6c-a5ad-fb9f479256df" + "5eda855a-c6e3-4378-a89d-0c0043d2b6fd" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092612Z:db40bcdf-e560-4c6c-a5ad-fb9f479256df" + "FRANCESOUTH:20201107T134701Z:5eda855a-c6e3-4378-a89d-0c0043d2b6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:26:12 GMT" + "Sat, 07 Nov 2020 13:47:01 GMT" ], "Content-Length": [ "535" @@ -1401,17 +1401,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822\",\r\n \"name\": \"ps7450/ps6822\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A25%3A40.7865512Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"df368504-646f-3d54-fcf6-ba01027d12d3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755\",\r\n \"name\": \"ps4569/ps6755\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A46%3A29.9832932Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"f3692677-2aba-ceb0-55a6-053501c85273\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps9740\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c159f770-f912-4fd0-8eb8-4a12877df386" + "6911db7d-e380-40f4-999b-376ae716125f" ], "Accept-Language": [ "en-US" @@ -1437,13 +1437,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A26%3A14.8673525Z'\"" + "W/\"datetime'2020-11-07T13%3A47%3A02.9434986Z'\"" ], "x-ms-request-id": [ - "f5f632ce-19c7-493c-903e-70effb7628ed" + "567d528b-9126-447d-859d-053cb4c1f64c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1461,10 +1461,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "6646c01d-138f-4e65-94ac-f9b26ef293ed" + "63cd04be-6cc8-4bbf-ac74-2b0aa12a71cc" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092615Z:6646c01d-138f-4e65-94ac-f9b26ef293ed" + "FRANCESOUTH:20201107T134703Z:63cd04be-6cc8-4bbf-ac74-2b0aa12a71cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,7 +1473,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:26:15 GMT" + "Sat, 07 Nov 2020 13:47:03 GMT" ], "Content-Length": [ "1060" @@ -1485,12 +1485,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A26%3A14.8673525Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\",\r\n \"name\": \"ps4569/ps6755/ps9740\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A47%3A02.9434986Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9740\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1509,7 +1509,7 @@ "no-cache" ], "x-ms-request-id": [ - "0988e643-9188-42c8-9eef-2150d4dc258c" + "e4bd42a5-f04c-47a7-83d5-dc5df5f504fb" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1527,10 +1527,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "8a26f2ee-ee29-4a94-8550-bff4d6850947" + "f4b6326c-1d19-4a2b-80cc-83339e34c8c2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092646Z:8a26f2ee-ee29-4a94-8550-bff4d6850947" + "FRANCESOUTH:20201107T134734Z:f4b6326c-1d19-4a2b-80cc-83339e34c8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1539,7 +1539,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:26:45 GMT" + "Sat, 07 Nov 2020 13:47:33 GMT" ], "Content-Length": [ "521" @@ -1551,12 +1551,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1575,7 +1575,7 @@ "no-cache" ], "x-ms-request-id": [ - "3a63c1cb-09a6-4ddf-8ed6-7ecd04c8f667" + "94cb9d5a-2c96-4b98-a4a5-285469ff2469" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1593,10 +1593,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "3a7224ff-c810-4c91-82ab-c079962b2f1e" + "6c18969e-23bf-4be8-83cd-36dfc96f72e9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092716Z:3a7224ff-c810-4c91-82ab-c079962b2f1e" + "FRANCESOUTH:20201107T134804Z:6c18969e-23bf-4be8-83cd-36dfc96f72e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1605,7 +1605,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:27:16 GMT" + "Sat, 07 Nov 2020 13:48:03 GMT" ], "Content-Length": [ "521" @@ -1617,12 +1617,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1641,7 +1641,7 @@ "no-cache" ], "x-ms-request-id": [ - "50db542a-9b24-4283-8303-fdc380ea9da8" + "65b545cc-a865-433b-b509-e72d4bff29c9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1659,10 +1659,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "a3c2502b-2dfe-4416-9f36-f71cbe672518" + "3661df99-409d-427e-8772-3775a182461f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092746Z:a3c2502b-2dfe-4416-9f36-f71cbe672518" + "FRANCESOUTH:20201107T134834Z:3661df99-409d-427e-8772-3775a182461f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1671,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:27:45 GMT" + "Sat, 07 Nov 2020 13:48:34 GMT" ], "Content-Length": [ "521" @@ -1683,12 +1683,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1707,7 +1707,7 @@ "no-cache" ], "x-ms-request-id": [ - "364aa5c3-6309-4e76-9f3e-777d2c58b274" + "f76b4315-0036-4c2d-9bc5-1654760da2af" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1725,10 +1725,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "95af5e50-356f-4605-8037-5bea508099d8" + "7cff34c6-8074-44ef-87fa-6467a569d045" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092816Z:95af5e50-356f-4605-8037-5bea508099d8" + "FRANCESOUTH:20201107T134904Z:7cff34c6-8074-44ef-87fa-6467a569d045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,7 +1737,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:28:16 GMT" + "Sat, 07 Nov 2020 13:49:04 GMT" ], "Content-Length": [ "521" @@ -1749,12 +1749,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1773,7 +1773,7 @@ "no-cache" ], "x-ms-request-id": [ - "88259d61-e013-4707-a29c-200f16639d4d" + "796c1195-2325-42a5-afec-438b08cb0021" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1791,10 +1791,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "f33a5789-7c31-4465-8e05-1a1037192a5c" + "b78a25d3-aa3f-457d-8b73-2c75a14135f3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092847Z:f33a5789-7c31-4465-8e05-1a1037192a5c" + "FRANCESOUTH:20201107T134935Z:b78a25d3-aa3f-457d-8b73-2c75a14135f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1803,7 +1803,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:28:46 GMT" + "Sat, 07 Nov 2020 13:49:34 GMT" ], "Content-Length": [ "521" @@ -1815,12 +1815,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1839,7 +1839,7 @@ "no-cache" ], "x-ms-request-id": [ - "866fc1da-141a-46b4-a68f-435b840816b4" + "97581a96-8558-4df8-8f95-b53431986ad6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1857,10 +1857,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "436d5706-f3ef-40f9-a574-b35b0eaef19c" + "19f375b9-d466-4382-a941-ca83455a3d7d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092917Z:436d5706-f3ef-40f9-a574-b35b0eaef19c" + "FRANCESOUTH:20201107T135005Z:19f375b9-d466-4382-a941-ca83455a3d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1869,7 +1869,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:16 GMT" + "Sat, 07 Nov 2020 13:50:05 GMT" ], "Content-Length": [ "521" @@ -1881,12 +1881,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE0ZmI2OTRjLTk5NmItNDRiNS1iNmFhLWViZjY4ZjM5MWIzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1905,7 +1905,7 @@ "no-cache" ], "x-ms-request-id": [ - "c351ffad-a0c2-4f84-a991-07c4de717cdc" + "27d062e3-6ff6-4bbe-aff6-9785a1199747" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1923,10 +1923,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "8d9569cb-3834-4c7e-9aae-b689a1b5842c" + "a8939e49-3ddb-404f-92af-3363efd04058" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092947Z:8d9569cb-3834-4c7e-9aae-b689a1b5842c" + "FRANCESOUTH:20201107T135035Z:a8939e49-3ddb-404f-92af-3363efd04058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +1935,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:47 GMT" + "Sat, 07 Nov 2020 13:50:34 GMT" ], "Content-Length": [ "532" @@ -1947,12 +1947,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"name\": \"14fb694c-996b-44b5-b6aa-ebf68f391b31\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:26:14.8067058Z\",\r\n \"endTime\": \"2020-10-28T09:29:22.5442752Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"name\": \"c8a2a46b-f021-4ffe-a2c4-12600d991c9e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:47:02.9012441Z\",\r\n \"endTime\": \"2020-11-07T13:50:11.2442598Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1971,10 +1971,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A29%3A22.5424273Z'\"" + "W/\"datetime'2020-11-07T13%3A50%3A11.2390571Z'\"" ], "x-ms-request-id": [ - "a94da288-5fa6-4126-8d87-51e7715df49a" + "a2b1461a-cd9e-454a-b8f7-a59a65a95502" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1992,10 +1992,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "09ab5658-e648-4011-8233-49a615866a26" + "e19aa46b-bef4-4220-bf08-cffbff7d38f3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092947Z:09ab5658-e648-4011-8233-49a615866a26" + "FRANCESOUTH:20201107T135035Z:e19aa46b-bef4-4220-bf08-cffbff7d38f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,7 +2004,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:47 GMT" + "Sat, 07 Nov 2020 13:50:35 GMT" ], "Content-Length": [ "1536" @@ -2016,17 +2016,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A29%3A22.5424273Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"name\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_7c43bb3f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\",\r\n \"name\": \"ps4569/ps6755/ps9740\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A50%3A11.2390571Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"name\": \"ps9740\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9740\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_92337e48\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c9be6bc-da3c-4b6c-a750-b7fbcd137cb2" + "18996e6e-ac5c-41ef-89c0-9b1207c4cac0" ], "Accept-Language": [ "en-US" @@ -2046,7 +2046,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe9d1a11-2077-4b49-97f8-dcc9029e67a9" + "d993d961-96ca-4f1b-8e87-9840edd7b6ad" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2064,10 +2064,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "cf7409de-449e-4df6-8ad3-30b923d80556" + "d8e3e54a-2b7e-4f93-975e-04a5212b9608" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092948Z:cf7409de-449e-4df6-8ad3-30b923d80556" + "FRANCESOUTH:20201107T135036Z:d8e3e54a-2b7e-4f93-975e-04a5212b9608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2076,7 +2076,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:47 GMT" + "Sat, 07 Nov 2020 13:50:35 GMT" ], "Content-Length": [ "311" @@ -2088,17 +2088,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\",\r\n \"name\": \"ps7450/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/vaults/cbsvault\",\r\n \"name\": \"ps4569/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "81d3fbe0-b5ee-4dc2-9566-dff6efbd0dc4" + "a936c75e-bb00-4b2e-9ee7-0e700678a7dd" ], "Accept-Language": [ "en-US" @@ -2124,10 +2124,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T09%3A29%3A48.4419344Z'\"" + "W/\"datetime'2020-11-07T13%3A50%3A36.6288656Z'\"" ], "x-ms-request-id": [ - "2a37ae5b-c0e0-41a2-9424-c10f96e0f111" + "5ea87458-cf18-4c75-b7c0-b0231672c8b0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2145,10 +2145,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "0482f764-150c-4169-9cd6-e4405d8d01f9" + "95199b45-88b8-4131-af4d-b2da9dc07a51" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092952Z:0482f764-150c-4169-9cd6-e4405d8d01f9" + "FRANCESOUTH:20201107T135040Z:95199b45-88b8-4131-af4d-b2da9dc07a51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,7 +2157,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:52 GMT" + "Sat, 07 Nov 2020 13:50:39 GMT" ], "Content-Length": [ "1760" @@ -2169,17 +2169,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278\",\r\n \"name\": \"ps7450/ps6822/ps6278\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T09%3A29%3A48.4419344Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"name\": \"ps6278\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6278\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_7c43bb3f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.Network/virtualNetworks/ps4533-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740\",\r\n \"name\": \"ps4569/ps6755/ps9740\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T13%3A50%3A36.6288656Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"name\": \"ps9740\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9740\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_92337e48\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupTest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e17e6cd9-1ede-4430-93b8-c3257a9e064b" + "67ecc4ee-581d-470e-b437-076aff317f8a" ], "Accept-Language": [ "en-US" @@ -2205,13 +2205,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/f33d9659-bb68-4b42-88f4-b25919c0801e?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "32d4061f-381e-40b4-aa4e-98a9d787af87" + "defaaf31-8588-4566-97b8-ad7108bc8c72" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/f33d9659-bb68-4b42-88f4-b25919c0801e?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2229,10 +2229,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "0b2b7edb-26c5-4bef-bfa7-3b5086fe5228" + "c87d7135-826c-4378-92dd-0478533300a2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T092954Z:0b2b7edb-26c5-4bef-bfa7-3b5086fe5228" + "FRANCESOUTH:20201107T135041Z:c87d7135-826c-4378-92dd-0478533300a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2241,7 +2241,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:29:54 GMT" + "Sat, 07 Nov 2020 13:50:40 GMT" ], "Content-Length": [ "449" @@ -2253,12 +2253,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"label\": \"powershellBackupTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"label\": \"powershellBackupTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExNTQ4NjIzLWEzMzktNDhlNi04ODU3LTAyZWFjNzQ3OTFhND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/f33d9659-bb68-4b42-88f4-b25919c0801e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YzM2Q5NjU5LWJiNjgtNGI0Mi04OGY0LWIyNTkxOWMwODAxZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2277,7 +2277,7 @@ "no-cache" ], "x-ms-request-id": [ - "98a90ee2-0121-42ab-8b2c-1a8ed756d6c9" + "87d37c14-d018-4b86-b1fc-e9bece3b885d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2285,20 +2285,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], "x-ms-correlation-request-id": [ - "b7320852-0a8f-416b-a597-ead755430196" + "002f546c-76ae-41c4-bcde-2ee63d81d4af" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093024Z:b7320852-0a8f-416b-a597-ead755430196" + "FRANCESOUTH:20201107T135111Z:002f546c-76ae-41c4-bcde-2ee63d81d4af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2307,7 +2307,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:30:23 GMT" + "Sat, 07 Nov 2020 13:51:10 GMT" ], "Content-Length": [ "547" @@ -2319,12 +2319,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11548623-a339-48e6-8857-02eac74791a4\",\r\n \"name\": \"11548623-a339-48e6-8857-02eac74791a4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:29:54.1698839Z\",\r\n \"endTime\": \"2020-10-28T09:29:54.3729921Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/f33d9659-bb68-4b42-88f4-b25919c0801e\",\r\n \"name\": \"f33d9659-bb68-4b42-88f4-b25919c0801e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:50:40.9268578Z\",\r\n \"endTime\": \"2020-11-07T13:50:41.1558174Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2343,7 +2343,7 @@ "no-cache" ], "x-ms-request-id": [ - "6f02c36a-dc35-4e24-b49c-83e6926d8c53" + "6ccd3990-043a-4110-9068-2800951724c6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2361,10 +2361,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "2c935fb6-c7da-4ee8-847d-e5cf0842e4b4" + "b39d6c7e-a1ce-44b5-80de-407185728c58" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093027Z:2c935fb6-c7da-4ee8-847d-e5cf0842e4b4" + "FRANCESOUTH:20201107T135111Z:b39d6c7e-a1ce-44b5-80de-407185728c58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2373,7 +2373,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:30:27 GMT" + "Sat, 07 Nov 2020 13:51:10 GMT" ], "Content-Length": [ "513" @@ -2385,17 +2385,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e436bbc-e5e1-49e1-9e6f-f0527daf8857" + "caad7ec4-0ec7-4365-9e00-31201e60c82d" ], "Accept-Language": [ "en-US" @@ -2415,7 +2415,7 @@ "no-cache" ], "x-ms-request-id": [ - "6bef508e-2af6-4e23-b8af-e29b3cee7991" + "3a733607-7b26-4dc0-8767-f7e25b8f67c7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2433,10 +2433,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "037e9154-6707-40c9-bc76-7e6dc2c2b08b" + "6b7829eb-d8c5-4b26-aef2-0c7d3abca9cc" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093028Z:037e9154-6707-40c9-bc76-7e6dc2c2b08b" + "FRANCESOUTH:20201107T135112Z:6b7829eb-d8c5-4b26-aef2-0c7d3abca9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2445,7 +2445,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:30:27 GMT" + "Sat, 07 Nov 2020 13:51:11 GMT" ], "Content-Length": [ "513" @@ -2457,17 +2457,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e98a54e9-51d1-4bdb-9256-67f4ea6b8543" + "7677c2c4-fe89-471a-aafc-201b919127a5" ], "Accept-Language": [ "en-US" @@ -2487,7 +2487,7 @@ "no-cache" ], "x-ms-request-id": [ - "d914711d-ab24-46ba-95ff-c25740338a73" + "2472668c-2c2b-4d72-ad00-110ae574b4cb" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2505,10 +2505,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "8dc80d9d-1296-4c5e-a0dd-fb95d00f0bbf" + "e827071d-5c0b-47ce-aa04-42597b0b29d0" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093104Z:8dc80d9d-1296-4c5e-a0dd-fb95d00f0bbf" + "FRANCESOUTH:20201107T135149Z:e827071d-5c0b-47ce-aa04-42597b0b29d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2517,7 +2517,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:04 GMT" + "Sat, 07 Nov 2020 13:51:49 GMT" ], "Content-Length": [ "513" @@ -2529,17 +2529,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d220f1da-e248-4920-8280-0cc94de27bf1" + "f9d30455-edf8-4cd2-b775-9ba0216f6310" ], "Accept-Language": [ "en-US" @@ -2559,7 +2559,7 @@ "no-cache" ], "x-ms-request-id": [ - "1843d7fe-dce6-40e2-a2c5-743f3c1f186b" + "be68fee0-06cc-4f02-ab09-ef4baac5ad12" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2577,10 +2577,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "24f5c189-64e8-4049-b494-e414011993a9" + "0462aa65-ba9a-498f-bb6c-36a2d54cfab7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093105Z:24f5c189-64e8-4049-b494-e414011993a9" + "FRANCESOUTH:20201107T135150Z:0462aa65-ba9a-498f-bb6c-36a2d54cfab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2589,7 +2589,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:05 GMT" + "Sat, 07 Nov 2020 13:51:50 GMT" ], "Content-Length": [ "513" @@ -2601,17 +2601,95 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"label\": \"powershellBackupTestUpdate\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eba49466-9a3b-4947-b663-fb01e4f2acc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0f3577a7-490f-4ebf-91b1-61e3219ab31b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "ad5fa7e8-e27b-4fbf-820f-7980a2dd12f8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135117Z:ad5fa7e8-e27b-4fbf-820f-7980a2dd12f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:17 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"etag\": \"11/7/2020 1:51:17 PM\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczE1ODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupTest2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "376cb0c8-ff37-4b43-86fb-a37d76c51d11" + "9f9c0b1e-9462-44b5-8cb1-4b59acb77e06" ], "Accept-Language": [ "en-US" @@ -2637,13 +2715,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/77ff8ee8-be19-479d-8e29-d9a1205e2ff3?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "90b89e1d-e90c-49a9-9f44-051fcc4c9bd2" + "44a5be85-c8eb-43a6-9e75-f4fce459a607" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/77ff8ee8-be19-479d-8e29-d9a1205e2ff3?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2658,13 +2736,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "8bfe0f63-e688-4bbf-a465-8229ecd23859" + "ce860a09-4576-4a04-aef6-1cef0b7ae144" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093028Z:8bfe0f63-e688-4bbf-a465-8229ecd23859" + "FRANCESOUTH:20201107T135118Z:ce860a09-4576-4a04-aef6-1cef0b7ae144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,10 +2751,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:30:27 GMT" + "Sat, 07 Nov 2020 13:51:18 GMT" ], "Content-Length": [ - "448" + "450" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2685,12 +2763,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"label\": \"powershellBackupTest2\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps1580\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"label\": \"powershellBackupTest2\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzMWUxMzcwLTI3NTgtNGMwNS1iYWIxLWMwODQyZmViMmM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/77ff8ee8-be19-479d-8e29-d9a1205e2ff3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzc3ZmY4ZWU4LWJlMTktNDc5ZC04ZTI5LWQ5YTEyMDVlMmZmMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2709,7 +2787,7 @@ "no-cache" ], "x-ms-request-id": [ - "f574f992-9a5e-4eed-8ca7-d43cbbfb40de" + "91c47f1f-b2f1-4842-a943-5c87f359f2b0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2717,20 +2795,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], "x-ms-correlation-request-id": [ - "22932a73-41b4-42ed-9843-ffeef925a13a" + "e0cd8c85-fc78-4c19-9a8a-ee5690ce0ff4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093058Z:22932a73-41b4-42ed-9843-ffeef925a13a" + "FRANCESOUTH:20201107T135148Z:e0cd8c85-fc78-4c19-9a8a-ee5690ce0ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,10 +2817,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:30:58 GMT" + "Sat, 07 Nov 2020 13:51:48 GMT" ], "Content-Length": [ - "546" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2751,12 +2829,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/631e1370-2758-4c05-bab1-c0842feb2c87\",\r\n \"name\": \"631e1370-2758-4c05-bab1-c0842feb2c87\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:30:28.4571404Z\",\r\n \"endTime\": \"2020-10-28T09:30:28.6893206Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/77ff8ee8-be19-479d-8e29-d9a1205e2ff3\",\r\n \"name\": \"77ff8ee8-be19-479d-8e29-d9a1205e2ff3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:51:17.9046032Z\",\r\n \"endTime\": \"2020-11-07T13:51:18.1143911Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczE1ODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2775,7 +2853,7 @@ "no-cache" ], "x-ms-request-id": [ - "836d55f4-f9ef-4d9d-8eec-503f30e8cc01" + "5d482c4e-aef8-4a7a-a591-2b0739efd0ad" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2793,10 +2871,10 @@ "11980" ], "x-ms-correlation-request-id": [ - "df801f73-1d85-42e6-a382-34b035f2b8bb" + "4bb9b5ca-ce5f-435b-a52e-bad005f03f70" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093104Z:df801f73-1d85-42e6-a382-34b035f2b8bb" + "FRANCESOUTH:20201107T135149Z:4bb9b5ca-ce5f-435b-a52e-bad005f03f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2805,10 +2883,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:03 GMT" + "Sat, 07 Nov 2020 13:51:49 GMT" ], "Content-Length": [ - "511" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2817,17 +2895,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps1580\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:51:18Z\",\r\n \"backupId\": \"a9511424-2cbb-284f-b618-dd7ce97fa080\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dafa0bd8-eb3f-4f38-b66f-81311dbdc09d" + "33d1efad-f0cf-414f-a1be-8c2e5061024a" ], "Accept-Language": [ "en-US" @@ -2847,7 +2925,7 @@ "no-cache" ], "x-ms-request-id": [ - "133789db-1aed-44b4-8ff3-173fa065616b" + "c49d5264-ddab-4e47-9b9a-53338d834c93" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2865,10 +2943,10 @@ "11979" ], "x-ms-correlation-request-id": [ - "726dd307-2ef5-408e-a53e-46eecf1c643c" + "e3e1b434-d745-437d-aaff-db936fe0f95a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093104Z:726dd307-2ef5-408e-a53e-46eecf1c643c" + "FRANCESOUTH:20201107T135149Z:e3e1b434-d745-437d-aaff-db936fe0f95a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2877,10 +2955,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:04 GMT" + "Sat, 07 Nov 2020 13:51:49 GMT" ], "Content-Length": [ - "1037" + "1039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2889,17 +2967,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:29:54Z\",\r\n \"backupId\": \"bb239b41-69ee-afc0-5380-d868f96e6a7c\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:50:41Z\",\r\n \"backupId\": \"7a464735-e73b-8a38-c83b-dc952ee266fe\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps1580\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:51:18Z\",\r\n \"backupId\": \"a9511424-2cbb-284f-b618-dd7ce97fa080\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60798f20-7c6a-4dc0-9509-b9c3da65a645" + "eb7f70c0-1ac3-4a80-a745-319c4890a7ce" ], "Accept-Language": [ "en-US" @@ -2919,7 +2997,7 @@ "no-cache" ], "x-ms-request-id": [ - "d12ef075-88bc-4217-80ef-93149d9ee48b" + "f1d5c296-ddcb-46b0-9e51-6def70e3eefe" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2937,10 +3015,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "4c0f5564-0c06-44fe-a2c6-3c27f0516692" + "b925b5c4-a0ff-434e-885c-6fb6edaba46b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093136Z:4c0f5564-0c06-44fe-a2c6-3c27f0516692" + "FRANCESOUTH:20201107T135221Z:b925b5c4-a0ff-434e-885c-6fb6edaba46b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2949,10 +3027,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:35 GMT" + "Sat, 07 Nov 2020 13:52:20 GMT" ], "Content-Length": [ - "523" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2961,17 +3039,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b69ee754-0971-cb76-f946-0e9d210ce195\",\r\n \"creationDate\": \"2020-10-28T09:30:28Z\",\r\n \"backupId\": \"f00fb5a3-8a7f-1b4a-8b48-4cfb8b31a730\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps1580\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"3c7c6a04-d9b4-9911-d7fc-1c2b2fa7ccc4\",\r\n \"creationDate\": \"2020-11-07T13:51:18Z\",\r\n \"backupId\": \"a9511424-2cbb-284f-b618-dd7ce97fa080\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6572c70c-0c08-4051-89c3-b9cee9c13f53" + "1f1fd5be-591a-4461-82ac-93ff26c68e12" ], "Accept-Language": [ "en-US" @@ -2991,7 +3069,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4ce1825-c82d-44ca-9e16-cfa7c4368d4f" + "e9143394-03e1-4907-8a26-65ab4dee3050" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3009,10 +3087,10 @@ "11971" ], "x-ms-correlation-request-id": [ - "bb0e5c65-d995-4748-8d8c-75be526b42e6" + "a60ce076-f0dd-4ed4-aae0-b732a4fe4e92" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093207Z:bb0e5c65-d995-4748-8d8c-75be526b42e6" + "FRANCESOUTH:20201107T135252Z:a60ce076-f0dd-4ed4-aae0-b732a4fe4e92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3021,7 +3099,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:07 GMT" + "Sat, 07 Nov 2020 13:52:52 GMT" ], "Content-Length": [ "12" @@ -3037,13 +3115,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczM0NDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9625e9e9-d59c-4ea4-850e-d185ee0a1589" + "a5c21c34-c853-42bb-b45b-31c6083e59f7" ], "Accept-Language": [ "en-US" @@ -3063,13 +3141,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "5dafe176-2d6b-42d3-acfb-fddbc6e15d7f" + "7f1d21ee-b5be-49b1-b2f2-d4ade9716113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3087,10 +3165,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "43292e7b-47e6-4c50-a957-a8939d87feed" + "3e59a9b3-056d-4168-b05d-5cd1c0c1bb53" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093105Z:43292e7b-47e6-4c50-a957-a8939d87feed" + "FRANCESOUTH:20201107T135150Z:3e59a9b3-056d-4168-b05d-5cd1c0c1bb53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3099,7 +3177,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:05 GMT" + "Sat, 07 Nov 2020 13:51:50 GMT" ], "Expires": [ "-1" @@ -3112,8 +3190,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlZmY4NWI4LTIyYzktNGRkZC1iODkwLTllMTIwODMzYTlhOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2FkYmMyOTA1LWFmYTEtNDRhYi04YTJlLWE3MGYyNTBjMmY0Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3132,7 +3210,7 @@ "no-cache" ], "x-ms-request-id": [ - "dde4e048-ed36-4f59-b9e8-cc823b63799a" + "03231ad7-9273-4ab6-b73d-5e6019a94c1e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3150,10 +3228,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "9de86262-6acd-483b-bf33-eb449a20f8bd" + "529c44da-4d71-4029-a120-53865f014726" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093135Z:9de86262-6acd-483b-bf33-eb449a20f8bd" + "FRANCESOUTH:20201107T135220Z:529c44da-4d71-4029-a120-53865f014726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3162,7 +3240,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:35 GMT" + "Sat, 07 Nov 2020 13:52:20 GMT" ], "Content-Length": [ "547" @@ -3174,12 +3252,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8\",\r\n \"name\": \"2eff85b8-22c9-4ddd-b890-9e120833a9a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:31:05.4575247Z\",\r\n \"endTime\": \"2020-10-28T09:31:07.5703669Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/adbc2905-afa1-44ab-8a2e-a70f250c2f47\",\r\n \"name\": \"adbc2905-afa1-44ab-8a2e-a70f250c2f47\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:51:50.4968402Z\",\r\n \"endTime\": \"2020-11-07T13:51:52.5238784Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2eff85b8-22c9-4ddd-b890-9e120833a9a8?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlZmY4NWI4LTIyYzktNGRkZC1iODkwLTllMTIwODMzYTlhOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2FkYmMyOTA1LWFmYTEtNDRhYi04YTJlLWE3MGYyNTBjMmY0Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3198,7 +3276,7 @@ "no-cache" ], "x-ms-request-id": [ - "0e85f60c-9fb5-4f61-b09e-0acb068e6722" + "71d0305a-09cb-4087-9810-2cdc11cfd7ab" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3216,10 +3294,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "7b315648-2080-4f4b-8514-4b802e8c911e" + "06bbf090-5b56-450a-b4f7-bfda97b9b2f2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093136Z:7b315648-2080-4f4b-8514-4b802e8c911e" + "FRANCESOUTH:20201107T135221Z:06bbf090-5b56-450a-b4f7-bfda97b9b2f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3228,7 +3306,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:35 GMT" + "Sat, 07 Nov 2020 13:52:20 GMT" ], "Content-Length": [ "318" @@ -3240,17 +3318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps3440\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps3440\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps9314\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc0NTAvY2FwYWNpdHlQb29scy9wczY4MjIvdm9sdW1lcy9wczYyNzgvYmFja3Vwcy9wczE0MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczE1ODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e659b27-b9ed-436c-a3ec-b5118ff95f9c" + "39ccdc06-01c3-4360-b978-3a752d015a9a" ], "Accept-Language": [ "en-US" @@ -3270,13 +3348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "3556502e-e7cc-4f36-8b78-727741ee0443" + "16219183-b0d4-4af0-8e45-7bf87efabf74" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3294,10 +3372,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "cc61a351-ff8d-4bd2-aa64-73af3e01c8a5" + "8d24afc7-91ee-4992-b85c-be91f8ed91d3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093136Z:cc61a351-ff8d-4bd2-aa64-73af3e01c8a5" + "FRANCESOUTH:20201107T135221Z:8d24afc7-91ee-4992-b85c-be91f8ed91d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,7 +3384,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:31:36 GMT" + "Sat, 07 Nov 2020 13:52:20 GMT" ], "Expires": [ "-1" @@ -3319,8 +3397,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2EzZDFhODRiLWVkYTAtNGEwNS05OTU4LWQ5ODc3YjA5ODc3OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiYWJhNDY4LTBkMjEtNGRmYi05OTdiLTNhOWMwZmVkYzVmYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3339,7 +3417,7 @@ "no-cache" ], "x-ms-request-id": [ - "d3ce0a50-55e5-4fc2-80ce-e26f1d0447f3" + "cef03e0a-70bf-4040-9a71-53ca518b2264" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3357,10 +3435,10 @@ "11973" ], "x-ms-correlation-request-id": [ - "cf7684d6-f856-4351-9594-9efeff0dcc5b" + "f1911298-850d-412b-ad88-b3c84cf4a520" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093207Z:cf7684d6-f856-4351-9594-9efeff0dcc5b" + "FRANCESOUTH:20201107T135252Z:f1911298-850d-412b-ad88-b3c84cf4a520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3369,10 +3447,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:06 GMT" + "Sat, 07 Nov 2020 13:52:51 GMT" ], "Content-Length": [ - "546" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3381,12 +3459,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778\",\r\n \"name\": \"a3d1a84b-eda0-4a05-9958-d9877b098778\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T09:31:36.8001338Z\",\r\n \"endTime\": \"2020-10-28T09:31:44.0394155Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8baba468-0d21-4dfb-997b-3a9c0fedc5fa\",\r\n \"name\": \"8baba468-0d21-4dfb-997b-3a9c0fedc5fa\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T13:52:21.7169361Z\",\r\n \"endTime\": \"2020-11-07T13:52:23.8176833Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/a3d1a84b-eda0-4a05-9958-d9877b098778?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2EzZDFhODRiLWVkYTAtNGEwNS05OTU4LWQ5ODc3YjA5ODc3OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiYWJhNDY4LTBkMjEtNGRmYi05OTdiLTNhOWMwZmVkYzVmYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3405,7 +3483,7 @@ "no-cache" ], "x-ms-request-id": [ - "506d3ad1-084f-4700-870d-72891ec2804d" + "fd7c0c0e-c4ea-45df-bd47-9a79e4b4a693" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3423,10 +3501,10 @@ "11972" ], "x-ms-correlation-request-id": [ - "c387a687-277d-4d62-a70e-f280ff6b122a" + "99fe311d-a140-4506-b4c3-ed076d406bd2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093207Z:c387a687-277d-4d62-a70e-f280ff6b122a" + "FRANCESOUTH:20201107T135252Z:99fe311d-a140-4506-b4c3-ed076d406bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3435,10 +3513,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:07 GMT" + "Sat, 07 Nov 2020 13:52:51 GMT" ], "Content-Length": [ - "316" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3447,17 +3525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4533/providers/Microsoft.NetApp/netAppAccounts/ps7450/capacityPools/ps6822/volumes/ps6278/backups/ps141\",\r\n \"name\": \"ps7450/ps6822/ps6278/ps141\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580\",\r\n \"name\": \"ps4569/ps6755/ps9740/ps1580\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4533?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDUzMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6919?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b9b86ad-3915-472c-953f-2e0d6fe6754a" + "c65f9221-12fb-4c1f-b46e-a8490fa4bb3b" ], "Accept-Language": [ "en-US" @@ -3477,7 +3555,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3486,13 +3564,13 @@ "14999" ], "x-ms-request-id": [ - "54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + "de1a168b-102d-4bdb-9620-9a19c904d57a" ], "x-ms-correlation-request-id": [ - "54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + "de1a168b-102d-4bdb-9620-9a19c904d57a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093211Z:54bfdb1d-98e3-41c6-8e25-6a778c45d74c" + "FRANCESOUTH:20201107T135258Z:de1a168b-102d-4bdb-9620-9a19c904d57a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3501,7 +3579,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:11 GMT" + "Sat, 07 Nov 2020 13:52:58 GMT" ], "Expires": [ "-1" @@ -3514,8 +3592,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3534,7 +3612,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3543,13 +3621,13 @@ "11999" ], "x-ms-request-id": [ - "4145b793-c36b-4036-88ff-38dd3193a9a8" + "f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" ], "x-ms-correlation-request-id": [ - "4145b793-c36b-4036-88ff-38dd3193a9a8" + "f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093226Z:4145b793-c36b-4036-88ff-38dd3193a9a8" + "FRANCESOUTH:20201107T135313Z:f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3558,7 +3636,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:26 GMT" + "Sat, 07 Nov 2020 13:53:13 GMT" ], "Expires": [ "-1" @@ -3571,8 +3649,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,7 +3669,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3600,13 +3678,13 @@ "11998" ], "x-ms-request-id": [ - "7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + "813f0a7e-2653-4e42-bf4c-e66fd0fcea17" ], "x-ms-correlation-request-id": [ - "7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + "813f0a7e-2653-4e42-bf4c-e66fd0fcea17" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093241Z:7ca083c6-4fe3-4b74-a267-0d57422ac0bb" + "FRANCESOUTH:20201107T135329Z:813f0a7e-2653-4e42-bf4c-e66fd0fcea17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3615,7 +3693,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:41 GMT" + "Sat, 07 Nov 2020 13:53:28 GMT" ], "Expires": [ "-1" @@ -3628,8 +3706,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3648,7 +3726,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3657,13 +3735,13 @@ "11997" ], "x-ms-request-id": [ - "1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + "4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" ], "x-ms-correlation-request-id": [ - "1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + "4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093257Z:1c5e20d5-e499-49d5-af8d-a9c6b36a5003" + "FRANCESOUTH:20201107T135344Z:4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3672,7 +3750,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:32:56 GMT" + "Sat, 07 Nov 2020 13:53:44 GMT" ], "Expires": [ "-1" @@ -3685,8 +3763,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3705,7 +3783,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3714,13 +3792,13 @@ "11996" ], "x-ms-request-id": [ - "59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + "818111f8-a9ee-42da-bbd3-fe5d5c2ae503" ], "x-ms-correlation-request-id": [ - "59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + "818111f8-a9ee-42da-bbd3-fe5d5c2ae503" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093312Z:59150dfd-0de2-49d5-b5ec-af7aa8b172bc" + "FRANCESOUTH:20201107T135359Z:818111f8-a9ee-42da-bbd3-fe5d5c2ae503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3729,7 +3807,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:33:11 GMT" + "Sat, 07 Nov 2020 13:53:59 GMT" ], "Expires": [ "-1" @@ -3742,8 +3820,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3762,7 +3840,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3771,13 +3849,13 @@ "11995" ], "x-ms-request-id": [ - "e3c51082-1115-42ae-835d-addde0a4e8d0" + "076dd4d3-af11-4183-9ed3-f35e3b188e73" ], "x-ms-correlation-request-id": [ - "e3c51082-1115-42ae-835d-addde0a4e8d0" + "076dd4d3-af11-4183-9ed3-f35e3b188e73" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093327Z:e3c51082-1115-42ae-835d-addde0a4e8d0" + "FRANCESOUTH:20201107T135415Z:076dd4d3-af11-4183-9ed3-f35e3b188e73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3786,7 +3864,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:33:27 GMT" + "Sat, 07 Nov 2020 13:54:14 GMT" ], "Expires": [ "-1" @@ -3799,8 +3877,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3819,7 +3897,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3828,13 +3906,13 @@ "11994" ], "x-ms-request-id": [ - "3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + "13534ce7-ae96-4ac5-889b-4db1be0595b0" ], "x-ms-correlation-request-id": [ - "3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + "13534ce7-ae96-4ac5-889b-4db1be0595b0" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093343Z:3d2a3702-5b65-4bf5-b3f1-e80b807ce407" + "FRANCESOUTH:20201107T135430Z:13534ce7-ae96-4ac5-889b-4db1be0595b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3843,7 +3921,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:33:42 GMT" + "Sat, 07 Nov 2020 13:54:30 GMT" ], "Expires": [ "-1" @@ -3856,8 +3934,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3876,7 +3954,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3885,13 +3963,13 @@ "11993" ], "x-ms-request-id": [ - "237434f4-f56d-4060-8247-5c7b72da7e46" + "f57c1e53-1a82-407c-a945-314a62f876f7" ], "x-ms-correlation-request-id": [ - "237434f4-f56d-4060-8247-5c7b72da7e46" + "f57c1e53-1a82-407c-a945-314a62f876f7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093358Z:237434f4-f56d-4060-8247-5c7b72da7e46" + "FRANCESOUTH:20201107T135446Z:f57c1e53-1a82-407c-a945-314a62f876f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3900,7 +3978,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:33:57 GMT" + "Sat, 07 Nov 2020 13:54:45 GMT" ], "Expires": [ "-1" @@ -3913,8 +3991,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3933,7 +4011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3942,13 +4020,13 @@ "11992" ], "x-ms-request-id": [ - "bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + "6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" ], "x-ms-correlation-request-id": [ - "bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + "6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093413Z:bd9c095e-cc9d-44e3-90ba-f05f76fe8390" + "FRANCESOUTH:20201107T135501Z:6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3957,7 +4035,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:34:13 GMT" + "Sat, 07 Nov 2020 13:55:00 GMT" ], "Expires": [ "-1" @@ -3970,8 +4048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3990,7 +4068,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3999,13 +4077,13 @@ "11991" ], "x-ms-request-id": [ - "4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + "d2738a2b-e1ed-40f7-8e62-39b65915b87b" ], "x-ms-correlation-request-id": [ - "4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + "d2738a2b-e1ed-40f7-8e62-39b65915b87b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093429Z:4bc39cf4-61c4-436b-8bef-49ac4b2faf88" + "FRANCESOUTH:20201107T135516Z:d2738a2b-e1ed-40f7-8e62-39b65915b87b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4014,7 +4092,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:34:29 GMT" + "Sat, 07 Nov 2020 13:55:16 GMT" ], "Expires": [ "-1" @@ -4027,8 +4105,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4047,7 +4125,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4056,13 +4134,13 @@ "11990" ], "x-ms-request-id": [ - "a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + "c5af50a9-8fac-4784-88c0-a068dfa3abe9" ], "x-ms-correlation-request-id": [ - "a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + "c5af50a9-8fac-4784-88c0-a068dfa3abe9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093444Z:a4106f27-51ea-492a-9cdb-326a3aa7a0a9" + "FRANCESOUTH:20201107T135532Z:c5af50a9-8fac-4784-88c0-a068dfa3abe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4071,7 +4149,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:34:44 GMT" + "Sat, 07 Nov 2020 13:55:31 GMT" ], "Expires": [ "-1" @@ -4084,8 +4162,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4104,7 +4182,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4113,13 +4191,13 @@ "11989" ], "x-ms-request-id": [ - "3340234f-79bd-40ac-8d72-064a5f4fc903" + "0ecb9f22-8c84-4d36-bbfc-06bf36f94989" ], "x-ms-correlation-request-id": [ - "3340234f-79bd-40ac-8d72-064a5f4fc903" + "0ecb9f22-8c84-4d36-bbfc-06bf36f94989" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093500Z:3340234f-79bd-40ac-8d72-064a5f4fc903" + "FRANCESOUTH:20201107T135547Z:0ecb9f22-8c84-4d36-bbfc-06bf36f94989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4128,7 +4206,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:34:59 GMT" + "Sat, 07 Nov 2020 13:55:47 GMT" ], "Expires": [ "-1" @@ -4141,8 +4219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4161,7 +4239,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4170,13 +4248,13 @@ "11988" ], "x-ms-request-id": [ - "5669141e-ec1f-4c2a-889e-354809314b4f" + "102c245a-3c31-42fe-8e1c-cec59926d518" ], "x-ms-correlation-request-id": [ - "5669141e-ec1f-4c2a-889e-354809314b4f" + "102c245a-3c31-42fe-8e1c-cec59926d518" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093515Z:5669141e-ec1f-4c2a-889e-354809314b4f" + "FRANCESOUTH:20201107T135602Z:102c245a-3c31-42fe-8e1c-cec59926d518" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4185,7 +4263,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:35:15 GMT" + "Sat, 07 Nov 2020 13:56:01 GMT" ], "Expires": [ "-1" @@ -4198,8 +4276,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4218,7 +4296,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4227,13 +4305,13 @@ "11987" ], "x-ms-request-id": [ - "0c92de3a-6302-4c0f-b8df-669c466a5c18" + "50fedc04-eee9-4119-b4c3-0effa85f2a7b" ], "x-ms-correlation-request-id": [ - "0c92de3a-6302-4c0f-b8df-669c466a5c18" + "50fedc04-eee9-4119-b4c3-0effa85f2a7b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093530Z:0c92de3a-6302-4c0f-b8df-669c466a5c18" + "FRANCESOUTH:20201107T135618Z:50fedc04-eee9-4119-b4c3-0effa85f2a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4242,7 +4320,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:35:30 GMT" + "Sat, 07 Nov 2020 13:56:17 GMT" ], "Expires": [ "-1" @@ -4255,8 +4333,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4275,7 +4353,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4284,13 +4362,13 @@ "11986" ], "x-ms-request-id": [ - "714060a9-3507-4c20-bd02-4aef64b4d9b1" + "13880641-02b4-4eb8-a30e-cd3dfa7842ea" ], "x-ms-correlation-request-id": [ - "714060a9-3507-4c20-bd02-4aef64b4d9b1" + "13880641-02b4-4eb8-a30e-cd3dfa7842ea" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093546Z:714060a9-3507-4c20-bd02-4aef64b4d9b1" + "FRANCESOUTH:20201107T135633Z:13880641-02b4-4eb8-a30e-cd3dfa7842ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4299,7 +4377,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:35:45 GMT" + "Sat, 07 Nov 2020 13:56:32 GMT" ], "Expires": [ "-1" @@ -4312,8 +4390,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4332,7 +4410,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4341,13 +4419,13 @@ "11985" ], "x-ms-request-id": [ - "750417a0-db0b-4fa7-8781-4f0bf03b230a" + "67fe0fa9-ce17-4890-ab4f-5145912331e7" ], "x-ms-correlation-request-id": [ - "750417a0-db0b-4fa7-8781-4f0bf03b230a" + "67fe0fa9-ce17-4890-ab4f-5145912331e7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093601Z:750417a0-db0b-4fa7-8781-4f0bf03b230a" + "FRANCESOUTH:20201107T135648Z:67fe0fa9-ce17-4890-ab4f-5145912331e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4356,7 +4434,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:36:00 GMT" + "Sat, 07 Nov 2020 13:56:48 GMT" ], "Expires": [ "-1" @@ -4369,8 +4447,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4389,7 +4467,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4398,13 +4476,13 @@ "11984" ], "x-ms-request-id": [ - "908a0960-53c3-4b72-91a7-6eab84823138" + "9c42289c-0592-49e3-8cc6-fa2ab43b30e2" ], "x-ms-correlation-request-id": [ - "908a0960-53c3-4b72-91a7-6eab84823138" + "9c42289c-0592-49e3-8cc6-fa2ab43b30e2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093616Z:908a0960-53c3-4b72-91a7-6eab84823138" + "FRANCESOUTH:20201107T135704Z:9c42289c-0592-49e3-8cc6-fa2ab43b30e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4413,7 +4491,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:36:15 GMT" + "Sat, 07 Nov 2020 13:57:04 GMT" ], "Expires": [ "-1" @@ -4426,8 +4504,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4446,7 +4524,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4455,13 +4533,13 @@ "11983" ], "x-ms-request-id": [ - "0bdfb796-4c94-455d-b02c-8483c8fc32c3" + "b48660b5-91f0-4d88-98ec-765422a62558" ], "x-ms-correlation-request-id": [ - "0bdfb796-4c94-455d-b02c-8483c8fc32c3" + "b48660b5-91f0-4d88-98ec-765422a62558" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093632Z:0bdfb796-4c94-455d-b02c-8483c8fc32c3" + "FRANCESOUTH:20201107T135719Z:b48660b5-91f0-4d88-98ec-765422a62558" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4470,7 +4548,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:36:31 GMT" + "Sat, 07 Nov 2020 13:57:18 GMT" ], "Expires": [ "-1" @@ -4483,8 +4561,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4503,7 +4581,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4512,13 +4590,13 @@ "11982" ], "x-ms-request-id": [ - "d224ba40-9cd2-4e52-9b83-3995658d9e3c" + "b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" ], "x-ms-correlation-request-id": [ - "d224ba40-9cd2-4e52-9b83-3995658d9e3c" + "b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093647Z:d224ba40-9cd2-4e52-9b83-3995658d9e3c" + "FRANCESOUTH:20201107T135734Z:b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4527,7 +4605,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:36:47 GMT" + "Sat, 07 Nov 2020 13:57:34 GMT" ], "Expires": [ "-1" @@ -4540,8 +4618,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4560,7 +4638,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4569,13 +4647,13 @@ "11981" ], "x-ms-request-id": [ - "fe568566-4ddc-4172-8eef-34bda1db0e4b" + "66004013-a85f-480d-aaff-b6691aa87f41" ], "x-ms-correlation-request-id": [ - "fe568566-4ddc-4172-8eef-34bda1db0e4b" + "66004013-a85f-480d-aaff-b6691aa87f41" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093702Z:fe568566-4ddc-4172-8eef-34bda1db0e4b" + "FRANCESOUTH:20201107T135750Z:66004013-a85f-480d-aaff-b6691aa87f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4584,7 +4662,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:37:02 GMT" + "Sat, 07 Nov 2020 13:57:49 GMT" ], "Expires": [ "-1" @@ -4597,8 +4675,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4617,7 +4695,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4626,13 +4704,13 @@ "11980" ], "x-ms-request-id": [ - "2045920b-f8df-4e12-a925-f9e53200e258" + "1326620c-07af-420f-80c6-9e7bb76ae02e" ], "x-ms-correlation-request-id": [ - "2045920b-f8df-4e12-a925-f9e53200e258" + "1326620c-07af-420f-80c6-9e7bb76ae02e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093718Z:2045920b-f8df-4e12-a925-f9e53200e258" + "FRANCESOUTH:20201107T135806Z:1326620c-07af-420f-80c6-9e7bb76ae02e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4641,7 +4719,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:37:17 GMT" + "Sat, 07 Nov 2020 13:58:05 GMT" ], "Expires": [ "-1" @@ -4654,8 +4732,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,7 +4752,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4683,13 +4761,13 @@ "11979" ], "x-ms-request-id": [ - "61e3dc99-fdb7-44d6-8aaa-8b781b491697" + "d3dedf46-4600-45d3-b97f-1d75c8003648" ], "x-ms-correlation-request-id": [ - "61e3dc99-fdb7-44d6-8aaa-8b781b491697" + "d3dedf46-4600-45d3-b97f-1d75c8003648" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093733Z:61e3dc99-fdb7-44d6-8aaa-8b781b491697" + "FRANCESOUTH:20201107T135821Z:d3dedf46-4600-45d3-b97f-1d75c8003648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4698,7 +4776,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:37:33 GMT" + "Sat, 07 Nov 2020 13:58:21 GMT" ], "Expires": [ "-1" @@ -4711,8 +4789,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4731,7 +4809,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4740,13 +4818,13 @@ "11978" ], "x-ms-request-id": [ - "a524ff61-0f58-437f-962c-b09ece69724a" + "ef0b1216-1c42-459c-b2ce-b8dff66251d9" ], "x-ms-correlation-request-id": [ - "a524ff61-0f58-437f-962c-b09ece69724a" + "ef0b1216-1c42-459c-b2ce-b8dff66251d9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093749Z:a524ff61-0f58-437f-962c-b09ece69724a" + "FRANCESOUTH:20201107T135836Z:ef0b1216-1c42-459c-b2ce-b8dff66251d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4755,7 +4833,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:37:48 GMT" + "Sat, 07 Nov 2020 13:58:36 GMT" ], "Expires": [ "-1" @@ -4768,8 +4846,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4788,7 +4866,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4797,13 +4875,13 @@ "11977" ], "x-ms-request-id": [ - "a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + "520d1e43-dc4e-4530-bfa0-223755c51a73" ], "x-ms-correlation-request-id": [ - "a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + "520d1e43-dc4e-4530-bfa0-223755c51a73" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093804Z:a1d89161-5e8d-4cd2-84da-a13ec6475a2e" + "FRANCESOUTH:20201107T135852Z:520d1e43-dc4e-4530-bfa0-223755c51a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4812,7 +4890,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:38:03 GMT" + "Sat, 07 Nov 2020 13:58:51 GMT" ], "Expires": [ "-1" @@ -4825,8 +4903,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4845,7 +4923,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4854,13 +4932,13 @@ "11976" ], "x-ms-request-id": [ - "d2e00e34-0436-4063-aecb-0ea34bd9c08b" + "2be550f9-7ff7-4463-984a-baeb6bba2608" ], "x-ms-correlation-request-id": [ - "d2e00e34-0436-4063-aecb-0ea34bd9c08b" + "2be550f9-7ff7-4463-984a-baeb6bba2608" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093819Z:d2e00e34-0436-4063-aecb-0ea34bd9c08b" + "FRANCESOUTH:20201107T135907Z:2be550f9-7ff7-4463-984a-baeb6bba2608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4869,7 +4947,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:38:19 GMT" + "Sat, 07 Nov 2020 13:59:07 GMT" ], "Expires": [ "-1" @@ -4882,8 +4960,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4902,7 +4980,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4911,13 +4989,13 @@ "11975" ], "x-ms-request-id": [ - "f94d2ff7-c245-47bb-afaf-8874b19135cb" + "9a6227bc-453a-4486-82e2-39eee971b2c2" ], "x-ms-correlation-request-id": [ - "f94d2ff7-c245-47bb-afaf-8874b19135cb" + "9a6227bc-453a-4486-82e2-39eee971b2c2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093835Z:f94d2ff7-c245-47bb-afaf-8874b19135cb" + "FRANCESOUTH:20201107T135922Z:9a6227bc-453a-4486-82e2-39eee971b2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4926,7 +5004,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:38:34 GMT" + "Sat, 07 Nov 2020 13:59:22 GMT" ], "Expires": [ "-1" @@ -4939,8 +5017,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4959,7 +5037,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4968,13 +5046,13 @@ "11974" ], "x-ms-request-id": [ - "ffaa107a-b444-4947-9d0f-799d78d53a40" + "1fc19cc4-aeed-4001-9270-e7d1b7a90543" ], "x-ms-correlation-request-id": [ - "ffaa107a-b444-4947-9d0f-799d78d53a40" + "1fc19cc4-aeed-4001-9270-e7d1b7a90543" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093850Z:ffaa107a-b444-4947-9d0f-799d78d53a40" + "FRANCESOUTH:20201107T135938Z:1fc19cc4-aeed-4001-9270-e7d1b7a90543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4983,7 +5061,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:38:49 GMT" + "Sat, 07 Nov 2020 13:59:37 GMT" ], "Expires": [ "-1" @@ -4996,8 +5074,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5016,7 +5094,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5025,13 +5103,13 @@ "11973" ], "x-ms-request-id": [ - "aa2a44a1-eb4d-4893-9e49-8fb017719b92" + "86297792-2075-40a9-8d82-3463831b622f" ], "x-ms-correlation-request-id": [ - "aa2a44a1-eb4d-4893-9e49-8fb017719b92" + "86297792-2075-40a9-8d82-3463831b622f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093905Z:aa2a44a1-eb4d-4893-9e49-8fb017719b92" + "FRANCESOUTH:20201107T135953Z:86297792-2075-40a9-8d82-3463831b622f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,7 +5118,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:39:04 GMT" + "Sat, 07 Nov 2020 13:59:53 GMT" ], "Expires": [ "-1" @@ -5053,8 +5131,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,7 +5151,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5082,13 +5160,13 @@ "11972" ], "x-ms-request-id": [ - "963d8bbc-8175-4807-bfb0-4d75da78641e" + "e839a2c8-63b9-4ec3-a7f1-6f932180b225" ], "x-ms-correlation-request-id": [ - "963d8bbc-8175-4807-bfb0-4d75da78641e" + "e839a2c8-63b9-4ec3-a7f1-6f932180b225" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093921Z:963d8bbc-8175-4807-bfb0-4d75da78641e" + "FRANCESOUTH:20201107T140008Z:e839a2c8-63b9-4ec3-a7f1-6f932180b225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5097,7 +5175,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:39:20 GMT" + "Sat, 07 Nov 2020 14:00:08 GMT" ], "Expires": [ "-1" @@ -5110,8 +5188,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5130,7 +5208,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5139,13 +5217,13 @@ "11971" ], "x-ms-request-id": [ - "9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + "6ccff480-05a0-4f4b-9246-d2f52ea9abca" ], "x-ms-correlation-request-id": [ - "9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + "6ccff480-05a0-4f4b-9246-d2f52ea9abca" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093936Z:9069f2d0-7eac-4e9f-8fd8-2c6841a7a39f" + "FRANCESOUTH:20201107T140024Z:6ccff480-05a0-4f4b-9246-d2f52ea9abca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5154,7 +5232,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:39:36 GMT" + "Sat, 07 Nov 2020 14:00:23 GMT" ], "Expires": [ "-1" @@ -5167,8 +5245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5186,17 +5264,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], "x-ms-request-id": [ - "c9b8d5da-a3dc-45b6-a067-86c268332d71" + "aa5147c1-90c8-4ece-812e-373d54861c79" ], "x-ms-correlation-request-id": [ - "c9b8d5da-a3dc-45b6-a067-86c268332d71" + "aa5147c1-90c8-4ece-812e-373d54861c79" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093951Z:c9b8d5da-a3dc-45b6-a067-86c268332d71" + "FRANCESOUTH:20201107T140039Z:aa5147c1-90c8-4ece-812e-373d54861c79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5205,7 +5289,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:39:50 GMT" + "Sat, 07 Nov 2020 14:00:39 GMT" ], "Expires": [ "-1" @@ -5215,11 +5299,11 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ1MzMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMU16TXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5237,17 +5321,410 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], "x-ms-request-id": [ - "94888082-f842-4c84-89b5-d2744e3e08d4" + "300f1c40-7bb5-49e7-91f9-1095a98f9204" + ], + "x-ms-correlation-request-id": [ + "300f1c40-7bb5-49e7-91f9-1095a98f9204" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140055Z:300f1c40-7bb5-49e7-91f9-1095a98f9204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:00:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "1e3778fe-f7d8-499b-9b8c-a3881a2a4b33" + ], + "x-ms-correlation-request-id": [ + "1e3778fe-f7d8-499b-9b8c-a3881a2a4b33" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140110Z:1e3778fe-f7d8-499b-9b8c-a3881a2a4b33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:01:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "a5b9d2f0-b235-461e-b814-f3845e516dc5" + ], + "x-ms-correlation-request-id": [ + "a5b9d2f0-b235-461e-b814-f3845e516dc5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140125Z:a5b9d2f0-b235-461e-b814-f3845e516dc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:01:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "8ca680b3-beef-484f-bd00-5e2b2f5a17ef" + ], + "x-ms-correlation-request-id": [ + "8ca680b3-beef-484f-bd00-5e2b2f5a17ef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140141Z:8ca680b3-beef-484f-bd00-5e2b2f5a17ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:01:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "64cc6622-bb7c-4c51-b184-7d46a678e90d" + ], + "x-ms-correlation-request-id": [ + "64cc6622-bb7c-4c51-b184-7d46a678e90d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140156Z:64cc6622-bb7c-4c51-b184-7d46a678e90d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:01:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "52174ef2-6168-4d38-8a03-b0bce55cf56c" + ], + "x-ms-correlation-request-id": [ + "52174ef2-6168-4d38-8a03-b0bce55cf56c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140211Z:52174ef2-6168-4d38-8a03-b0bce55cf56c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:02:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "94fe4151-0e82-49d6-abe0-58e16e6dd085" + ], + "x-ms-correlation-request-id": [ + "94fe4151-0e82-49d6-abe0-58e16e6dd085" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140227Z:94fe4151-0e82-49d6-abe0-58e16e6dd085" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:02:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1Ua3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "bfa9fe9e-b04b-4f85-9c02-15390ae0d362" ], "x-ms-correlation-request-id": [ - "94888082-f842-4c84-89b5-d2744e3e08d4" + "bfa9fe9e-b04b-4f85-9c02-15390ae0d362" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T093952Z:94888082-f842-4c84-89b5-d2744e3e08d4" + "FRANCESOUTH:20201107T140227Z:bfa9fe9e-b04b-4f85-9c02-15390ae0d362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5256,7 +5733,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 09:39:51 GMT" + "Sat, 07 Nov 2020 14:02:27 GMT" ], "Expires": [ "-1" @@ -5271,14 +5748,14 @@ ], "Names": { "Test-BackupCrud": [ - "ps4533", - "ps7450", - "ps6822", - "ps2320", - "ps3440", - "ps141", - "ps6742", - "ps6278" + "ps6919", + "ps4569", + "ps6755", + "ps29", + "ps9314", + "ps1580", + "ps327", + "ps9740" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json index bab25c93e2c7..f7d1d0d55e44 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7198?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzE5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5487?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTQ4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4e06b63-befa-4513-a475-826703041822" + "02307d94-6dd1-4771-9969-5082e9a39aa9" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + "83088968-dc2b-4bb5-812c-0594cfce9947" ], "x-ms-correlation-request-id": [ - "c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + "83088968-dc2b-4bb5-812c-0594cfce9947" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164311Z:c70a83c5-1f3c-4555-bdea-d07cf3e7c410" + "FRANCESOUTH:20201107T140546Z:83088968-dc2b-4bb5-812c-0594cfce9947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:43:10 GMT" + "Sat, 07 Nov 2020 14:05:45 GMT" ], "Content-Length": [ "173" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198\",\r\n \"name\": \"ps7198\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487\",\r\n \"name\": \"ps5487\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5205a309-d729-4aaf-88e4-73f7fbc902fe" + "1f4cbc78-85b8-49e7-aca5-7b4c7bdbc42d" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A43%3A18.2981206Z'\"" + "W/\"datetime'2020-11-07T14%3A05%3A52.2040054Z'\"" ], "x-ms-request-id": [ - "e6537e91-b88c-471c-969c-09009d18aaa5" + "e1278cfd-ff5b-4c01-b003-db6973e85ae5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/00b23f35-a2ea-4016-b906-536e71633ba2?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -120,13 +120,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "0169e309-5cd1-474c-a722-e5ea15111d84" + "d0cbf120-6ed5-486d-876e-7f685e1b3532" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164319Z:0169e309-5cd1-474c-a722-e5ea15111d84" + "FRANCESOUTH:20201107T140553Z:d0cbf120-6ed5-486d-876e-7f685e1b3532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:43:19 GMT" + "Sat, 07 Nov 2020 14:05:53 GMT" ], "Content-Length": [ "320" @@ -147,17 +147,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A18.2981206Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\",\r\n \"name\": \"ps4241\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A05%3A52.2040054Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4605626a-1da5-41da-bac9-97ecacc974a9" + "3919e3b6-0d0e-4c8b-8cc9-309bbc558867" ], "Accept-Language": [ "en-US" @@ -183,13 +183,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A17.3667923Z'\"" + "W/\"datetime'2020-11-07T14%3A10%3A52.8836133Z'\"" ], "x-ms-request-id": [ - "f3056425-5c4c-443d-abb5-841d7f727c32" + "09b902e9-8ca5-483c-ac62-07dee996e0ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9e7cb77-04d8-4acd-9c70-187d211f20ed?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -204,13 +204,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "1de6314d-ae22-49f7-bf62-a659134d5ff1" + "38a02b65-1e41-42bd-9be4-ac53d717277f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164819Z:1de6314d-ae22-49f7-bf62-a659134d5ff1" + "FRANCESOUTH:20201107T141054Z:38a02b65-1e41-42bd-9be4-ac53d717277f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -219,7 +219,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:18 GMT" + "Sat, 07 Nov 2020 14:10:54 GMT" ], "Content-Length": [ "320" @@ -231,12 +231,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A17.3667923Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\",\r\n \"name\": \"ps4241\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A10%3A52.8836133Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzI3ODJlNjJjLTcxODItNDFkZC1hMjNiLWVjMjhmZDUwOGQ4OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/00b23f35-a2ea-4016-b906-536e71633ba2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzAwYjIzZjM1LWEyZWEtNDAxNi1iOTA2LTUzNmU3MTYzM2JhMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -255,7 +255,7 @@ "no-cache" ], "x-ms-request-id": [ - "f900c003-34cc-449b-afbb-33caf97947d5" + "f1ffdcf6-fca3-42af-9c69-9eda4920cb6c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -270,13 +270,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "dfedcbd7-2809-457e-a0c2-e2a5e45a42df" + "07c2878b-010a-410d-a41e-43559e1056b4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164349Z:dfedcbd7-2809-457e-a0c2-e2a5e45a42df" + "FRANCESOUTH:20201107T140623Z:07c2878b-010a-410d-a41e-43559e1056b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,10 +285,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:43:49 GMT" + "Sat, 07 Nov 2020 14:06:22 GMT" ], "Content-Length": [ - "495" + "496" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,12 +297,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/2782e62c-7182-41dd-a23b-ec28fd508d88\",\r\n \"name\": \"2782e62c-7182-41dd-a23b-ec28fd508d88\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:43:18.242468Z\",\r\n \"endTime\": \"2020-10-28T16:43:18.3675002Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/00b23f35-a2ea-4016-b906-536e71633ba2\",\r\n \"name\": \"00b23f35-a2ea-4016-b906-536e71633ba2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:05:52.1121381Z\",\r\n \"endTime\": \"2020-11-07T14:05:52.2875258Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -321,10 +321,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A43%3A18.3731778Z'\"" + "W/\"datetime'2020-11-07T14%3A05%3A52.280059Z'\"" ], "x-ms-request-id": [ - "28165fa4-a02d-4ce7-81c3-fcd0c242ed00" + "03e8a0ac-5207-43e2-b0a8-f59444e2ad8f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -339,13 +339,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "835c6fd9-5fd8-4ced-b3ff-7d716be1b6d7" + "d7bafcc7-20ce-4160-9973-da0098b79f1d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164349Z:835c6fd9-5fd8-4ced-b3ff-7d716be1b6d7" + "FRANCESOUTH:20201107T140624Z:d7bafcc7-20ce-4160-9973-da0098b79f1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:43:49 GMT" + "Sat, 07 Nov 2020 14:06:23 GMT" ], "Content-Length": [ - "321" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,12 +366,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A18.3731778Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\",\r\n \"name\": \"ps4241\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A05%3A52.280059Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -390,10 +390,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A17.4318419Z'\"" + "W/\"datetime'2020-11-07T14%3A10%3A52.9506601Z'\"" ], "x-ms-request-id": [ - "88a8d8d4-7869-4596-8c42-2fe5a4f37615" + "060c3e14-2a42-47ce-91f8-0d529a2556a3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -408,13 +408,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11977" ], "x-ms-correlation-request-id": [ - "2d44616a-7432-40ab-a44e-078f7d1f4f4c" + "91950123-bcc4-4d00-8c7e-c93dbccc15fc" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164850Z:2d44616a-7432-40ab-a44e-078f7d1f4f4c" + "FRANCESOUTH:20201107T141125Z:91950123-bcc4-4d00-8c7e-c93dbccc15fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +423,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:49 GMT" + "Sat, 07 Nov 2020 14:11:25 GMT" ], "Content-Length": [ "349" @@ -435,17 +435,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\",\r\n \"name\": \"ps3091\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A17.4318419Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\",\r\n \"name\": \"ps4241\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A10%3A52.9506601Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d031ce5d-0642-4655-a6e1-8754880adb43" + "15a10b15-b051-47b1-ac9f-9917cae7a766" ], "Accept-Language": [ "en-US" @@ -471,13 +471,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A43%3A52.2008194Z'\"" + "W/\"datetime'2020-11-07T14%3A06%3A25.8607056Z'\"" ], "x-ms-request-id": [ - "84b94067-d60f-4fd6-83bd-c861f2a36e3f" + "95d10f99-298b-4828-ae4e-4246f622ab2e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/947df35c-f3fe-4131-9ae6-86a4cdd9f9ef?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -492,13 +492,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "e4b42252-6ddb-4746-9dbe-cf1e51529ad0" + "13867961-757c-4a03-ae51-cdb6b7b9923a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164353Z:e4b42252-6ddb-4746-9dbe-cf1e51529ad0" + "FRANCESOUTH:20201107T140626Z:13867961-757c-4a03-ae51-cdb6b7b9923a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,7 +507,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:43:53 GMT" + "Sat, 07 Nov 2020 14:06:25 GMT" ], "Content-Length": [ "465" @@ -519,12 +519,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.2008194Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518\",\r\n \"name\": \"ps4241/ps8518\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A06%3A25.8607056Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFkNDU3OTRiLThhNjYtNGZmMi04MzgxLTMyNzYwOGYzMDQxOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/947df35c-f3fe-4131-9ae6-86a4cdd9f9ef?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk0N2RmMzVjLWYzZmUtNDEzMS05YWU2LTg2YTRjZGQ5ZjllZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -543,7 +543,7 @@ "no-cache" ], "x-ms-request-id": [ - "f272e78b-61c8-44cc-9c0e-f76a65db1ad3" + "9310e767-74ae-4cd4-8470-e366996be5cf" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -558,13 +558,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-correlation-request-id": [ - "45f978f8-d63a-4f60-a4c4-e93d6e92b282" + "d723d55b-01a2-4083-9bdc-e038225b97eb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164423Z:45f978f8-d63a-4f60-a4c4-e93d6e92b282" + "FRANCESOUTH:20201107T140656Z:d723d55b-01a2-4083-9bdc-e038225b97eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:23 GMT" + "Sat, 07 Nov 2020 14:06:56 GMT" ], "Content-Length": [ "517" @@ -585,12 +585,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/1d45794b-8a66-4ff2-8381-327608f30419\",\r\n \"name\": \"1d45794b-8a66-4ff2-8381-327608f30419\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:43:52.1252813Z\",\r\n \"endTime\": \"2020-10-28T16:43:52.7625305Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/947df35c-f3fe-4131-9ae6-86a4cdd9f9ef\",\r\n \"name\": \"947df35c-f3fe-4131-9ae6-86a4cdd9f9ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:06:25.8190567Z\",\r\n \"endTime\": \"2020-11-07T14:06:26.0924483Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,10 +609,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\"" + "W/\"datetime'2020-11-07T14%3A06%3A26.0888665Z'\"" ], "x-ms-request-id": [ - "fb548c90-9c1b-4960-8c19-b15f5aff8ad8" + "2c573042-585f-414c-9af2-10cb9334ddf8" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -627,13 +627,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "f897b70f-d896-4c82-9c69-14e0c242d687" + "56035d00-f999-4752-89ea-b39b13b28f7e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164423Z:f897b70f-d896-4c82-9c69-14e0c242d687" + "FRANCESOUTH:20201107T140657Z:56035d00-f999-4752-89ea-b39b13b28f7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,7 +642,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:23 GMT" + "Sat, 07 Nov 2020 14:06:57 GMT" ], "Content-Length": [ "535" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a35609c9-ea11-e3a5-4404-b4d1132a28e7\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518\",\r\n \"name\": \"ps4241/ps8518\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A06%3A26.0888665Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"4a3e25ec-032d-54b3-4e30-9e1cf4d1d1a2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e8273a3-87e4-4374-b7e8-704088d7bd84" + "22793304-2665-475a-89b8-5315b48138eb" ], "Accept-Language": [ "en-US" @@ -684,10 +684,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\"" + "W/\"datetime'2020-11-07T14%3A06%3A26.0888665Z'\"" ], "x-ms-request-id": [ - "290851bc-29d1-4c04-9e46-48fe20f10fcc" + "7d5304b3-eeab-406f-9dc9-1c125ad1d930" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -702,13 +702,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-correlation-request-id": [ - "de18403b-1060-4f26-800c-a9de601aa467" + "8ae8eea3-167c-462c-acbc-c26b593cb983" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164440Z:de18403b-1060-4f26-800c-a9de601aa467" + "FRANCESOUTH:20201107T140714Z:8ae8eea3-167c-462c-acbc-c26b593cb983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,7 +717,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:39 GMT" + "Sat, 07 Nov 2020 14:07:14 GMT" ], "Content-Length": [ "535" @@ -729,17 +729,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158\",\r\n \"name\": \"ps3091/ps3158\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A43%3A52.7642455Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a35609c9-ea11-e3a5-4404-b4d1132a28e7\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518\",\r\n \"name\": \"ps4241/ps8518\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A06%3A26.0888665Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"4a3e25ec-032d-54b3-4e30-9e1cf4d1d1a2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2cb8fc6-a5a2-4261-999d-65ab36c8a04f" + "ccb9f934-5784-4d49-b4b4-ac97c36c6651" ], "Accept-Language": [ "en-US" @@ -762,13 +762,13 @@ "gateway" ], "x-ms-request-id": [ - "ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + "f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" ], "x-ms-correlation-request-id": [ - "ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + "f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164424Z:ae5e68d4-5cd1-40f0-9130-9bb92a87ddbf" + "FRANCESOUTH:20201107T140658Z:f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,7 +777,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:24 GMT" + "Sat, 07 Nov 2020 14:06:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,12 +789,12 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7198-vnet' under resource group 'ps7198' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5487-vnet' under resource group 'ps5487' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,16 +813,16 @@ "no-cache" ], "ETag": [ - "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + "W/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" ], "x-ms-request-id": [ - "e031733f-1c72-4d07-85a6-349bc8387538" + "acfc087a-e005-47a6-b521-cf2acc12ec39" ], "x-ms-correlation-request-id": [ - "45d39313-18c5-47f5-8f82-282bc183a5f9" + "6b65e7a0-fa0b-4075-b00c-9aec90ecaf39" ], "x-ms-arm-service-request-id": [ - "55a7a5f9-4b48-4ff1-9b9c-25a3308faa01" + "05204070-985d-4eb0-bc14-6d51b0a6b064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,13 +835,13 @@ "11997" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164435Z:45d39313-18c5-47f5-8f82-282bc183a5f9" + "FRANCESOUTH:20201107T140709Z:6b65e7a0-fa0b-4075-b00c-9aec90ecaf39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:34 GMT" + "Sat, 07 Nov 2020 14:07:09 GMT" ], "Content-Length": [ "649" @@ -853,17 +853,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"40add4d0-81b0-4ce6-af9b-ed2683677a40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0780a0-21db-48a0-a832-64d8f5941666" + "dafe753c-0d52-4274-8c52-4d04d864e792" ], "Accept-Language": [ "en-US" @@ -883,16 +883,16 @@ "no-cache" ], "ETag": [ - "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + "W/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" ], "x-ms-request-id": [ - "b74ebb27-b2d7-436d-ae70-d567c0c8cab2" + "a0ad22af-d632-4885-9da5-cfb212eb5e03" ], "x-ms-correlation-request-id": [ - "95d26c2c-7c55-47b6-97c3-5a3b915426b9" + "b9e4196a-d86c-457c-bc62-702a3cb3a00b" ], "x-ms-arm-service-request-id": [ - "5ff60756-9dd9-49ee-b178-9fcadcee1053" + "19d385c4-8810-4d63-aafb-b581cb2e0f0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -905,13 +905,13 @@ "11996" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164435Z:95d26c2c-7c55-47b6-97c3-5a3b915426b9" + "FRANCESOUTH:20201107T140709Z:b9e4196a-d86c-457c-bc62-702a3cb3a00b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:34 GMT" + "Sat, 07 Nov 2020 14:07:09 GMT" ], "Content-Length": [ "649" @@ -923,17 +923,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"40add4d0-81b0-4ce6-af9b-ed2683677a40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c555f2c0-1a5f-4ea2-837a-517cb740d0ae" + "183f9a8d-a2cd-4059-bd58-819339c0e87b" ], "Accept-Language": [ "en-US" @@ -953,16 +953,16 @@ "no-cache" ], "ETag": [ - "W/\"17bfdc89-7df9-43c0-8641-bc6d03144a34\"" + "W/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" ], "x-ms-request-id": [ - "95ec951c-d44f-4de3-babc-bfee4edfdb78" + "8fd8870d-bfea-41f0-892f-448c6d2f6d32" ], "x-ms-correlation-request-id": [ - "b911b64d-f5d2-46bc-9b3b-1c44649d1a61" + "a76bd582-8dac-4946-8fac-a93609aec393" ], "x-ms-arm-service-request-id": [ - "e7b9021c-4d59-4cf0-a532-c372d9cacc78" + "26f2b772-15ac-47b2-bf96-03a3173660f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,13 +975,13 @@ "11995" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164435Z:b911b64d-f5d2-46bc-9b3b-1c44649d1a61" + "FRANCESOUTH:20201107T140710Z:a76bd582-8dac-4946-8fac-a93609aec393" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:34 GMT" + "Sat, 07 Nov 2020 14:07:09 GMT" ], "Content-Length": [ "649" @@ -993,12 +993,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"17bfdc89-7df9-43c0-8641-bc6d03144a34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"40add4d0-81b0-4ce6-af9b-ed2683677a40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1017,16 +1017,16 @@ "no-cache" ], "ETag": [ - "W/\"a7dc37f3-19c3-431c-a424-986bdef2dad7\"" + "W/\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\"" ], "x-ms-request-id": [ - "4b5af1bb-d0ac-46fb-ade6-af49bde92d91" + "acdcd1ba-80d7-4bcf-aca5-4a3841e2f18a" ], "x-ms-correlation-request-id": [ - "e333e209-fce0-4998-a4d0-ffd3b6d89e78" + "e9ed4a40-6099-436e-8479-6bece1804f48" ], "x-ms-arm-service-request-id": [ - "6aa461a1-f754-483d-a587-8eb2dc8b8056" + "ffa19dd3-2092-410c-821e-d0052fb1ee54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,13 +1039,13 @@ "11993" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164440Z:e333e209-fce0-4998-a4d0-ffd3b6d89e78" + "FRANCESOUTH:20201107T140714Z:e9ed4a40-6099-436e-8479-6bece1804f48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:39 GMT" + "Sat, 07 Nov 2020 14:07:13 GMT" ], "Content-Length": [ "2184" @@ -1057,17 +1057,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b8a1c39-359e-4655-929c-e24805a23a1b" + "e7cf26b0-31b6-4479-9a9c-0a87c7d2da38" ], "Accept-Language": [ "en-US" @@ -1087,16 +1087,16 @@ "no-cache" ], "ETag": [ - "W/\"a7dc37f3-19c3-431c-a424-986bdef2dad7\"" + "W/\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\"" ], "x-ms-request-id": [ - "c258b65b-dc45-42fa-a0cf-3d8b77362fdd" + "463092af-14e3-4239-a7ae-51c916e955c3" ], "x-ms-correlation-request-id": [ - "4b9dbd3f-bb95-442f-8ef5-bb5cd4ce3f6d" + "1fece5ff-7e5e-4d29-bb6d-d9164bed4f5c" ], "x-ms-arm-service-request-id": [ - "128a647f-b69d-4656-979d-09a7290916ff" + "78cf1d8d-cd75-4903-a13c-ebcc6d5a74d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1109,13 +1109,13 @@ "11992" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164440Z:4b9dbd3f-bb95-442f-8ef5-bb5cd4ce3f6d" + "FRANCESOUTH:20201107T140714Z:1fece5ff-7e5e-4d29-bb6d-d9164bed4f5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:39 GMT" + "Sat, 07 Nov 2020 14:07:14 GMT" ], "Content-Length": [ "2184" @@ -1127,17 +1127,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a7dc37f3-19c3-431c-a424-986bdef2dad7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3095499a-e884-461f-9eba-60c0d846bdd6" + "ce8c44e4-3ab5-4b08-8b55-c89254c84176" ], "Accept-Language": [ "en-US" @@ -1166,19 +1166,19 @@ "3" ], "x-ms-request-id": [ - "b299c62c-7898-461e-93d4-49e065345b59" + "c60541a5-5ace-44cf-a3dc-320efeeb4387" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/b299c62c-7898-461e-93d4-49e065345b59?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/c60541a5-5ace-44cf-a3dc-320efeeb4387?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "80f00e18-ecef-44b2-bfac-47d631a089c1" + "84c27190-0667-4ab1-aed7-1e7df93feb21" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "addae080-5cb8-413f-bc89-77be6785886b" + "ec9f0b4d-0c93-4380-9d24-a6cd1707e698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,13 +1191,13 @@ "1199" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164431Z:80f00e18-ecef-44b2-bfac-47d631a089c1" + "FRANCESOUTH:20201107T140706Z:84c27190-0667-4ab1-aed7-1e7df93feb21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:30 GMT" + "Sat, 07 Nov 2020 14:07:05 GMT" ], "Content-Length": [ "648" @@ -1209,17 +1209,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"65a4f5e3-f5fa-47c1-8fec-cb0ba2a73a5b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"f3b6ead3-7bdd-4b70-9eff-ccdee97cff00\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE5OC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "db66aaf1-27e2-4c42-bbad-156097c79e76" + "4c843131-f693-4a04-85b3-d6239497e11c" ], "Accept-Language": [ "en-US" @@ -1248,16 +1248,16 @@ "3" ], "x-ms-request-id": [ - "ccb75040-ae76-497f-b50a-e5494f7bf929" + "cee00c63-089e-4ef3-adc6-75603f4be2a1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/ccb75040-ae76-497f-b50a-e5494f7bf929?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/cee00c63-089e-4ef3-adc6-75603f4be2a1?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "3aba9fc1-3e67-4068-adf8-adc43b13ef4f" + "44957720-a83a-4f96-b6d2-15cf48011aa3" ], "x-ms-arm-service-request-id": [ - "5b3605e2-5121-458e-b609-f13b7593d084" + "540ac156-64d7-4225-b2f4-6bf32ba54468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1270,13 +1270,13 @@ "1198" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164436Z:3aba9fc1-3e67-4068-adf8-adc43b13ef4f" + "FRANCESOUTH:20201107T140710Z:44957720-a83a-4f96-b6d2-15cf48011aa3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:35 GMT" + "Sat, 07 Nov 2020 14:07:10 GMT" ], "Content-Length": [ "2182" @@ -1288,12 +1288,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7198-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"784700ac-fd7f-4757-b22c-7c7b7204667c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"f6e17fe7-8960-4a75-9333-181a99209e00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5487-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"etag\": \"W/\\\"4fcde98f-7fb0-44c0-af64-0ab1d9d69ee7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5ebbbfbf-35c9-4db4-bf7e-4bc81d05463f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"4fcde98f-7fb0-44c0-af64-0ab1d9d69ee7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"4fcde98f-7fb0-44c0-af64-0ab1d9d69ee7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/b299c62c-7898-461e-93d4-49e065345b59?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9iMjk5YzYyYy03ODk4LTQ2MWUtOTNkNC00OWUwNjUzNDViNTk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/c60541a5-5ace-44cf-a3dc-320efeeb4387?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jNjA1NDFhNS01YWNlLTQ0Y2YtYTNkYy0zMjBlZmVlYjQzODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1312,13 +1312,13 @@ "no-cache" ], "x-ms-request-id": [ - "f3a4d0e4-a405-4dbd-bd8f-9a2df23468ad" + "218d3e10-b9ef-40c1-b52d-3f267cb345c8" ], "x-ms-correlation-request-id": [ - "c7d214a4-f3ae-4a7a-87b8-e42a00a9945b" + "6d5d527a-d3eb-4474-b26b-098211497f87" ], "x-ms-arm-service-request-id": [ - "17850c9e-ba42-4c45-9084-ce5c839ecd2d" + "a735e83b-33a6-4343-b982-9bc1ca619f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1331,13 +1331,13 @@ "11998" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164434Z:c7d214a4-f3ae-4a7a-87b8-e42a00a9945b" + "FRANCESOUTH:20201107T140709Z:6d5d527a-d3eb-4474-b26b-098211497f87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:34 GMT" + "Sat, 07 Nov 2020 14:07:09 GMT" ], "Content-Length": [ "29" @@ -1353,8 +1353,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/ccb75040-ae76-497f-b50a-e5494f7bf929?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jY2I3NTA0MC1hZTc2LTQ5N2YtYjUwYS1lNTQ5NGY3YmY5Mjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/southcentralus/operations/cee00c63-089e-4ef3-adc6-75603f4be2a1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jZWUwMGM2My0wODllLTRlZjMtYWRjNi03NTYwM2Y0YmUyYTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,13 +1373,13 @@ "no-cache" ], "x-ms-request-id": [ - "d2493df7-e7c0-4f8b-a58c-f071ee6720f1" + "abdc6857-3f3f-4f98-abe7-fad776f5c261" ], "x-ms-correlation-request-id": [ - "21433a92-faa7-4eff-a551-313bd40fba7f" + "7ba9f3f3-7bc4-4eca-9a57-4160b0b0a283" ], "x-ms-arm-service-request-id": [ - "6de5a3b6-9332-43aa-b00a-97edad5d8fc7" + "a9082932-97fd-43f8-bd75-f1cb031395e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,13 +1392,13 @@ "11994" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164439Z:21433a92-faa7-4eff-a551-313bd40fba7f" + "FRANCESOUTH:20201107T140714Z:7ba9f3f3-7bc4-4eca-9a57-4160b0b0a283" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:38 GMT" + "Sat, 07 Nov 2020 14:07:13 GMT" ], "Content-Length": [ "29" @@ -1414,13 +1414,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3329224d-2f16-42e0-b62d-82d6807b3d32" + "1aceaef2-88c2-48f2-b0f6-6807b810e830" ], "Accept-Language": [ "en-US" @@ -1446,13 +1446,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A44%3A42.547975Z'\"" + "W/\"datetime'2020-11-07T14%3A07%3A18.598835Z'\"" ], "x-ms-request-id": [ - "3df90d6e-2db9-45d6-b3c3-aedddd1d61a4" + "c209b22f-6067-4488-bf51-3cf34c7dd577" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1467,13 +1467,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "7ad5bafd-a154-40af-82c5-f2e86a8bf2d6" + "edfcd2cc-ddb6-476b-8b4d-9d673664520d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164443Z:7ad5bafd-a154-40af-82c5-f2e86a8bf2d6" + "FRANCESOUTH:20201107T140719Z:edfcd2cc-ddb6-476b-8b4d-9d673664520d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1482,7 +1482,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:44:42 GMT" + "Sat, 07 Nov 2020 14:07:19 GMT" ], "Content-Length": [ "687" @@ -1494,12 +1494,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A44%3A42.547975Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A07%3A18.598835Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1518,7 +1518,7 @@ "no-cache" ], "x-ms-request-id": [ - "13ace9f1-48c6-481c-8143-d323f09a1a0e" + "88ba7f20-ec7e-4617-8978-3bf75f607305" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1533,13 +1533,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11986" ], "x-ms-correlation-request-id": [ - "e2ff6130-8406-451b-95b8-cefb7acee5fd" + "2e73bdc1-f50a-4ad1-9004-caa84ca9b2c6" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164513Z:e2ff6130-8406-451b-95b8-cefb7acee5fd" + "FRANCESOUTH:20201107T140749Z:2e73bdc1-f50a-4ad1-9004-caa84ca9b2c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1548,7 +1548,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:45:13 GMT" + "Sat, 07 Nov 2020 14:07:49 GMT" ], "Content-Length": [ "521" @@ -1560,12 +1560,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1584,7 +1584,7 @@ "no-cache" ], "x-ms-request-id": [ - "a4cc1887-37d8-431b-8824-20d5d545b00e" + "95b22cdc-5e49-4369-accc-61c19c77b75e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1599,13 +1599,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11985" ], "x-ms-correlation-request-id": [ - "6acfe07d-a397-4fe6-a85d-1b66ffc29cdd" + "49b37fb3-b69b-4acf-b989-273f7edb88f2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164544Z:6acfe07d-a397-4fe6-a85d-1b66ffc29cdd" + "FRANCESOUTH:20201107T140819Z:49b37fb3-b69b-4acf-b989-273f7edb88f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1614,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:45:43 GMT" + "Sat, 07 Nov 2020 14:08:19 GMT" ], "Content-Length": [ "521" @@ -1626,12 +1626,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,7 +1650,7 @@ "no-cache" ], "x-ms-request-id": [ - "c23a19dd-997d-4c22-a648-65c9da7b27ae" + "676a884d-7e54-4480-acb8-1c7e889bfb7a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1665,13 +1665,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11984" ], "x-ms-correlation-request-id": [ - "97facb45-3e1d-4165-a8a4-69846db4903c" + "4ddb6b16-abdb-42a8-8996-7f3ee9b9baf9" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164614Z:97facb45-3e1d-4165-a8a4-69846db4903c" + "FRANCESOUTH:20201107T140850Z:4ddb6b16-abdb-42a8-8996-7f3ee9b9baf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1680,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:46:13 GMT" + "Sat, 07 Nov 2020 14:08:49 GMT" ], "Content-Length": [ "521" @@ -1692,12 +1692,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1716,7 +1716,7 @@ "no-cache" ], "x-ms-request-id": [ - "cb96695d-b068-4c0d-addb-753befd1c7eb" + "c98b74ca-cb9b-4857-9c6d-74779dfca2d7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1731,13 +1731,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11983" ], "x-ms-correlation-request-id": [ - "f927a336-75dd-48c1-b04a-01a46081c0bb" + "05ce78c7-cc00-4dcd-b799-cdfefa0005b1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164644Z:f927a336-75dd-48c1-b04a-01a46081c0bb" + "FRANCESOUTH:20201107T140920Z:05ce78c7-cc00-4dcd-b799-cdfefa0005b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1746,7 +1746,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:46:44 GMT" + "Sat, 07 Nov 2020 14:09:19 GMT" ], "Content-Length": [ "521" @@ -1758,12 +1758,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1782,7 +1782,7 @@ "no-cache" ], "x-ms-request-id": [ - "96de1dfb-a749-4cf8-8f54-188872fd8deb" + "360c9bec-b203-4a8d-97dc-f7c25f29f251" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1797,13 +1797,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-correlation-request-id": [ - "2bf2c7d7-d571-4403-af8a-2ce09c5705c3" + "09f306d6-2fed-47fe-b65b-159ec5b82076" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164714Z:2bf2c7d7-d571-4403-af8a-2ce09c5705c3" + "FRANCESOUTH:20201107T140950Z:09f306d6-2fed-47fe-b65b-159ec5b82076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1812,7 +1812,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:47:13 GMT" + "Sat, 07 Nov 2020 14:09:49 GMT" ], "Content-Length": [ "521" @@ -1824,12 +1824,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1848,7 +1848,7 @@ "no-cache" ], "x-ms-request-id": [ - "e3709e66-be36-425d-9d31-59aab44bfdd1" + "68ec5358-7696-4fc8-a15d-f966a2cafdd2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1856,20 +1856,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], "x-ms-correlation-request-id": [ - "d031f568-c1ae-4f69-9d6a-34bd6c2246ee" + "ad8fb903-ab84-4642-8848-13fc0af91339" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164745Z:d031f568-c1ae-4f69-9d6a-34bd6c2246ee" + "FRANCESOUTH:20201107T141020Z:ad8fb903-ab84-4642-8848-13fc0af91339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1878,7 +1878,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:47:44 GMT" + "Sat, 07 Nov 2020 14:10:20 GMT" ], "Content-Length": [ "521" @@ -1890,12 +1890,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZTM4OWY3LTM3MGMtNDE4OC1hZWE1LWYxMTFkMjEyMjYwYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1914,7 +1914,7 @@ "no-cache" ], "x-ms-request-id": [ - "dabc9ec3-4e12-435a-b3b5-6719802437e0" + "5a86cbaf-36c1-4dd3-85f6-a124002c8f27" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1922,20 +1922,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], "x-ms-correlation-request-id": [ - "90941157-84e5-465a-ba01-aa6b28a08878" + "067cf220-6c96-4274-bfba-6c1181fcd81e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164815Z:90941157-84e5-465a-ba01-aa6b28a08878" + "FRANCESOUTH:20201107T141050Z:067cf220-6c96-4274-bfba-6c1181fcd81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1944,7 +1944,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:15 GMT" + "Sat, 07 Nov 2020 14:10:50 GMT" ], "Content-Length": [ "532" @@ -1956,12 +1956,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"name\": \"e7e389f7-370c-4188-aea5-f111d212260a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:44:42.4866063Z\",\r\n \"endTime\": \"2020-10-28T16:47:59.0212245Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"name\": \"efecca40-9b4e-4e71-89ff-9c2356b96ed3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:07:18.5379962Z\",\r\n \"endTime\": \"2020-11-07T14:10:35.1070222Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,10 +1980,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A47%3A59.0248925Z'\"" + "W/\"datetime'2020-11-07T14%3A10%3A35.0981863Z'\"" ], "x-ms-request-id": [ - "7f2b97da-5134-49c0-ab9f-6774381b20ec" + "6383f97e-a6dd-46c1-b6ca-17b3e69415b6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1998,13 +1998,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11979" ], "x-ms-correlation-request-id": [ - "9004ecb0-bb79-43af-be85-1a3127316b70" + "0212ee15-d50e-4ed2-abc2-2939f70be62d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164816Z:9004ecb0-bb79-43af-be85-1a3127316b70" + "FRANCESOUTH:20201107T141051Z:0212ee15-d50e-4ed2-abc2-2939f70be62d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2013,7 +2013,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:15 GMT" + "Sat, 07 Nov 2020 14:10:51 GMT" ], "Content-Length": [ "1508" @@ -2025,17 +2025,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A47%3A59.0248925Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A10%3A35.0981863Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"name\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_272e46f8\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae4e711d-7ba2-46f3-b93a-d0d0cf109970" + "35cfa90f-3e35-4ad5-81b2-7f96e05f819f" ], "Accept-Language": [ "en-US" @@ -2055,10 +2055,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + "W/\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\"" ], "x-ms-request-id": [ - "d3519e7e-fded-4c99-9f10-0a50a3ee2d41" + "5b9004e8-85ad-42fa-9468-eee2a3d63647" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2073,13 +2073,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11975" ], "x-ms-correlation-request-id": [ - "50ef2e70-29cc-470f-8fec-0afa8e639dae" + "3dcab2b8-d522-4bae-9ede-e05b0f3a6654" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164854Z:50ef2e70-29cc-470f-8fec-0afa8e639dae" + "FRANCESOUTH:20201107T141130Z:3dcab2b8-d522-4bae-9ede-e05b0f3a6654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,7 +2088,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:53 GMT" + "Sat, 07 Nov 2020 14:11:29 GMT" ], "Content-Length": [ "1732" @@ -2100,17 +2100,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"name\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_272e46f8\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4715e52e-a479-4238-aa5a-7d4133704e6c" + "bf22fec2-8e99-47c1-8e59-a837fed08a9e" ], "Accept-Language": [ "en-US" @@ -2130,10 +2130,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + "W/\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\"" ], "x-ms-request-id": [ - "8d28be25-ac26-4b2c-8973-454bba945d5f" + "997da6da-8a94-426a-9cbc-c51bd3cda164" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2148,13 +2148,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11972" ], "x-ms-correlation-request-id": [ - "702cb3dd-e117-40b9-b205-c3008ff743f2" + "05daf193-a808-4b03-8385-68f76cbfc479" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164925Z:702cb3dd-e117-40b9-b205-c3008ff743f2" + "FRANCESOUTH:20201107T141201Z:05daf193-a808-4b03-8385-68f76cbfc479" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2163,7 +2163,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:25 GMT" + "Sat, 07 Nov 2020 14:12:01 GMT" ], "Content-Length": [ "1732" @@ -2175,17 +2175,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"name\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_272e46f8\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d44cda-e21b-445c-bddd-c0340023ad07" + "596933e0-79cd-4d26-9acf-8fdb6965c40f" ], "Accept-Language": [ "en-US" @@ -2205,10 +2205,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\"" + "W/\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\"" ], "x-ms-request-id": [ - "1609f141-3489-4cc4-897a-519ff08920d2" + "ed6ac2e9-3c52-4ee4-87de-e315169837f2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2223,13 +2223,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11967" ], "x-ms-correlation-request-id": [ - "83e4d50a-4f46-4a63-b1ad-ef4ae2886f8d" + "30797238-4f80-430d-82c7-746e28edf233" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165003Z:83e4d50a-4f46-4a63-b1ad-ef4ae2886f8d" + "FRANCESOUTH:20201107T141240Z:30797238-4f80-430d-82c7-746e28edf233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2238,7 +2238,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:02 GMT" + "Sat, 07 Nov 2020 14:12:39 GMT" ], "Content-Length": [ "1732" @@ -2250,12 +2250,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A53.7093379Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A11%3A29.4781825Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"name\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_272e46f8\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzA3NDUzZWYwLTU5NDctNGY0NC05MmQ4LWM3YWNmYjFmYjk2ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9e7cb77-04d8-4acd-9c70-187d211f20ed?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Q5ZTdjYjc3LTA0ZDgtNGFjZC05YzcwLTE4N2QyMTFmMjBlZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2274,7 +2274,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a1891fe-0210-4481-8d5c-7297305b08ec" + "fe555793-7853-459a-9d2b-588ef4c7dcc3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2289,13 +2289,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11978" ], "x-ms-correlation-request-id": [ - "adc5d66d-f6ae-4433-bdd1-78a3cdebbe9c" + "bb8b24de-aac8-4031-9d10-6c5c53448f3e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164849Z:adc5d66d-f6ae-4433-bdd1-78a3cdebbe9c" + "FRANCESOUTH:20201107T141125Z:bb8b24de-aac8-4031-9d10-6c5c53448f3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2304,7 +2304,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:49 GMT" + "Sat, 07 Nov 2020 14:11:25 GMT" ], "Content-Length": [ "496" @@ -2316,17 +2316,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/07453ef0-5947-4f44-92d8-c7acfb1fb96d\",\r\n \"name\": \"07453ef0-5947-4f44-92d8-c7acfb1fb96d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:48:17.3230844Z\",\r\n \"endTime\": \"2020-10-28T16:48:17.4324552Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/d9e7cb77-04d8-4acd-9c70-187d211f20ed\",\r\n \"name\": \"d9e7cb77-04d8-4acd-9c70-187d211f20ed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:10:52.8187364Z\",\r\n \"endTime\": \"2020-11-07T14:10:52.9543841Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ca9e323-be1e-424b-8d32-25d6fbe36b99" + "68d813fa-82ae-48f3-9e21-5732fe765c43" ], "Accept-Language": [ "en-US" @@ -2346,7 +2346,7 @@ "no-cache" ], "x-ms-request-id": [ - "6a1319d5-1f22-4b9c-bc73-72f48cd2f339" + "310812be-0b63-4096-9662-dedb25788d86" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2361,13 +2361,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11976" ], "x-ms-correlation-request-id": [ - "97748a2a-8186-4f1b-afcf-add68db05d79" + "c8ce72fd-07f7-47c5-8332-980bf7ae0dce" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164850Z:97748a2a-8186-4f1b-afcf-add68db05d79" + "FRANCESOUTH:20201107T141125Z:c8ce72fd-07f7-47c5-8332-980bf7ae0dce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2376,7 +2376,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:49 GMT" + "Sat, 07 Nov 2020 14:11:25 GMT" ], "Content-Length": [ "311" @@ -2388,17 +2388,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\",\r\n \"name\": \"ps3091/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\",\r\n \"name\": \"ps4241/cbsvault\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/vaults\",\r\n \"properties\": {\r\n \"enabled\": true,\r\n \"vaultId\": \"e738a1bf-e20d-11ea-9877-9250096475fd\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\",\r\n \"backupEnabled\": true\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "78a095cd-bd93-45ba-87dc-915dacf4e04e" + "870380f3-9294-499a-93d2-ea4ae1f558fb" ], "Accept-Language": [ "en-US" @@ -2424,10 +2424,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-28T16%3A48%3A50.7430903Z'\"" + "W/\"datetime'2020-11-07T14%3A11%3A25.9747346Z'\"" ], "x-ms-request-id": [ - "a03adbd1-cc38-487d-b36b-0bf9700e13d5" + "c436d1f4-9c9b-42cb-bab4-2f3bf4a433eb" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2442,13 +2442,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "1f3541f0-a2fd-4995-893a-5ebef9f74028" + "d2d9be7c-7216-45dd-8156-26dae081c7ae" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164853Z:1f3541f0-a2fd-4995-893a-5ebef9f74028" + "FRANCESOUTH:20201107T141129Z:d2d9be7c-7216-45dd-8156-26dae081c7ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,7 +2457,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:53 GMT" + "Sat, 07 Nov 2020 14:11:29 GMT" ], "Content-Length": [ "1732" @@ -2469,17 +2469,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718\",\r\n \"name\": \"ps3091/ps3158/ps3718\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-28T16%3A48%3A50.7430903Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"name\": \"ps3718\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3718\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_182f6e17\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.Network/virtualNetworks/ps7198-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038\",\r\n \"name\": \"ps4241/ps8518/ps9038\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-07T14%3A11%3A25.9747346Z'\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"backup\": {\r\n \"backupEnabled\": true,\r\n \"policyEnforced\": true,\r\n \"vaultId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults/cbsvault\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"name\": \"ps9038\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9038\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_f78e3b96807a11e9adbb3283d4934d27_272e46f8\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"label\": \"powershellBackupPipelineTest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "15909a80-4c24-4237-b657-17213ebcf7ac" + "a7792eb4-5b5d-4a6e-906d-b6bdd7b917d5" ], "Accept-Language": [ "en-US" @@ -2505,13 +2505,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3ff95be3-3fd5-4933-932f-90e5be9b03b1?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "0603448e-4351-406c-9b23-91c48e610a80" + "1d408f3e-4eeb-4032-984c-14e41d2dfa05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3ff95be3-3fd5-4933-932f-90e5be9b03b1?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2526,13 +2526,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "13a7dc21-6d50-4c1b-9436-647bf8e51cea" + "56837456-d37b-4d61-9989-2e6f6cc622af" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164854Z:13a7dc21-6d50-4c1b-9436-647bf8e51cea" + "FRANCESOUTH:20201107T141130Z:56837456-d37b-4d61-9989-2e6f6cc622af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2541,7 +2541,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:48:54 GMT" + "Sat, 07 Nov 2020 14:11:30 GMT" ], "Content-Length": [ "457" @@ -2553,12 +2553,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"label\": \"powershellBackupPipelineTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"label\": \"powershellBackupPipelineTest\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2I0YWJhMzRjLWQ5YzQtNDMwMC04NTBkLWUwZWZhYzc1Yjg5NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3ff95be3-3fd5-4933-932f-90e5be9b03b1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzNmZjk1YmUzLTNmZDUtNDkzMy05MzJmLTkwZTViZTliMDNiMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2577,7 +2577,7 @@ "no-cache" ], "x-ms-request-id": [ - "8cb392fb-ffbb-4fc6-91a7-1b8f9dd448c6" + "84b4da6d-7220-4610-976d-4e601fde9f9d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2592,13 +2592,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11974" ], "x-ms-correlation-request-id": [ - "99cef42c-b39f-4122-a5d9-1b5158c5667e" + "5650035e-cb21-495a-88f5-ef8898fb5163" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164925Z:99cef42c-b39f-4122-a5d9-1b5158c5667e" + "FRANCESOUTH:20201107T141201Z:5650035e-cb21-495a-88f5-ef8898fb5163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2607,7 +2607,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:24 GMT" + "Sat, 07 Nov 2020 14:12:01 GMT" ], "Content-Length": [ "547" @@ -2619,12 +2619,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/b4aba34c-d9c4-4300-850d-e0efac75b895\",\r\n \"name\": \"b4aba34c-d9c4-4300-850d-e0efac75b895\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:48:54.7358585Z\",\r\n \"endTime\": \"2020-10-28T16:48:54.9078297Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/3ff95be3-3fd5-4933-932f-90e5be9b03b1\",\r\n \"name\": \"3ff95be3-3fd5-4933-932f-90e5be9b03b1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:11:30.6949014Z\",\r\n \"endTime\": \"2020-11-07T14:11:30.8721379Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2643,7 +2643,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e1ad08c-c58f-4f73-9748-69b9670d57fb" + "c71a2ff9-0c32-4901-af32-4924bac85e99" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2658,13 +2658,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11973" ], "x-ms-correlation-request-id": [ - "3e8150b2-90ee-4ba7-8117-220957c8c57a" + "ead84081-7a9c-4218-b102-71bab2fa7fdb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164925Z:3e8150b2-90ee-4ba7-8117-220957c8c57a" + "FRANCESOUTH:20201107T141201Z:ead84081-7a9c-4218-b102-71bab2fa7fdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,7 +2673,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:25 GMT" + "Sat, 07 Nov 2020 14:12:01 GMT" ], "Content-Length": [ "513" @@ -2685,17 +2685,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"creationDate\": \"2020-11-07T14:11:30Z\",\r\n \"backupId\": \"36821f23-0121-0cce-38b0-8d9e087e1e85\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0b67056-f3c9-4140-8312-79f0a3494108" + "18618723-83d0-41ad-b514-cda37a103a6f" ], "Accept-Language": [ "en-US" @@ -2715,7 +2715,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6e4d542-4e6f-4c38-b36d-56c866ec2b68" + "8a0ad977-1c7d-4f4a-a3e1-8af98c885562" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2730,13 +2730,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11970" ], "x-ms-correlation-request-id": [ - "81c6fbec-e1c2-4a01-86b4-2837cafaf916" + "c5bbf842-c5a5-4cab-afd0-a3b5439cbc02" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164931Z:81c6fbec-e1c2-4a01-86b4-2837cafaf916" + "FRANCESOUTH:20201107T141208Z:c5bbf842-c5a5-4cab-afd0-a3b5439cbc02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,7 +2745,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:31 GMT" + "Sat, 07 Nov 2020 14:12:08 GMT" ], "Content-Length": [ "513" @@ -2757,17 +2757,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"creationDate\": \"2020-11-07T14:11:30Z\",\r\n \"backupId\": \"36821f23-0121-0cce-38b0-8d9e087e1e85\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"label\": \"powershellUpdateBackupPipelineTest\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "911f8ab1-9d20-401a-a88e-0445bd067405" + "96ee8895-4732-4e68-8c9b-258cccedbd67" ], "Accept-Language": [ "en-US" @@ -2793,7 +2793,7 @@ "no-cache" ], "x-ms-request-id": [ - "ccb49733-a53a-428c-8756-30a200a18c48" + "8a8a6317-d4ea-4976-9bca-17023e05474d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2808,13 +2808,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-correlation-request-id": [ - "f41ba1c1-4cdd-4ec5-89b1-4078ec4eb255" + "a121347b-b61f-4e17-91ee-7c110a2c20be" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164931Z:f41ba1c1-4cdd-4ec5-89b1-4078ec4eb255" + "FRANCESOUTH:20201107T141208Z:a121347b-b61f-4e17-91ee-7c110a2c20be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2823,10 +2823,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:30 GMT" + "Sat, 07 Nov 2020 14:12:07 GMT" ], "Content-Length": [ - "546" + "545" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,17 +2835,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"etag\": \"10/28/2020 4:49:31 PM\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"etag\": \"11/7/2020 2:12:08 PM\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"creationDate\": \"2020-11-07T14:11:30Z\",\r\n \"backupId\": \"36821f23-0121-0cce-38b0-8d9e087e1e85\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01a9fefc-0691-4ee9-8d66-06959dc676c3" + "68c5e222-e903-48ef-8469-cd91b4995ca6" ], "Accept-Language": [ "en-US" @@ -2865,7 +2865,7 @@ "no-cache" ], "x-ms-request-id": [ - "6bc00256-874f-4b7c-a66a-f83c8e3a198f" + "e2c3e5e1-7d8b-4873-b23e-79091f3dfb52" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2880,13 +2880,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11971" ], "x-ms-correlation-request-id": [ - "cf8d25e8-5ff8-4687-a0e4-14a4f28d2275" + "319b9234-7a37-4828-ba25-91d355976027" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164931Z:cf8d25e8-5ff8-4687-a0e4-14a4f28d2275" + "FRANCESOUTH:20201107T141208Z:319b9234-7a37-4828-ba25-91d355976027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2895,7 +2895,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:31 GMT" + "Sat, 07 Nov 2020 14:12:08 GMT" ], "Content-Length": [ "525" @@ -2907,17 +2907,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e628dec3-ee31-456e-b233-b7116ca57ebc\",\r\n \"creationDate\": \"2020-10-28T16:48:54Z\",\r\n \"backupId\": \"e4e1b8b0-d7d4-9106-b63f-d68a08723f01\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"fileSystemId\": \"e34ced21-cc6b-cdc6-81e6-8d6e5524a52d\",\r\n \"creationDate\": \"2020-11-07T14:11:30Z\",\r\n \"backupId\": \"36821f23-0121-0cce-38b0-8d9e087e1e85\",\r\n \"size\": 0,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c91f5620-b5b3-44e8-8975-2cd08bcde55c" + "b9678e27-9284-4207-a9ea-c9568b399aea" ], "Accept-Language": [ "en-US" @@ -2937,7 +2937,7 @@ "no-cache" ], "x-ms-request-id": [ - "5a3e174c-e3dc-444f-8ef3-807490af36a0" + "40f5c60e-9b4d-4624-bb81-5bd6ee418375" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2952,13 +2952,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11966" ], "x-ms-correlation-request-id": [ - "0b02625f-7e7e-4ccd-8af2-68a830caff26" + "4baae9c2-f73d-4074-bac9-41eb2cdf66d1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165003Z:0b02625f-7e7e-4ccd-8af2-68a830caff26" + "FRANCESOUTH:20201107T141240Z:4baae9c2-f73d-4074-bac9-41eb2cdf66d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2967,7 +2967,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:02 GMT" + "Sat, 07 Nov 2020 14:12:39 GMT" ], "Content-Length": [ "12" @@ -2983,13 +2983,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzE5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwOTEvY2FwYWNpdHlQb29scy9wczMxNTgvdm9sdW1lcy9wczM3MTgvYmFja3Vwcy9wczE3ODE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "054f4967-c232-4314-b5b1-c16023464798" + "a2763173-b899-461d-8cf4-2006d0861ac3" ], "Accept-Language": [ "en-US" @@ -3009,13 +3009,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "a489e2d5-e437-49ac-8ce9-2d795d2f0a02" + "a0fff318-446b-4677-b79e-3931a424e040" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3033,10 +3033,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "f85cf376-084e-4280-8065-7d6976c8e66c" + "bfdb5432-135c-4786-9231-a9855118600a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T164932Z:f85cf376-084e-4280-8065-7d6976c8e66c" + "FRANCESOUTH:20201107T141209Z:bfdb5432-135c-4786-9231-a9855118600a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3045,7 +3045,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:49:31 GMT" + "Sat, 07 Nov 2020 14:12:08 GMT" ], "Expires": [ "-1" @@ -3058,8 +3058,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExZjY5N2RkLWM4OWEtNDJjNS1hZDJhLWI2NTlhYWYwNjM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhhZDRmNDQyLTk1ZmQtNDRiYi05Yjk4LTg2ZWM5ZjkzNjA5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3078,7 +3078,7 @@ "no-cache" ], "x-ms-request-id": [ - "a6a3396f-7f0a-442e-b3bc-b867936d2bec" + "0a19e5cc-7c4d-4caa-8e29-6816923af11e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3093,13 +3093,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11969" ], "x-ms-correlation-request-id": [ - "f0ad8a98-0b6c-4577-8ca6-1bfba4b345e8" + "899b1fcc-5da0-48e6-8527-133d1f76d72b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165002Z:f0ad8a98-0b6c-4577-8ca6-1bfba4b345e8" + "FRANCESOUTH:20201107T141239Z:899b1fcc-5da0-48e6-8527-133d1f76d72b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3108,10 +3108,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:01 GMT" + "Sat, 07 Nov 2020 14:12:39 GMT" ], "Content-Length": [ - "546" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3120,12 +3120,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385\",\r\n \"name\": \"11f697dd-c89a-42c5-ad2a-b659aaf06385\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-28T16:49:32.092571Z\",\r\n \"endTime\": \"2020-10-28T16:49:34.2596317Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8ad4f442-95fd-44bb-9b98-86ec9f936098\",\r\n \"name\": \"8ad4f442-95fd-44bb-9b98-86ec9f936098\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-07T14:12:09.1205212Z\",\r\n \"endTime\": \"2020-11-07T14:12:11.0618407Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/11f697dd-c89a-42c5-ad2a-b659aaf06385?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzExZjY5N2RkLWM4OWEtNDJjNS1hZDJhLWI2NTlhYWYwNjM4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/southcentralus/operationResults/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhhZDRmNDQyLTk1ZmQtNDRiYi05Yjk4LTg2ZWM5ZjkzNjA5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3144,7 +3144,7 @@ "no-cache" ], "x-ms-request-id": [ - "7453d744-8c90-40e5-9fd5-0038559920fd" + "92b19a89-9ea5-4fd1-90af-4ca47c0b83a7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3159,13 +3159,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11968" ], "x-ms-correlation-request-id": [ - "6d0dd149-cfcf-4c54-b65e-308be6461549" + "f961ddd8-9383-43ea-91af-e8e335d6aeee" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165002Z:6d0dd149-cfcf-4c54-b65e-308be6461549" + "FRANCESOUTH:20201107T141239Z:f961ddd8-9383-43ea-91af-e8e335d6aeee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3174,7 +3174,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:01 GMT" + "Sat, 07 Nov 2020 14:12:39 GMT" ], "Content-Length": [ "318" @@ -3186,17 +3186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7198/providers/Microsoft.NetApp/netAppAccounts/ps3091/capacityPools/ps3158/volumes/ps3718/backups/ps1781\",\r\n \"name\": \"ps3091/ps3158/ps3718/ps1781\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887\",\r\n \"name\": \"ps4241/ps8518/ps9038/ps9887\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups\",\r\n \"location\": \"southcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7198?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzE5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5487?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTQ4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5e4533-f33e-4ae3-bb91-6bb77771b474" + "c1b99285-bdec-45f8-a477-104dd4bac4ad" ], "Accept-Language": [ "en-US" @@ -3216,7 +3216,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3225,13 +3225,469 @@ "14999" ], "x-ms-request-id": [ - "9e381341-e368-4386-94e6-db9ae93df4a4" + "410d2346-4d4b-48a2-979c-849df7eceaae" + ], + "x-ms-correlation-request-id": [ + "410d2346-4d4b-48a2-979c-849df7eceaae" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141244Z:410d2346-4d4b-48a2-979c-849df7eceaae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "58d932c9-742a-4f60-bae2-af264c50f785" + ], + "x-ms-correlation-request-id": [ + "58d932c9-742a-4f60-bae2-af264c50f785" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141259Z:58d932c9-742a-4f60-bae2-af264c50f785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4562dd7e-8dd6-4881-9dad-767c5ef9b69a" + ], + "x-ms-correlation-request-id": [ + "4562dd7e-8dd6-4881-9dad-767c5ef9b69a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141314Z:4562dd7e-8dd6-4881-9dad-767c5ef9b69a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:13:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "06b537b9-78b2-474c-9737-79604b08b3e7" + ], + "x-ms-correlation-request-id": [ + "06b537b9-78b2-474c-9737-79604b08b3e7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141330Z:06b537b9-78b2-474c-9737-79604b08b3e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:13:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "00b2ad77-e71f-4116-bdda-eb86cbfa1454" + ], + "x-ms-correlation-request-id": [ + "00b2ad77-e71f-4116-bdda-eb86cbfa1454" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141345Z:00b2ad77-e71f-4116-bdda-eb86cbfa1454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:13:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "546d8141-ab86-4ad3-bed5-080ce74508e5" + ], + "x-ms-correlation-request-id": [ + "546d8141-ab86-4ad3-bed5-080ce74508e5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141400Z:546d8141-ab86-4ad3-bed5-080ce74508e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:14:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "63399bdb-82b2-49c0-aaec-8e830f07fbbb" + ], + "x-ms-correlation-request-id": [ + "63399bdb-82b2-49c0-aaec-8e830f07fbbb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141416Z:63399bdb-82b2-49c0-aaec-8e830f07fbbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:14:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "fd97e168-7890-4770-8705-6d20f239e5cc" + ], + "x-ms-correlation-request-id": [ + "fd97e168-7890-4770-8705-6d20f239e5cc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141431Z:fd97e168-7890-4770-8705-6d20f239e5cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:14:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "603caf44-31b0-4435-a4f0-5b6328c99a3c" ], "x-ms-correlation-request-id": [ - "9e381341-e368-4386-94e6-db9ae93df4a4" + "603caf44-31b0-4435-a4f0-5b6328c99a3c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165006Z:9e381341-e368-4386-94e6-db9ae93df4a4" + "FRANCESOUTH:20201107T141446Z:603caf44-31b0-4435-a4f0-5b6328c99a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3240,7 +3696,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:06 GMT" + "Sat, 07 Nov 2020 14:14:46 GMT" ], "Expires": [ "-1" @@ -3253,8 +3709,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3273,7 +3729,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3282,13 +3738,13 @@ "11991" ], "x-ms-request-id": [ - "816d4279-74eb-4b98-85ed-5d8bfe6192a1" + "ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" ], "x-ms-correlation-request-id": [ - "816d4279-74eb-4b98-85ed-5d8bfe6192a1" + "ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165021Z:816d4279-74eb-4b98-85ed-5d8bfe6192a1" + "FRANCESOUTH:20201107T141502Z:ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3297,7 +3753,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:21 GMT" + "Sat, 07 Nov 2020 14:15:02 GMT" ], "Expires": [ "-1" @@ -3310,8 +3766,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3330,7 +3786,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3339,13 +3795,13 @@ "11990" ], "x-ms-request-id": [ - "42dd542e-7858-4b82-834d-8f88f25a2e5e" + "b3aafd1b-c59b-4d7c-b988-74b7d89dd117" ], "x-ms-correlation-request-id": [ - "42dd542e-7858-4b82-834d-8f88f25a2e5e" + "b3aafd1b-c59b-4d7c-b988-74b7d89dd117" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165037Z:42dd542e-7858-4b82-834d-8f88f25a2e5e" + "FRANCESOUTH:20201107T141517Z:b3aafd1b-c59b-4d7c-b988-74b7d89dd117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3354,7 +3810,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:36 GMT" + "Sat, 07 Nov 2020 14:15:17 GMT" ], "Expires": [ "-1" @@ -3367,8 +3823,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3387,7 +3843,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3396,13 +3852,13 @@ "11989" ], "x-ms-request-id": [ - "0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + "9fa739d2-a4a3-495c-ab67-e05612cd54d7" ], "x-ms-correlation-request-id": [ - "0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + "9fa739d2-a4a3-495c-ab67-e05612cd54d7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165052Z:0cacdcda-f493-4b30-8c89-bd6f6fa8f965" + "FRANCESOUTH:20201107T141532Z:9fa739d2-a4a3-495c-ab67-e05612cd54d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3411,7 +3867,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:50:51 GMT" + "Sat, 07 Nov 2020 14:15:32 GMT" ], "Expires": [ "-1" @@ -3424,8 +3880,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3444,7 +3900,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3453,13 +3909,13 @@ "11988" ], "x-ms-request-id": [ - "3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + "14e2dae9-bd8f-41f7-9721-d456fd570988" ], "x-ms-correlation-request-id": [ - "3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + "14e2dae9-bd8f-41f7-9721-d456fd570988" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165107Z:3e7502c4-03c9-4ab5-b57a-ab82e149ca1b" + "FRANCESOUTH:20201107T141548Z:14e2dae9-bd8f-41f7-9721-d456fd570988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,7 +3924,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:51:07 GMT" + "Sat, 07 Nov 2020 14:15:47 GMT" ], "Expires": [ "-1" @@ -3481,8 +3937,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,7 +3957,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3510,13 +3966,13 @@ "11987" ], "x-ms-request-id": [ - "9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + "79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" ], "x-ms-correlation-request-id": [ - "9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + "79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165123Z:9e904bd6-6bcf-4d20-a7dc-cd87c5d0e03c" + "FRANCESOUTH:20201107T141603Z:79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3525,7 +3981,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:51:22 GMT" + "Sat, 07 Nov 2020 14:16:03 GMT" ], "Expires": [ "-1" @@ -3538,8 +3994,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3558,7 +4014,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3567,13 +4023,13 @@ "11986" ], "x-ms-request-id": [ - "ff393fd6-68da-4248-8c7c-4867d78c9006" + "b8076d81-5cd4-4955-919c-fcdc799667a8" ], "x-ms-correlation-request-id": [ - "ff393fd6-68da-4248-8c7c-4867d78c9006" + "b8076d81-5cd4-4955-919c-fcdc799667a8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165138Z:ff393fd6-68da-4248-8c7c-4867d78c9006" + "FRANCESOUTH:20201107T141618Z:b8076d81-5cd4-4955-919c-fcdc799667a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3582,7 +4038,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:51:37 GMT" + "Sat, 07 Nov 2020 14:16:18 GMT" ], "Expires": [ "-1" @@ -3595,8 +4051,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3615,7 +4071,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3624,13 +4080,13 @@ "11985" ], "x-ms-request-id": [ - "15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + "fc30814f-4f14-48a1-9d88-4b9c403b6c03" ], "x-ms-correlation-request-id": [ - "15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + "fc30814f-4f14-48a1-9d88-4b9c403b6c03" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165153Z:15ce11d9-6fd8-4d34-80a2-5f481cb9edab" + "FRANCESOUTH:20201107T141634Z:fc30814f-4f14-48a1-9d88-4b9c403b6c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3639,7 +4095,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:51:52 GMT" + "Sat, 07 Nov 2020 14:16:33 GMT" ], "Expires": [ "-1" @@ -3652,8 +4108,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3672,7 +4128,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3681,13 +4137,13 @@ "11984" ], "x-ms-request-id": [ - "768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + "dad9a808-c78d-4c9b-90a3-18eb2925eef8" ], "x-ms-correlation-request-id": [ - "768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + "dad9a808-c78d-4c9b-90a3-18eb2925eef8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165209Z:768e6a0e-dd2f-4983-a36d-e387ac1ef92c" + "FRANCESOUTH:20201107T141649Z:dad9a808-c78d-4c9b-90a3-18eb2925eef8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3696,7 +4152,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:52:08 GMT" + "Sat, 07 Nov 2020 14:16:49 GMT" ], "Expires": [ "-1" @@ -3709,8 +4165,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3729,7 +4185,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3738,13 +4194,13 @@ "11983" ], "x-ms-request-id": [ - "1a98413c-c5b5-4143-a904-641697208ff5" + "76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" ], "x-ms-correlation-request-id": [ - "1a98413c-c5b5-4143-a904-641697208ff5" + "76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165224Z:1a98413c-c5b5-4143-a904-641697208ff5" + "FRANCESOUTH:20201107T141705Z:76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,7 +4209,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:52:23 GMT" + "Sat, 07 Nov 2020 14:17:04 GMT" ], "Expires": [ "-1" @@ -3766,8 +4222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3786,7 +4242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3795,13 +4251,13 @@ "11982" ], "x-ms-request-id": [ - "3e080f0a-0713-409b-98d1-ed21d74b94d8" + "640bb8d8-5e50-45a7-a364-a542e63d33b4" ], "x-ms-correlation-request-id": [ - "3e080f0a-0713-409b-98d1-ed21d74b94d8" + "640bb8d8-5e50-45a7-a364-a542e63d33b4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165239Z:3e080f0a-0713-409b-98d1-ed21d74b94d8" + "FRANCESOUTH:20201107T141720Z:640bb8d8-5e50-45a7-a364-a542e63d33b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3810,7 +4266,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:52:38 GMT" + "Sat, 07 Nov 2020 14:17:20 GMT" ], "Expires": [ "-1" @@ -3823,8 +4279,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,7 +4299,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3852,13 +4308,13 @@ "11981" ], "x-ms-request-id": [ - "b13a6746-34bb-4b49-961f-71515e9c4f25" + "106f47c8-849a-41ee-871b-19091b5a7de2" ], "x-ms-correlation-request-id": [ - "b13a6746-34bb-4b49-961f-71515e9c4f25" + "106f47c8-849a-41ee-871b-19091b5a7de2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165254Z:b13a6746-34bb-4b49-961f-71515e9c4f25" + "FRANCESOUTH:20201107T141735Z:106f47c8-849a-41ee-871b-19091b5a7de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3867,7 +4323,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:52:54 GMT" + "Sat, 07 Nov 2020 14:17:35 GMT" ], "Expires": [ "-1" @@ -3880,8 +4336,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3900,7 +4356,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3909,13 +4365,13 @@ "11980" ], "x-ms-request-id": [ - "0899c959-77ae-4eaa-8ad9-c6aad069cf52" + "db0cd439-517e-44c2-9c2b-1c7104f8b16d" ], "x-ms-correlation-request-id": [ - "0899c959-77ae-4eaa-8ad9-c6aad069cf52" + "db0cd439-517e-44c2-9c2b-1c7104f8b16d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165310Z:0899c959-77ae-4eaa-8ad9-c6aad069cf52" + "FRANCESOUTH:20201107T141751Z:db0cd439-517e-44c2-9c2b-1c7104f8b16d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3924,7 +4380,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:53:09 GMT" + "Sat, 07 Nov 2020 14:17:51 GMT" ], "Expires": [ "-1" @@ -3937,8 +4393,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3957,7 +4413,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3966,13 +4422,13 @@ "11979" ], "x-ms-request-id": [ - "4f4e07d6-3408-49f9-a724-2544fee0adab" + "1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" ], "x-ms-correlation-request-id": [ - "4f4e07d6-3408-49f9-a724-2544fee0adab" + "1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165325Z:4f4e07d6-3408-49f9-a724-2544fee0adab" + "FRANCESOUTH:20201107T141806Z:1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3981,7 +4437,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:53:24 GMT" + "Sat, 07 Nov 2020 14:18:05 GMT" ], "Expires": [ "-1" @@ -3994,8 +4450,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,7 +4470,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4023,13 +4479,13 @@ "11978" ], "x-ms-request-id": [ - "05956b0c-6c0b-488c-84aa-1d180177d8d6" + "80d5cba8-423b-4711-937c-28669c51a9ee" ], "x-ms-correlation-request-id": [ - "05956b0c-6c0b-488c-84aa-1d180177d8d6" + "80d5cba8-423b-4711-937c-28669c51a9ee" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165340Z:05956b0c-6c0b-488c-84aa-1d180177d8d6" + "FRANCESOUTH:20201107T141821Z:80d5cba8-423b-4711-937c-28669c51a9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4038,7 +4494,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:53:40 GMT" + "Sat, 07 Nov 2020 14:18:21 GMT" ], "Expires": [ "-1" @@ -4051,8 +4507,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4071,7 +4527,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4080,13 +4536,13 @@ "11977" ], "x-ms-request-id": [ - "af19fb61-14e5-4542-8380-91b1b618892d" + "6d44bf9b-6d2a-42df-ba36-5549b60678ec" ], "x-ms-correlation-request-id": [ - "af19fb61-14e5-4542-8380-91b1b618892d" + "6d44bf9b-6d2a-42df-ba36-5549b60678ec" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165356Z:af19fb61-14e5-4542-8380-91b1b618892d" + "FRANCESOUTH:20201107T141837Z:6d44bf9b-6d2a-42df-ba36-5549b60678ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4095,7 +4551,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:53:55 GMT" + "Sat, 07 Nov 2020 14:18:37 GMT" ], "Expires": [ "-1" @@ -4108,8 +4564,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4128,7 +4584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4137,13 +4593,13 @@ "11976" ], "x-ms-request-id": [ - "01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + "c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" ], "x-ms-correlation-request-id": [ - "01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + "c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165411Z:01a83fbb-7bb1-418a-8e82-7f1ba7e020b5" + "FRANCESOUTH:20201107T141852Z:c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4152,7 +4608,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:54:10 GMT" + "Sat, 07 Nov 2020 14:18:51 GMT" ], "Expires": [ "-1" @@ -4165,8 +4621,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4185,7 +4641,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4194,13 +4650,13 @@ "11975" ], "x-ms-request-id": [ - "b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + "9d01f2c4-97f9-49f9-bc60-136e89657253" ], "x-ms-correlation-request-id": [ - "b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + "9d01f2c4-97f9-49f9-bc60-136e89657253" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165426Z:b6adc48f-70e3-4f9d-a5b6-da77bfbb525f" + "FRANCESOUTH:20201107T141907Z:9d01f2c4-97f9-49f9-bc60-136e89657253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4209,7 +4665,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:54:26 GMT" + "Sat, 07 Nov 2020 14:19:07 GMT" ], "Expires": [ "-1" @@ -4222,8 +4678,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4242,7 +4698,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4251,13 +4707,13 @@ "11974" ], "x-ms-request-id": [ - "89105fc9-ad58-4329-ad91-f78fca4b4348" + "1c00a191-8e9e-4ce0-a302-706b488bb343" ], "x-ms-correlation-request-id": [ - "89105fc9-ad58-4329-ad91-f78fca4b4348" + "1c00a191-8e9e-4ce0-a302-706b488bb343" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165442Z:89105fc9-ad58-4329-ad91-f78fca4b4348" + "FRANCESOUTH:20201107T141923Z:1c00a191-8e9e-4ce0-a302-706b488bb343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4266,7 +4722,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:54:41 GMT" + "Sat, 07 Nov 2020 14:19:22 GMT" ], "Expires": [ "-1" @@ -4279,8 +4735,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4299,7 +4755,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4308,13 +4764,13 @@ "11973" ], "x-ms-request-id": [ - "1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + "0d162542-acfc-4d26-9bd3-3a5a6ab2400b" ], "x-ms-correlation-request-id": [ - "1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + "0d162542-acfc-4d26-9bd3-3a5a6ab2400b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165457Z:1fcbb10f-886f-4aa2-a6d7-a2326620d05f" + "FRANCESOUTH:20201107T141938Z:0d162542-acfc-4d26-9bd3-3a5a6ab2400b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4323,7 +4779,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:54:57 GMT" + "Sat, 07 Nov 2020 14:19:38 GMT" ], "Expires": [ "-1" @@ -4336,8 +4792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,7 +4812,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4365,13 +4821,13 @@ "11972" ], "x-ms-request-id": [ - "a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + "8f6e328c-4890-4a89-8d1b-94e177ab3192" ], "x-ms-correlation-request-id": [ - "a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + "8f6e328c-4890-4a89-8d1b-94e177ab3192" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165513Z:a1bbcf47-d710-43fa-b83f-2ed4ba50c396" + "FRANCESOUTH:20201107T141953Z:8f6e328c-4890-4a89-8d1b-94e177ab3192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4380,7 +4836,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:55:13 GMT" + "Sat, 07 Nov 2020 14:19:52 GMT" ], "Expires": [ "-1" @@ -4393,8 +4849,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4413,7 +4869,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4422,13 +4878,13 @@ "11971" ], "x-ms-request-id": [ - "20199153-fc39-4082-b3fb-ca39d43ac0b6" + "dc0f8d9d-b8c2-400e-99ea-fe262dfba383" ], "x-ms-correlation-request-id": [ - "20199153-fc39-4082-b3fb-ca39d43ac0b6" + "dc0f8d9d-b8c2-400e-99ea-fe262dfba383" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165528Z:20199153-fc39-4082-b3fb-ca39d43ac0b6" + "FRANCESOUTH:20201107T142009Z:dc0f8d9d-b8c2-400e-99ea-fe262dfba383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4437,7 +4893,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:55:28 GMT" + "Sat, 07 Nov 2020 14:20:08 GMT" ], "Expires": [ "-1" @@ -4450,8 +4906,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4470,7 +4926,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4479,13 +4935,13 @@ "11970" ], "x-ms-request-id": [ - "4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + "1bc3f47c-ee54-4bd8-b48d-56e93086c55b" ], "x-ms-correlation-request-id": [ - "4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + "1bc3f47c-ee54-4bd8-b48d-56e93086c55b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165543Z:4a86c1d3-8b59-4ce5-ac53-38ecb724d626" + "FRANCESOUTH:20201107T142024Z:1bc3f47c-ee54-4bd8-b48d-56e93086c55b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4494,7 +4950,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:55:43 GMT" + "Sat, 07 Nov 2020 14:20:24 GMT" ], "Expires": [ "-1" @@ -4507,8 +4963,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4527,7 +4983,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4536,13 +4992,13 @@ "11969" ], "x-ms-request-id": [ - "664925f3-dc83-4c4f-8700-e3436cfa521c" + "6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" ], "x-ms-correlation-request-id": [ - "664925f3-dc83-4c4f-8700-e3436cfa521c" + "6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165559Z:664925f3-dc83-4c4f-8700-e3436cfa521c" + "FRANCESOUTH:20201107T142039Z:6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4551,7 +5007,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:55:59 GMT" + "Sat, 07 Nov 2020 14:20:39 GMT" ], "Expires": [ "-1" @@ -4564,8 +5020,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4584,7 +5040,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4593,13 +5049,13 @@ "11968" ], "x-ms-request-id": [ - "93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + "d065d600-8f03-499a-b8f3-001d8193d2f3" ], "x-ms-correlation-request-id": [ - "93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + "d065d600-8f03-499a-b8f3-001d8193d2f3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165614Z:93cb0b6d-19f7-40b0-9c1a-fa92c40bb47c" + "FRANCESOUTH:20201107T142055Z:d065d600-8f03-499a-b8f3-001d8193d2f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4608,7 +5064,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:56:14 GMT" + "Sat, 07 Nov 2020 14:20:54 GMT" ], "Expires": [ "-1" @@ -4621,8 +5077,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,7 +5097,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4650,13 +5106,13 @@ "11967" ], "x-ms-request-id": [ - "7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + "e5a31c0f-f340-4ad1-8178-5937de179b0b" ], "x-ms-correlation-request-id": [ - "7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + "e5a31c0f-f340-4ad1-8178-5937de179b0b" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165629Z:7c91aa4c-6da3-486f-afb7-1cd50a5cc68d" + "FRANCESOUTH:20201107T142110Z:e5a31c0f-f340-4ad1-8178-5937de179b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4665,7 +5121,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:56:28 GMT" + "Sat, 07 Nov 2020 14:21:09 GMT" ], "Expires": [ "-1" @@ -4678,8 +5134,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4701,13 +5157,13 @@ "11966" ], "x-ms-request-id": [ - "02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + "d6a4d719-ac35-430f-9c5b-1c2b79cb0692" ], "x-ms-correlation-request-id": [ - "02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + "d6a4d719-ac35-430f-9c5b-1c2b79cb0692" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165645Z:02f7d4f7-1d12-4a7a-b30f-5dd660056bab" + "FRANCESOUTH:20201107T142125Z:d6a4d719-ac35-430f-9c5b-1c2b79cb0692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4716,7 +5172,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:56:44 GMT" + "Sat, 07 Nov 2020 14:21:24 GMT" ], "Expires": [ "-1" @@ -4729,8 +5185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxOTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE9UZ3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVME9EY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4752,13 +5208,13 @@ "11965" ], "x-ms-request-id": [ - "7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + "4f59f0db-5c2a-450f-a27e-a80bb06861c8" ], "x-ms-correlation-request-id": [ - "7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + "4f59f0db-5c2a-450f-a27e-a80bb06861c8" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201028T165645Z:7c7d8a0d-a9cb-4e59-8265-8def0a8ee6d4" + "FRANCESOUTH:20201107T142126Z:4f59f0db-5c2a-450f-a27e-a80bb06861c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4767,7 +5223,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Oct 2020 16:56:45 GMT" + "Sat, 07 Nov 2020 14:21:26 GMT" ], "Expires": [ "-1" @@ -4782,13 +5238,13 @@ ], "Names": { "Test-BackupPipelines": [ - "ps7198", - "ps3660", - "ps3091", - "ps3718", - "ps1781", - "ps1187", - "ps3158" + "ps5487", + "ps5404", + "ps4241", + "ps9038", + "ps9887", + "ps3189", + "ps8518" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json index 1f435a5348f6..4fa16251737b 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps4052?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzNDA1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9579?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTU3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a252bb8d-26ec-47f2-b1b3-baae348ec4c1" + "28e7d940-2cfe-4af0-8be3-67cd2a4dd4d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "8ed5ad7f-e668-4c1c-857c-8c7c51e62e90" + "f2ca5804-f116-4967-94c7-4950587b4151" ], "x-ms-correlation-request-id": [ - "8ed5ad7f-e668-4c1c-857c-8c7c51e62e90" + "f2ca5804-f116-4967-94c7-4950587b4151" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124014Z:8ed5ad7f-e668-4c1c-857c-8c7c51e62e90" + "FRANCESOUTH:20201106T132331Z:f2ca5804-f116-4967-94c7-4950587b4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:14 GMT" + "Fri, 06 Nov 2020 13:23:30 GMT" ], "Content-Length": [ "172" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052\",\r\n \"name\": \"ps4052\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579\",\r\n \"name\": \"ps9579\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3Mjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "360a1abd-2ad2-485d-b462-b2e440e78534" + "429dc5e0-4f78-4928-a0d8-a94201a821ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A20.075889Z'\"" + "W/\"datetime'2020-11-06T13%3A23%3A39.8388675Z'\"" ], "x-ms-request-id": [ - "b702c5d5-e870-4810-bf9d-925d53fb3933" + "01af7e5b-c9ea-4524-9750-3786768c1e5d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5f952de5-bae2-4748-a331-077afbe41839?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04f6a97d-f23f-4e5c-9bcf-6dede25ebc3e?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "b33b0a7f-8ef8-4025-818b-6e1b87402e6d" + "ff95b29a-3591-48e5-a23d-f9da60d2d6c4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124021Z:b33b0a7f-8ef8-4025-818b-6e1b87402e6d" + "FRANCESOUTH:20201106T132341Z:ff95b29a-3591-48e5-a23d-f9da60d2d6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:20 GMT" + "Fri, 06 Nov 2020 13:23:40 GMT" ], "Content-Length": [ - "318" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,20 +147,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594\",\r\n \"name\": \"ps4594\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A20.075889Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729\",\r\n \"name\": \"ps7729\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A23%3A39.8388675Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5f952de5-bae2-4748-a331-077afbe41839?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNWY5NTJkZTUtYmFlMi00NzQ4LWEzMzEtMDc3YWZiZTQxODM5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04f6a97d-f23f-4e5c-9bcf-6dede25ebc3e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDRmNmE5N2QtZjIzZi00ZTVjLTliY2YtNmRlZGUyNWViYzNlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "d2ec9e69-9c5c-4e2b-8141-6ff823f9f1a3" + "da21fd34-a983-4183-a6b1-71a4f56ae115" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "ded454ec-398c-4f6a-9abf-770e714997b5" + "6beec50d-dbe8-4195-928f-b0765c4815e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124051Z:ded454ec-398c-4f6a-9abf-770e714997b5" + "FRANCESOUTH:20201106T132411Z:6beec50d-dbe8-4195-928f-b0765c4815e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:51 GMT" + "Fri, 06 Nov 2020 13:24:11 GMT" ], "Content-Length": [ "495" @@ -213,20 +213,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5f952de5-bae2-4748-a331-077afbe41839\",\r\n \"name\": \"5f952de5-bae2-4748-a331-077afbe41839\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:40:19.9807169Z\",\r\n \"endTime\": \"2020-09-05T12:40:20.1370376Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04f6a97d-f23f-4e5c-9bcf-6dede25ebc3e\",\r\n \"name\": \"04f6a97d-f23f-4e5c-9bcf-6dede25ebc3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:23:39.7743333Z\",\r\n \"endTime\": \"2020-11-06T13:23:39.8993467Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3Mjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A20.1369322Z'\"" + "W/\"datetime'2020-11-06T13%3A23%3A39.8979083Z'\"" ], "x-ms-request-id": [ - "5a12c888-1ac5-4865-93c3-1192a839295a" + "749e4f01-86fc-4d31-be11-3156558fef1d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "941e3a6b-eaa2-40ee-a637-8691b11b7f11" + "20660048-f752-4249-9bde-6bdb30d42d19" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124051Z:941e3a6b-eaa2-40ee-a637-8691b11b7f11" + "FRANCESOUTH:20201106T132411Z:20660048-f752-4249-9bde-6bdb30d42d19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:51 GMT" + "Fri, 06 Nov 2020 13:24:11 GMT" ], "Content-Length": [ "320" @@ -282,26 +282,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594\",\r\n \"name\": \"ps4594\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A20.1369322Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729\",\r\n \"name\": \"ps7729\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A23%3A39.8979083Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aad061f1-b0af-4093-a8c3-d6635d449204" + "4d7e1301-51bd-41bc-ab95-d0876b71f498" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,13 +318,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A53.4447551Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A14.014734Z'\"" ], "x-ms-request-id": [ - "8495b5bd-def4-49b0-b964-4542c84f38cf" + "eeb7783d-41d2-4c5f-b09f-1e2a9d2079f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9b8f6b88-e9f3-4c8f-9f9b-a9b2b2d8b943?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9fe8e501-c0be-495a-9b4d-8a5706c88d02?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -342,10 +342,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "fc7f7a73-0926-4665-a5aa-2f81f755f7a7" + "e159b9c8-78ae-49f0-a2df-86c49367340c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124054Z:fc7f7a73-0926-4665-a5aa-2f81f755f7a7" + "FRANCESOUTH:20201106T132415Z:e159b9c8-78ae-49f0-a2df-86c49367340c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +354,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:54 GMT" + "Fri, 06 Nov 2020 13:24:14 GMT" ], "Content-Length": [ - "435" + "491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,20 +366,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A53.4447551Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A14.014734Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9b8f6b88-e9f3-4c8f-9f9b-a9b2b2d8b943?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOWI4ZjZiODgtZTlmMy00YzhmLTlmOWItYTliMmIyZDhiOTQzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9fe8e501-c0be-495a-9b4d-8a5706c88d02?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOWZlOGU1MDEtYzBiZS00OTVhLTliNGQtOGE1NzA2Yzg4ZDAyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -390,7 +390,7 @@ "no-cache" ], "x-ms-request-id": [ - "8276b4e2-95e6-4fcc-b296-106ef2b67d06" + "42e75cda-dbeb-4a97-81ba-ced3dd34ec71" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -408,10 +408,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "a6d695b1-c5b1-4f44-a57e-9eb34a92932c" + "a005ffa2-a6e0-462b-825e-fa423f8a6ed6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124124Z:a6d695b1-c5b1-4f44-a57e-9eb34a92932c" + "FRANCESOUTH:20201106T132445Z:a005ffa2-a6e0-462b-825e-fa423f8a6ed6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,10 +420,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:23 GMT" + "Fri, 06 Nov 2020 13:24:44 GMT" ], "Content-Length": [ - "516" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,20 +432,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9b8f6b88-e9f3-4c8f-9f9b-a9b2b2d8b943\",\r\n \"name\": \"9b8f6b88-e9f3-4c8f-9f9b-a9b2b2d8b943\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:40:53.3919112Z\",\r\n \"endTime\": \"2020-09-05T12:40:53.6886935Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9fe8e501-c0be-495a-9b4d-8a5706c88d02\",\r\n \"name\": \"9fe8e501-c0be-495a-9b4d-8a5706c88d02\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:24:13.9558485Z\",\r\n \"endTime\": \"2020-11-06T13:24:14.17466Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -456,10 +456,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\"" ], "x-ms-request-id": [ - "9d74157e-5031-4a64-a0ad-9d1fcd0217bf" + "d042bfe4-5816-4d29-be5c-f7ac29973b06" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -477,10 +477,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "61c06131-e063-4115-8f3e-f3644fd11a79" + "656df67a-5e38-44dc-9680-3a064dff5136" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124124Z:61c06131-e063-4115-8f3e-f3644fd11a79" + "FRANCESOUTH:20201106T132445Z:656df67a-5e38-44dc-9680-3a064dff5136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,10 +489,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:24 GMT" + "Fri, 06 Nov 2020 13:24:44 GMT" ], "Content-Length": [ - "484" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,26 +501,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8127297e-2f37-447b-a43c-1158c66f4367" + "9bf6fc24-8a3c-46c0-bc25-5e28ef7a76bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -531,10 +531,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\"" ], "x-ms-request-id": [ - "bafdc001-f1ae-46a0-a80f-47f9bc934236" + "52865ae5-6e41-404f-ab59-c364e58db620" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -552,10 +552,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "00f909f4-1664-42b3-90a2-abeaca49294e" + "ed9a734c-f76c-4c7c-9f9d-0f66afb87c23" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124158Z:00f909f4-1664-42b3-90a2-abeaca49294e" + "FRANCESOUTH:20201106T132520Z:ed9a734c-f76c-4c7c-9f9d-0f66afb87c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,10 +564,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:57 GMT" + "Fri, 06 Nov 2020 13:25:20 GMT" ], "Content-Length": [ - "484" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,26 +576,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f79aa41d-8c4d-4e63-950b-e702cbc087bb" + "96f95bd3-45e6-4b35-9d93-faac419b558a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\"" ], "x-ms-request-id": [ - "39fd22dd-1752-47cc-8b34-b30241397300" + "ebdb6f0a-4d9a-4605-a824-b1aa47de181b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -627,10 +627,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "34ecfd64-a9ab-4ff8-9b2f-f56621fc10af" + "00e63b26-de4d-43ba-b56a-721cf2af9967" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124158Z:34ecfd64-a9ab-4ff8-9b2f-f56621fc10af" + "FRANCESOUTH:20201106T132521Z:00e63b26-de4d-43ba-b56a-721cf2af9967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,10 +639,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:57 GMT" + "Fri, 06 Nov 2020 13:25:20 GMT" ], "Content-Length": [ - "484" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczI5NzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczM4MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "692f2bd7-d381-4b98-b06c-db5a9c0a942b" + "0e349dba-6dd0-476c-8bef-e9d4549dd8c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,13 +687,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A41%3A26.0851131Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A48.4407752Z'\"" ], "x-ms-request-id": [ - "4719e6d3-cdd7-4265-bfbd-916801e3c797" + "b624111b-7f85-44f7-a144-45a3147f1dfd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15885076-68af-4ca9-88dd-6b3ba3b19d5c?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/542eb647-de46-4694-a9a4-81a679e1668e?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -711,10 +711,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "f4d969e0-ec32-4730-9262-c938e593a489" + "683fa36e-924f-415e-a0d9-0b05df613ba6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124127Z:f4d969e0-ec32-4730-9262-c938e593a489" + "FRANCESOUTH:20201106T132449Z:683fa36e-924f-415e-a0d9-0b05df613ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,10 +723,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:26 GMT" + "Fri, 06 Nov 2020 13:24:48 GMT" ], "Content-Length": [ - "407" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,20 +735,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A26.0851131Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A48.4407752Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15885076-68af-4ca9-88dd-6b3ba3b19d5c?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTU4ODUwNzYtNjhhZi00Y2E5LTg4ZGQtNmIzYmEzYjE5ZDVjP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/542eb647-de46-4694-a9a4-81a679e1668e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTQyZWI2NDctZGU0Ni00Njk0LWE5YTQtODFhNjc5ZTE2NjhlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -759,7 +759,7 @@ "no-cache" ], "x-ms-request-id": [ - "00cc779b-5032-43c9-a207-2c25775abad9" + "32b658fa-d273-44b0-ac0c-5694e5988670" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -777,10 +777,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "5feaf576-a26d-4a54-bab6-b332ef70a922" + "25025d9d-edf7-4c16-8a16-26a6e0cf2aa8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124157Z:5feaf576-a26d-4a54-bab6-b332ef70a922" + "FRANCESOUTH:20201106T132519Z:25025d9d-edf7-4c16-8a16-26a6e0cf2aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,10 +789,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:56 GMT" + "Fri, 06 Nov 2020 13:25:19 GMT" ], "Content-Length": [ - "515" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,20 +801,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15885076-68af-4ca9-88dd-6b3ba3b19d5c\",\r\n \"name\": \"15885076-68af-4ca9-88dd-6b3ba3b19d5c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:41:26.026958Z\",\r\n \"endTime\": \"2020-09-05T12:41:26.2770681Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/542eb647-de46-4694-a9a4-81a679e1668e\",\r\n \"name\": \"542eb647-de46-4694-a9a4-81a679e1668e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:24:48.3292802Z\",\r\n \"endTime\": \"2020-11-06T13:24:48.7980485Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczI5NzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczM4MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -825,10 +825,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A41%3A30.2931256Z'\"" + "W/\"datetime'2020-11-06T13%3A24%3A51.5819636Z'\"" ], "x-ms-request-id": [ - "c2d3917a-d9a2-48fc-9c79-62b0ead942bf" + "9112f752-fa44-4f40-9f0a-a5bdfb11b1c7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -846,10 +846,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "1507d72e-e990-469d-a9e7-82cb11ec8e47" + "4c90e07a-9e30-4cf3-927a-a8b4ca59eb99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124157Z:1507d72e-e990-469d-a9e7-82cb11ec8e47" + "FRANCESOUTH:20201106T132520Z:4c90e07a-9e30-4cf3-927a-a8b4ca59eb99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,10 +858,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:56 GMT" + "Fri, 06 Nov 2020 13:25:19 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,26 +870,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A30.2931256Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"1a519329-5d38-5d24-2722-8e0c9849288b\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A51.5819636Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"ea76bc94-8b0d-7083-9434-1f7a17fa9568\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0194a693-6f39-4619-b124-2556e2d302dd" + "10174c78-8f36-4c6e-9dea-ef70ae40b7d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -900,7 +900,7 @@ "no-cache" ], "x-ms-request-id": [ - "08a02305-9130-42da-97a7-46a432068d42" + "c8506693-08b6-43be-80a1-41fc506881a9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -918,10 +918,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "8bf27c8b-37ac-4564-b527-fdacb695821e" + "a60bfdb6-0244-440a-b580-02fa70721065" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124157Z:8bf27c8b-37ac-4564-b527-fdacb695821e" + "FRANCESOUTH:20201106T132520Z:a60bfdb6-0244-440a-b580-02fa70721065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,10 +930,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:56 GMT" + "Fri, 06 Nov 2020 13:25:20 GMT" ], "Content-Length": [ - "953" + "1109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,26 +942,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A30.2931256Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"1a519329-5d38-5d24-2722-8e0c9849288b\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A40%3A56.1186691Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A18.9391683Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A51.5819636Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"ea76bc94-8b0d-7083-9434-1f7a17fa9568\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89f98e3d-2eaf-4205-97d5-f56a74b78198" + "d1a44dfa-8fe6-4f49-96fa-88d3e9142139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -972,7 +972,7 @@ "no-cache" ], "x-ms-request-id": [ - "1bbd1132-a457-4d29-970c-0ce100fb5f54" + "c546be0e-660e-4479-b631-979bf55aef6d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -990,10 +990,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "0f493b48-90d7-4515-9f95-7809649e17d2" + "cc653795-a8e5-4f5f-a625-a9356ee5537b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124231Z:0f493b48-90d7-4515-9f95-7809649e17d2" + "FRANCESOUTH:20201106T132555Z:cc653795-a8e5-4f5f-a625-a9356ee5537b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,10 +1002,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:42:31 GMT" + "Fri, 06 Nov 2020 13:25:54 GMT" ], "Content-Length": [ - "468" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1014,26 +1014,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A30.2931256Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"1a519329-5d38-5d24-2722-8e0c9849288b\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A24%3A51.5819636Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"ea76bc94-8b0d-7083-9434-1f7a17fa9568\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4491c759-913e-4429-92a6-588815dfc6df" + "fc6d1a2a-0bb6-45a4-86cb-bdf579e51a47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1044,7 +1044,7 @@ "no-cache" ], "x-ms-request-id": [ - "62b58084-280c-4200-b4dd-5ef230cebb99" + "3b0f5361-5a51-466c-9d58-1175cf60de50" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1062,10 +1062,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "7633345c-d03b-44e9-9fa5-3a774cdd5cdb" + "86afc79a-a452-4168-99c1-377b7411cfe1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124302Z:7633345c-d03b-44e9-9fa5-3a774cdd5cdb" + "FRANCESOUTH:20201106T132626Z:86afc79a-a452-4168-99c1-377b7411cfe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:02 GMT" + "Fri, 06 Nov 2020 13:26:26 GMT" ], "Content-Length": [ "12" @@ -1090,28 +1090,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1Updated\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b50bfa7-76a6-4324-8be6-861c002272dd" + "4122ea81-8adf-4884-a7e1-742c75fb3eef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "92" + "86" ] }, "ResponseHeaders": { @@ -1122,10 +1122,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A41%3A58.8795882Z'\"" + "W/\"datetime'2020-11-06T13%3A25%3A21.6239481Z'\"" ], "x-ms-request-id": [ - "fcf53531-10a2-4591-884f-730f3ca052c6" + "945f80c5-c9e5-43f7-950d-6357e7f10241" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1143,10 +1143,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "40682351-c40d-4609-973c-7e7a09f46d34" + "460ff077-7147-4e78-90c3-7a75a51f5de1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124159Z:40682351-c40d-4609-973c-7e7a09f46d34" + "FRANCESOUTH:20201106T132523Z:460ff077-7147-4e78-90c3-7a75a51f5de1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,10 +1155,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:58 GMT" + "Fri, 06 Nov 2020 13:25:22 GMT" ], "Content-Length": [ - "485" + "569" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,26 +1167,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A58.8795882Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A25%3A21.6239481Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1Updated\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a95bbbc-0ec2-41e1-8cf5-928e0a41e0d0" + "c27e86e9-94fb-4113-b1a9-f1c153c5b111" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1203,10 +1203,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A41%3A59.7962439Z'\"" + "W/\"datetime'2020-11-06T13%3A25%3A23.3251367Z'\"" ], "x-ms-request-id": [ - "c59a1273-386c-408d-8950-bc990fe7aeb0" + "ac693290-c1d1-4fa6-84b7-453d03045e06" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1224,10 +1224,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "270b985f-ec3f-4876-85d6-3c64184a7d49" + "e5fdcb08-ede9-4d31-a252-fa57bcab7f04" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124200Z:270b985f-ec3f-4876-85d6-3c64184a7d49" + "FRANCESOUTH:20201106T132523Z:e5fdcb08-ede9-4d31-a252-fa57bcab7f04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,10 +1236,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:41:59 GMT" + "Fri, 06 Nov 2020 13:25:23 GMT" ], "Content-Length": [ - "485" + "569" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,26 +1248,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A41%3A59.7962439Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A25%3A23.3251367Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1Updated\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczQ0MDU/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczEzNjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38be678d-4fa0-44df-84c2-bdd058df225c" + "5f1880d2-de0d-45f4-a9c5-e3802becf945" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1278,10 +1278,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/74c444fe-488e-4d37-9ee2-295f6da85413?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c87c045c-ff5f-49e7-a9c1-ba1c75b403f9?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/74c444fe-488e-4d37-9ee2-295f6da85413?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c87c045c-ff5f-49e7-a9c1-ba1c75b403f9?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1299,13 +1299,13 @@ "14999" ], "x-ms-request-id": [ - "298f1654-eaa5-4f12-bea2-65c3c78b489d" + "6d504487-ea84-4a86-92f4-feab156587c0" ], "x-ms-correlation-request-id": [ - "298f1654-eaa5-4f12-bea2-65c3c78b489d" + "6d504487-ea84-4a86-92f4-feab156587c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124201Z:298f1654-eaa5-4f12-bea2-65c3c78b489d" + "FRANCESOUTH:20201106T132524Z:6d504487-ea84-4a86-92f4-feab156587c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,7 +1314,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:42:00 GMT" + "Fri, 06 Nov 2020 13:25:24 GMT" ], "Expires": [ "-1" @@ -1327,16 +1327,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/74c444fe-488e-4d37-9ee2-295f6da85413?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzRjNDQ0ZmUtNDg4ZS00ZDM3LTllZTItMjk1ZjZkYTg1NDEzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c87c045c-ff5f-49e7-a9c1-ba1c75b403f9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzg3YzA0NWMtZmY1Zi00OWU3LWE5YzEtYmExYzc1YjQwM2Y5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1347,7 +1347,7 @@ "no-cache" ], "x-ms-request-id": [ - "9257d9fd-7990-4498-bc7b-af36fb738417" + "9c82cfb2-341a-4eab-92f3-e00e19ba2ce1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1365,10 +1365,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "8572c5e8-9765-4102-91c1-45e73542b3c4" + "982b168c-1aa2-44d1-a39e-56ccd3c26d3d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124231Z:8572c5e8-9765-4102-91c1-45e73542b3c4" + "FRANCESOUTH:20201106T132554Z:982b168c-1aa2-44d1-a39e-56ccd3c26d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,10 +1377,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:42:30 GMT" + "Fri, 06 Nov 2020 13:25:53 GMT" ], "Content-Length": [ - "516" + "515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1389,20 +1389,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/74c444fe-488e-4d37-9ee2-295f6da85413\",\r\n \"name\": \"74c444fe-488e-4d37-9ee2-295f6da85413\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:42:00.8222333Z\",\r\n \"endTime\": \"2020-09-05T12:42:01.3379385Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c87c045c-ff5f-49e7-a9c1-ba1c75b403f9\",\r\n \"name\": \"c87c045c-ff5f-49e7-a9c1-ba1c75b403f9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:25:24.294316Z\",\r\n \"endTime\": \"2020-11-06T13:25:24.9818784Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/74c444fe-488e-4d37-9ee2-295f6da85413?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzRjNDQ0ZmUtNDg4ZS00ZDM3LTllZTItMjk1ZjZkYTg1NDEzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c87c045c-ff5f-49e7-a9c1-ba1c75b403f9?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzg3YzA0NWMtZmY1Zi00OWU3LWE5YzEtYmExYzc1YjQwM2Y5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1413,7 +1413,7 @@ "no-cache" ], "x-ms-request-id": [ - "5afa8105-4f0e-4efb-910c-543af1ce2675" + "0e54e646-1394-4c9c-adc5-7fe106ee62dc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1431,10 +1431,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "222be90d-392a-466b-bb77-86ffedfdb40e" + "beb3a334-19b3-47f3-b2df-e9d8841392dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124231Z:222be90d-392a-466b-bb77-86ffedfdb40e" + "FRANCESOUTH:20201106T132554Z:beb3a334-19b3-47f3-b2df-e9d8841392dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,10 +1443,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:42:31 GMT" + "Fri, 06 Nov 2020 13:25:54 GMT" ], "Content-Length": [ - "738" + "744" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1455,26 +1455,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A42%3A00.9620784Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"poolId\": \"ab85fdc3-8709-3024-4e3e-7bd4b986e563\",\r\n \"name\": \"ps4594/ps4405\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps4405\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A25%3A24.3778723Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1Updated\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"poolId\": \"b212dbc1-0406-e611-2172-0c314ebc90b3\",\r\n \"name\": \"ps7729/ps1364\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps1364\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzNDA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1OTQvY2FwYWNpdHlQb29scy9wczI5NzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTU3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3MjkvY2FwYWNpdHlQb29scy9wczM4MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8be95eea-ce9a-4a0d-9e11-cdefbadb022d" + "5cf56562-df32-4530-a559-43c6760e9fc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1485,10 +1485,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8eeb831a-bd5d-4750-a617-757516801c3c?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a00e45bd-543e-47c7-aebb-645c24b96d0c?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8eeb831a-bd5d-4750-a617-757516801c3c?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a00e45bd-543e-47c7-aebb-645c24b96d0c?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1506,13 +1506,13 @@ "14998" ], "x-ms-request-id": [ - "03a928d4-505e-48ec-bbba-7e4671c78fa0" + "ed01178a-baee-4a1c-8189-cb716f6ad28f" ], "x-ms-correlation-request-id": [ - "03a928d4-505e-48ec-bbba-7e4671c78fa0" + "ed01178a-baee-4a1c-8189-cb716f6ad28f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124232Z:03a928d4-505e-48ec-bbba-7e4671c78fa0" + "FRANCESOUTH:20201106T132556Z:ed01178a-baee-4a1c-8189-cb716f6ad28f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1521,7 +1521,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:42:32 GMT" + "Fri, 06 Nov 2020 13:25:55 GMT" ], "Expires": [ "-1" @@ -1534,16 +1534,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8eeb831a-bd5d-4750-a617-757516801c3c?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGVlYjgzMWEtYmQ1ZC00NzUwLWE2MTctNzU3NTE2ODAxYzNjP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a00e45bd-543e-47c7-aebb-645c24b96d0c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTAwZTQ1YmQtNTQzZS00N2M3LWFlYmItNjQ1YzI0Yjk2ZDBjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1554,7 +1554,7 @@ "no-cache" ], "x-ms-request-id": [ - "641ec2b4-13e2-405f-bfa7-33f282df73ae" + "905c4898-06b3-4022-a364-ada785e0de38" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1572,10 +1572,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "f17a156c-6ac8-4a12-bd88-ba6a1b6a7649" + "c416d23c-2dcd-4f62-8058-0e678b68b064" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124302Z:f17a156c-6ac8-4a12-bd88-ba6a1b6a7649" + "FRANCESOUTH:20201106T132626Z:c416d23c-2dcd-4f62-8058-0e678b68b064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1584,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:01 GMT" + "Fri, 06 Nov 2020 13:26:25 GMT" ], "Content-Length": [ "516" @@ -1596,20 +1596,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8eeb831a-bd5d-4750-a617-757516801c3c\",\r\n \"name\": \"8eeb831a-bd5d-4750-a617-757516801c3c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:42:32.2255866Z\",\r\n \"endTime\": \"2020-09-05T12:42:32.5544002Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a00e45bd-543e-47c7-aebb-645c24b96d0c\",\r\n \"name\": \"a00e45bd-543e-47c7-aebb-645c24b96d0c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:25:55.9336389Z\",\r\n \"endTime\": \"2020-11-06T13:25:56.5117416Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8eeb831a-bd5d-4750-a617-757516801c3c?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGVlYjgzMWEtYmQ1ZC00NzUwLWE2MTctNzU3NTE2ODAxYzNjP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a00e45bd-543e-47c7-aebb-645c24b96d0c?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTAwZTQ1YmQtNTQzZS00N2M3LWFlYmItNjQ1YzI0Yjk2ZDBjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1620,7 +1620,7 @@ "no-cache" ], "x-ms-request-id": [ - "f167ffc6-9009-4e6b-8f29-87997cdcb7aa" + "593be0ce-c6a2-430d-a58c-c5ad63e1152b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1638,10 +1638,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "b5b934b9-baed-43b8-b038-606fa06cc326" + "85155dbc-c89b-424b-b884-ed8a59f533d9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124302Z:b5b934b9-baed-43b8-b038-606fa06cc326" + "FRANCESOUTH:20201106T132626Z:85155dbc-c89b-424b-b884-ed8a59f533d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,7 +1650,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:02 GMT" + "Fri, 06 Nov 2020 13:26:25 GMT" ], "Content-Length": [ "709" @@ -1662,26 +1662,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A42%3A32.2744858Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"1a519329-5d38-5d24-2722-8e0c9849288b\",\r\n \"name\": \"ps4594/ps2974\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps4052/providers/Microsoft.NetApp/netAppAccounts/ps4594/capacityPools/ps2974\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A25%3A55.9969523Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"ea76bc94-8b0d-7083-9434-1f7a17fa9568\",\r\n \"name\": \"ps7729/ps3814\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9579/providers/Microsoft.NetApp/netAppAccounts/ps7729/capacityPools/ps3814\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps4052?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzNDA1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9579?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTU3OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec492d0-6b76-4208-9a06-c555020a22ab" + "3b4e9268-6429-4d2d-b0fb-0573f8114bdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1692,7 +1692,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1701,13 +1701,13 @@ "14999" ], "x-ms-request-id": [ - "d6ce68f3-27d9-48fb-a836-a1715a5b2659" + "dfee2cf2-6297-4519-982e-c2d12ba142be" ], "x-ms-correlation-request-id": [ - "d6ce68f3-27d9-48fb-a836-a1715a5b2659" + "dfee2cf2-6297-4519-982e-c2d12ba142be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124306Z:d6ce68f3-27d9-48fb-a836-a1715a5b2659" + "FRANCESOUTH:20201106T132631Z:dfee2cf2-6297-4519-982e-c2d12ba142be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,7 +1716,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:05 GMT" + "Fri, 06 Nov 2020 13:26:31 GMT" ], "Expires": [ "-1" @@ -1729,16 +1729,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1749,7 +1749,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1758,13 +1758,13 @@ "11999" ], "x-ms-request-id": [ - "6b7ccd5f-dea4-4047-a14c-4f0142dcb768" + "f6815ade-9489-4a71-9530-72c204eb0a9b" ], "x-ms-correlation-request-id": [ - "6b7ccd5f-dea4-4047-a14c-4f0142dcb768" + "f6815ade-9489-4a71-9530-72c204eb0a9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124321Z:6b7ccd5f-dea4-4047-a14c-4f0142dcb768" + "FRANCESOUTH:20201106T132647Z:f6815ade-9489-4a71-9530-72c204eb0a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,7 +1773,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:20 GMT" + "Fri, 06 Nov 2020 13:26:46 GMT" ], "Expires": [ "-1" @@ -1786,16 +1786,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1806,7 +1806,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1815,13 +1815,13 @@ "11998" ], "x-ms-request-id": [ - "32a73035-a6b8-4476-bb19-2368ec8d6cd1" + "12c93360-5c5e-4cfd-b60b-e634ed46ac07" ], "x-ms-correlation-request-id": [ - "32a73035-a6b8-4476-bb19-2368ec8d6cd1" + "12c93360-5c5e-4cfd-b60b-e634ed46ac07" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124336Z:32a73035-a6b8-4476-bb19-2368ec8d6cd1" + "FRANCESOUTH:20201106T132702Z:12c93360-5c5e-4cfd-b60b-e634ed46ac07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1830,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:36 GMT" + "Fri, 06 Nov 2020 13:27:01 GMT" ], "Expires": [ "-1" @@ -1843,16 +1843,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1863,7 +1863,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1872,13 +1872,13 @@ "11997" ], "x-ms-request-id": [ - "84251622-88e4-4ecb-ac3e-e2ead755ed75" + "ee14af43-6aab-4c79-83f7-504ac2970201" ], "x-ms-correlation-request-id": [ - "84251622-88e4-4ecb-ac3e-e2ead755ed75" + "ee14af43-6aab-4c79-83f7-504ac2970201" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124352Z:84251622-88e4-4ecb-ac3e-e2ead755ed75" + "FRANCESOUTH:20201106T132718Z:ee14af43-6aab-4c79-83f7-504ac2970201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1887,7 +1887,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:43:51 GMT" + "Fri, 06 Nov 2020 13:27:17 GMT" ], "Expires": [ "-1" @@ -1900,16 +1900,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1920,7 +1920,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1929,13 +1929,13 @@ "11996" ], "x-ms-request-id": [ - "a1b6888a-dc30-4e78-99ba-69da0aa30e3c" + "5886d50f-d580-4c72-b0ac-69d9262f2844" ], "x-ms-correlation-request-id": [ - "a1b6888a-dc30-4e78-99ba-69da0aa30e3c" + "5886d50f-d580-4c72-b0ac-69d9262f2844" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124407Z:a1b6888a-dc30-4e78-99ba-69da0aa30e3c" + "FRANCESOUTH:20201106T132733Z:5886d50f-d580-4c72-b0ac-69d9262f2844" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1944,7 +1944,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:44:06 GMT" + "Fri, 06 Nov 2020 13:27:32 GMT" ], "Expires": [ "-1" @@ -1957,16 +1957,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1977,7 +1977,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1986,13 +1986,13 @@ "11995" ], "x-ms-request-id": [ - "c4e8b63b-34f2-4cc2-98da-a593f52084a6" + "1dcf113c-10dd-4ca3-8902-536880bae96f" ], "x-ms-correlation-request-id": [ - "c4e8b63b-34f2-4cc2-98da-a593f52084a6" + "1dcf113c-10dd-4ca3-8902-536880bae96f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124422Z:c4e8b63b-34f2-4cc2-98da-a593f52084a6" + "FRANCESOUTH:20201106T132748Z:1dcf113c-10dd-4ca3-8902-536880bae96f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,7 +2001,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:44:22 GMT" + "Fri, 06 Nov 2020 13:27:48 GMT" ], "Expires": [ "-1" @@ -2014,16 +2014,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2034,7 +2034,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2043,13 +2043,13 @@ "11994" ], "x-ms-request-id": [ - "6aa9c687-25ae-4f28-a6fc-d7471fb6e629" + "2b58579e-777d-42ca-802f-850199cd9bdf" ], "x-ms-correlation-request-id": [ - "6aa9c687-25ae-4f28-a6fc-d7471fb6e629" + "2b58579e-777d-42ca-802f-850199cd9bdf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124438Z:6aa9c687-25ae-4f28-a6fc-d7471fb6e629" + "FRANCESOUTH:20201106T132804Z:2b58579e-777d-42ca-802f-850199cd9bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,7 +2058,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:44:37 GMT" + "Fri, 06 Nov 2020 13:28:04 GMT" ], "Expires": [ "-1" @@ -2071,16 +2071,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2091,7 +2091,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2100,13 +2100,13 @@ "11993" ], "x-ms-request-id": [ - "2a6e7fd2-8a89-4385-ae62-69412efac8f4" + "543716e2-d615-4c9f-930c-f37af63c19fd" ], "x-ms-correlation-request-id": [ - "2a6e7fd2-8a89-4385-ae62-69412efac8f4" + "543716e2-d615-4c9f-930c-f37af63c19fd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124453Z:2a6e7fd2-8a89-4385-ae62-69412efac8f4" + "FRANCESOUTH:20201106T132819Z:543716e2-d615-4c9f-930c-f37af63c19fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,7 +2115,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:44:53 GMT" + "Fri, 06 Nov 2020 13:28:19 GMT" ], "Expires": [ "-1" @@ -2128,16 +2128,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2148,7 +2148,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2157,13 +2157,13 @@ "11992" ], "x-ms-request-id": [ - "bc6eb39d-5000-403c-b743-7a970f40e7fd" + "331b15fe-b503-4778-a1b2-963bdcbef0ee" ], "x-ms-correlation-request-id": [ - "bc6eb39d-5000-403c-b743-7a970f40e7fd" + "331b15fe-b503-4778-a1b2-963bdcbef0ee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124508Z:bc6eb39d-5000-403c-b743-7a970f40e7fd" + "FRANCESOUTH:20201106T132835Z:331b15fe-b503-4778-a1b2-963bdcbef0ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2172,7 +2172,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:45:08 GMT" + "Fri, 06 Nov 2020 13:28:34 GMT" ], "Expires": [ "-1" @@ -2185,16 +2185,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2205,7 +2205,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2214,13 +2214,13 @@ "11991" ], "x-ms-request-id": [ - "ce82153a-dfe4-4491-b0e7-9b423e5c0b58" + "6b648dd4-13c8-4b40-abeb-fe097c6e7f75" ], "x-ms-correlation-request-id": [ - "ce82153a-dfe4-4491-b0e7-9b423e5c0b58" + "6b648dd4-13c8-4b40-abeb-fe097c6e7f75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124524Z:ce82153a-dfe4-4491-b0e7-9b423e5c0b58" + "FRANCESOUTH:20201106T132850Z:6b648dd4-13c8-4b40-abeb-fe097c6e7f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,7 +2229,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:45:23 GMT" + "Fri, 06 Nov 2020 13:28:50 GMT" ], "Expires": [ "-1" @@ -2242,16 +2242,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2261,23 +2261,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-request-id": [ - "19f06e0c-fbc3-40fa-b286-a1aab2c20665" + "05b2d6f1-aa23-45e9-9bf6-60f24c964ee4" ], "x-ms-correlation-request-id": [ - "19f06e0c-fbc3-40fa-b286-a1aab2c20665" + "05b2d6f1-aa23-45e9-9bf6-60f24c964ee4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124539Z:19f06e0c-fbc3-40fa-b286-a1aab2c20665" + "FRANCESOUTH:20201106T132905Z:05b2d6f1-aa23-45e9-9bf6-60f24c964ee4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2286,58 +2280,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:45:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "26d75542-aef3-49be-b9ac-69bc7b8569c5" - ], - "x-ms-correlation-request-id": [ - "26d75542-aef3-49be-b9ac-69bc7b8569c5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124554Z:26d75542-aef3-49be-b9ac-69bc7b8569c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 12:45:53 GMT" + "Fri, 06 Nov 2020 13:29:05 GMT" ], "Expires": [ "-1" @@ -2350,16 +2293,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwNTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd05USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU56a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2370,16 +2313,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "15b05643-0cca-4ae0-aa26-657550535de3" + "7f9c78e0-5f60-4bbb-b0ac-32762784a8ac" ], "x-ms-correlation-request-id": [ - "15b05643-0cca-4ae0-aa26-657550535de3" + "7f9c78e0-5f60-4bbb-b0ac-32762784a8ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124555Z:15b05643-0cca-4ae0-aa26-657550535de3" + "FRANCESOUTH:20201106T132906Z:7f9c78e0-5f60-4bbb-b0ac-32762784a8ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2388,7 +2331,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:45:54 GMT" + "Fri, 06 Nov 2020 13:29:05 GMT" ], "Expires": [ "-1" @@ -2403,13 +2346,13 @@ ], "Names": { "Test-PoolCrud": [ - "ps4052", - "ps4594", - "ps4405", - "ps2974" + "ps9579", + "ps7729", + "ps1364", + "ps3814" ] }, "Variables": { - "SubscriptionId": "0661B131-4A11-479B-96BF-2F95ACCA2F73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolPipelines.json index 2a83a8680bdc..2fba7cb4dbfb 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolPipelines.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps2525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzMjUyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6820?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjgyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "922a9044-cc6c-4886-a3a3-28b455a3c42f" + "080da766-53f0-4c8e-91ef-94f821cd1bd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "9113f3cb-61aa-4610-81a4-0d59a728ce5b" + "9a997050-32c5-4529-8da1-0c205eeecca2" ], "x-ms-correlation-request-id": [ - "9113f3cb-61aa-4610-81a4-0d59a728ce5b" + "9a997050-32c5-4529-8da1-0c205eeecca2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123250Z:9113f3cb-61aa-4610-81a4-0d59a728ce5b" + "FRANCESOUTH:20201106T131538Z:9a997050-32c5-4529-8da1-0c205eeecca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:32:49 GMT" + "Fri, 06 Nov 2020 13:15:38 GMT" ], "Content-Length": [ "172" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525\",\r\n \"name\": \"ps2525\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820\",\r\n \"name\": \"ps6820\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "630cc69b-4d47-42d3-be47-038721fcf003" + "60656c17-aa63-42cf-92e2-4132f837c84a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.8680067Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.6573252Z'\"" ], "x-ms-request-id": [ - "362d5f1b-9713-46e4-b1d9-8706c7415176" + "3c900ac1-ef2d-493d-aa44-1c413f019554" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4f13e53-ca44-4160-b521-9ed7e66695fb?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/14e07b34-61e6-463d-87f9-8953a4ade501?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "d5d25dee-a0d4-4d79-b7e8-cdba46fd19f3" + "0c1be940-06d0-4ddd-9dec-c558632e0d03" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123258Z:d5d25dee-a0d4-4d79-b7e8-cdba46fd19f3" + "FRANCESOUTH:20201106T131546Z:0c1be940-06d0-4ddd-9dec-c558632e0d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:32:57 GMT" + "Fri, 06 Nov 2020 13:15:46 GMT" ], "Content-Length": [ "319" @@ -147,20 +147,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.8680067Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.6573252Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4f13e53-ca44-4160-b521-9ed7e66695fb?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZDRmMTNlNTMtY2E0NC00MTYwLWI1MjEtOWVkN2U2NjY5NWZiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/14e07b34-61e6-463d-87f9-8953a4ade501?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTRlMDdiMzQtNjFlNi00NjNkLTg3ZjktODk1M2E0YWRlNTAxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "8a1490ef-9506-4ab5-a51b-486b51841cfa" + "49b8b33f-c53b-407e-b863-227d156bc3f7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "bbfd70aa-0034-4274-8f40-e20cfef8bfa7" + "d42ba552-ae04-4016-919c-282e00806157" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123328Z:bbfd70aa-0034-4274-8f40-e20cfef8bfa7" + "FRANCESOUTH:20201106T131617Z:d42ba552-ae04-4016-919c-282e00806157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,10 +201,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:33:28 GMT" + "Fri, 06 Nov 2020 13:16:17 GMT" ], "Content-Length": [ - "494" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,20 +213,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4f13e53-ca44-4160-b521-9ed7e66695fb\",\r\n \"name\": \"d4f13e53-ca44-4160-b521-9ed7e66695fb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:32:56.7672626Z\",\r\n \"endTime\": \"2020-09-05T12:32:56.939233Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/14e07b34-61e6-463d-87f9-8953a4ade501\",\r\n \"name\": \"14e07b34-61e6-463d-87f9-8953a4ade501\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:15:45.5755369Z\",\r\n \"endTime\": \"2020-11-06T13:15:45.7161713Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\"" ], "x-ms-request-id": [ - "7259370c-3a61-4042-a218-f3119069cb12" + "e2ec319d-afab-4994-9a35-ce36e5b56cf3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "c8ae3ef0-b33f-49eb-9925-803bfb317193" + "9ddec9f7-f844-440f-ad55-f179b75ae9a8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123328Z:c8ae3ef0-b33f-49eb-9925-803bfb317193" + "FRANCESOUTH:20201106T131617Z:9ddec9f7-f844-440f-ad55-f179b75ae9a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:33:28 GMT" + "Fri, 06 Nov 2020 13:16:17 GMT" ], "Content-Length": [ "320" @@ -282,26 +282,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75819cbd-d2dd-49e7-8965-e32d7354237c" + "48796aa4-7117-4aae-bd00-f9c5d8ba8748" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\"" ], "x-ms-request-id": [ - "8a5fbfcf-2cf4-4a33-b011-d1d7db313e91" + "4642f3e8-9cc6-4335-a95c-861433a96bd1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -333,10 +333,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "4c4d7f84-b733-4ce8-926b-a2be988a441a" + "9ca30091-e5cf-4e27-a60b-34d93fa737b2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123403Z:4c4d7f84-b733-4ce8-926b-a2be988a441a" + "FRANCESOUTH:20201106T131702Z:9ca30091-e5cf-4e27-a60b-34d93fa737b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,7 +345,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:02 GMT" + "Fri, 06 Nov 2020 13:17:01 GMT" ], "Content-Length": [ "320" @@ -357,26 +357,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "695ec52e-55e0-4de6-a898-6af72b8816bc" + "1dfa2c1c-e584-4cf1-9d70-dec14a8cec0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -387,10 +387,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\"" ], "x-ms-request-id": [ - "4742b7c2-60a9-4ac4-8df4-bf57689bd52d" + "1242a414-285d-42de-a814-f8002fc29660" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -408,10 +408,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "80e28f08-e937-4ec2-bd11-35a3f7144b94" + "f4fb5d07-d116-4dca-b502-5b0128563bc6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123405Z:80e28f08-e937-4ec2-bd11-35a3f7144b94" + "FRANCESOUTH:20201106T131703Z:f4fb5d07-d116-4dca-b502-5b0128563bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,7 +420,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:04 GMT" + "Fri, 06 Nov 2020 13:17:02 GMT" ], "Content-Length": [ "320" @@ -432,26 +432,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4183e3a-8218-457b-b047-8875a9f9bed0" + "140c283f-224a-4d54-8b87-a7b0594c46c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -462,10 +462,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\"" ], "x-ms-request-id": [ - "5de6f4ef-7581-499d-9273-b03daa2b29e7" + "a1649688-f67c-4abe-b202-1a04abeae164" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -483,10 +483,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "66cbc24f-1759-4302-ba92-6df25819af7d" + "28267b04-7886-460f-9069-c9eec46f34dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123511Z:66cbc24f-1759-4302-ba92-6df25819af7d" + "FRANCESOUTH:20201106T131810Z:28267b04-7886-460f-9069-c9eec46f34dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,7 +495,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:11 GMT" + "Fri, 06 Nov 2020 13:18:10 GMT" ], "Content-Length": [ "320" @@ -507,26 +507,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6440d398-75de-447d-924d-7f908601a654" + "5bccefe3-2de4-401f-87e9-985eef48d3d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\"" + "W/\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\"" ], "x-ms-request-id": [ - "632aa306-0e44-4aee-a872-ebbdb3f425c1" + "5cd7a41b-0990-4737-b1e2-b1bbc41b251f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -558,10 +558,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "80c1c68f-a1d9-4d81-b94f-333a6f1cef45" + "5a52b181-c320-4d8a-a91c-0e58da2c54c8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123616Z:80c1c68f-a1d9-4d81-b94f-333a6f1cef45" + "FRANCESOUTH:20201106T131921Z:5a52b181-c320-4d8a-a91c-0e58da2c54c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:15 GMT" + "Fri, 06 Nov 2020 13:19:21 GMT" ], "Content-Length": [ "320" @@ -582,26 +582,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160\",\r\n \"name\": \"ps6160\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A32%3A56.9370569Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420\",\r\n \"name\": \"ps3420\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A15%3A45.7203693Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eb868096-bfde-4293-afb6-acf1a80c23c8" + "9ce56b34-9319-42ad-82c4-95101887d3a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,13 +618,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A33%3A30.6842071Z'\"" + "W/\"datetime'2020-11-06T13%3A16%3A20.9629868Z'\"" ], "x-ms-request-id": [ - "8e6c1f6e-23b1-462b-87ab-b14812aa3d6a" + "fbd3f23c-bb20-4eba-a010-1ee798cab9dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/30e9c829-df76-4b03-bb92-76a0bdbe9191?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f7b98bdc-42a0-4156-8250-7a3698c8d86e?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -642,10 +642,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "21ded78b-dab9-44de-9f2b-e56801fabdb8" + "d56108e6-0f35-4501-8082-4650988f0766" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123331Z:21ded78b-dab9-44de-9f2b-e56801fabdb8" + "FRANCESOUTH:20201106T131622Z:d56108e6-0f35-4501-8082-4650988f0766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,10 +654,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:33:31 GMT" + "Fri, 06 Nov 2020 13:16:21 GMT" ], "Content-Length": [ - "407" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,26 +666,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A33%3A30.6842071Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A16%3A20.9629868Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b0de82a-0853-4b46-a343-8a12c3039166" + "08ad4eaa-f832-4485-a904-6e3725238a61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,13 +702,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A34%3A40.0648642Z'\"" + "W/\"datetime'2020-11-06T13%3A17%3A38.5199854Z'\"" ], "x-ms-request-id": [ - "e64dc1cb-34d0-4b66-a6cf-dc736c67d9c6" + "532eef6f-ecc7-4bc1-9ad7-9d3e79df9354" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3ca0d478-55e0-42de-8f7a-bfabf47c7726?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5819ccd7-362a-44d4-a771-fd92edc685bc?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -726,10 +726,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "6e4941f7-ed78-483e-9ddc-1fe748093e06" + "b204f684-fd23-4f2e-a161-171a51b1a2ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123440Z:6e4941f7-ed78-483e-9ddc-1fe748093e06" + "FRANCESOUTH:20201106T131739Z:b204f684-fd23-4f2e-a161-171a51b1a2ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,10 +738,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:40 GMT" + "Fri, 06 Nov 2020 13:17:38 GMT" ], "Content-Length": [ - "407" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,20 +750,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A40.0648642Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A17%3A38.5199854Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/30e9c829-df76-4b03-bb92-76a0bdbe9191?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzBlOWM4MjktZGY3Ni00YjAzLWJiOTItNzZhMGJkYmU5MTkxP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f7b98bdc-42a0-4156-8250-7a3698c8d86e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjdiOThiZGMtNDJhMC00MTU2LTgyNTAtN2EzNjk4YzhkODZlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -774,7 +774,7 @@ "no-cache" ], "x-ms-request-id": [ - "bfbca503-3fd2-402d-bb57-ea3746c7c6db" + "130b7035-0220-486e-ac30-d29b1344ae31" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -792,10 +792,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "7ca00dd4-b5b0-463f-a830-36dccd649f54" + "30fc26ab-398a-438d-9670-8839e0be7f23" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123401Z:7ca00dd4-b5b0-463f-a830-36dccd649f54" + "FRANCESOUTH:20201106T131652Z:30fc26ab-398a-438d-9670-8839e0be7f23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +804,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:00 GMT" + "Fri, 06 Nov 2020 13:16:51 GMT" ], "Content-Length": [ "516" @@ -816,20 +816,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/30e9c829-df76-4b03-bb92-76a0bdbe9191\",\r\n \"name\": \"30e9c829-df76-4b03-bb92-76a0bdbe9191\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:33:30.5091071Z\",\r\n \"endTime\": \"2020-09-05T12:33:30.9153232Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f7b98bdc-42a0-4156-8250-7a3698c8d86e\",\r\n \"name\": \"f7b98bdc-42a0-4156-8250-7a3698c8d86e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:16:20.9031532Z\",\r\n \"endTime\": \"2020-11-06T13:16:21.2156524Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -840,10 +840,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A33%3A34.2427535Z'\"" + "W/\"datetime'2020-11-06T13%3A16%3A23.7329158Z'\"" ], "x-ms-request-id": [ - "6927e7dc-988a-42c6-bf00-9bfe877053ee" + "4722cf5f-8f97-47e4-b42c-8478939ff32a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -861,10 +861,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "ad02cf7f-97e0-43b5-b79e-14e9043f7051" + "9a79113b-f638-4ca8-b2f2-0caa65d2a646" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123402Z:ad02cf7f-97e0-43b5-b79e-14e9043f7051" + "FRANCESOUTH:20201106T131652Z:9a79113b-f638-4ca8-b2f2-0caa65d2a646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,10 +873,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:01 GMT" + "Fri, 06 Nov 2020 13:16:52 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,26 +885,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A33%3A34.2427535Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"cabcf5f9-54f6-cbb6-9524-9baae434481e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A16%3A23.7329158Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"b7a5dd2e-be6f-0f8d-5457-1dc6d8e2f719\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c732051-a543-443a-8e11-f929341ffc1b" + "8b232713-e8a9-4ec5-a19b-906dfd157ab8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -915,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A33%3A34.2427535Z'\"" + "W/\"datetime'2020-11-06T13%3A16%3A23.7329158Z'\"" ], "x-ms-request-id": [ - "6984a83d-6357-415f-b379-a16193418794" + "4312afdd-2efa-420b-85fa-a56446a64c6f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -936,10 +936,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "38d5a40f-b59a-416d-b21b-f93a1947547a" + "1eb436ee-fef7-4fb3-beb0-92d561bd14a4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123402Z:38d5a40f-b59a-416d-b21b-f93a1947547a" + "FRANCESOUTH:20201106T131653Z:1eb436ee-fef7-4fb3-beb0-92d561bd14a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,10 +948,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:01 GMT" + "Fri, 06 Nov 2020 13:16:52 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,20 +960,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A33%3A34.2427535Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"cabcf5f9-54f6-cbb6-9524-9baae434481e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A16%3A23.7329158Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"b7a5dd2e-be6f-0f8d-5457-1dc6d8e2f719\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -984,10 +984,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A34%3A42.9419232Z'\"" + "W/\"datetime'2020-11-06T13%3A17%3A41.5050515Z'\"" ], "x-ms-request-id": [ - "05a157a5-989d-4b8f-bddf-0770321eaf54" + "d3333e57-a44b-42ee-a64e-fdf2d14d42f6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1005,10 +1005,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "a1d66283-9199-4309-be0a-83b743fda633" + "341fd4a4-7db4-43fe-88ec-17ea971522be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123511Z:a1d66283-9199-4309-be0a-83b743fda633" + "FRANCESOUTH:20201106T131810Z:341fd4a4-7db4-43fe-88ec-17ea971522be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,10 +1017,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:11 GMT" + "Fri, 06 Nov 2020 13:18:09 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,26 +1029,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A42.9419232Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"85afa28b-8cb2-a668-0370-97e7b3d40c59\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A17%3A41.5050515Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"6a5534b9-9d5f-7abb-c095-f95134bad902\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7cb8131-6b00-4be2-87b5-b5c9c05f8c58" + "0e1b06e2-a8f2-4eab-a93b-8c1a9455471a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1059,10 +1059,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A34%3A42.9419232Z'\"" + "W/\"datetime'2020-11-06T13%3A17%3A41.5050515Z'\"" ], "x-ms-request-id": [ - "f38cbcda-1dd7-4dd1-b827-9e340263281f" + "bb78d77d-44d6-45cf-baf1-4e5fbb44d4ea" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1080,10 +1080,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "aa4f5dce-2d2a-416a-830d-e6e6ccfece2e" + "f706d7f2-c33f-4a47-98fe-2d4d217459cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123544Z:aa4f5dce-2d2a-416a-830d-e6e6ccfece2e" + "FRANCESOUTH:20201106T131844Z:f706d7f2-c33f-4a47-98fe-2d4d217459cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,10 +1092,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:43 GMT" + "Fri, 06 Nov 2020 13:18:43 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,32 +1104,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A42.9419232Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"85afa28b-8cb2-a668-0370-97e7b3d40c59\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A17%3A41.5050515Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"6a5534b9-9d5f-7abb-c095-f95134bad902\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84fe5dff-af72-40f8-9171-39541d58673a" + "712411f5-fe4d-40d7-aed6-821582eaec2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "92" + "79" ] }, "ResponseHeaders": { @@ -1140,10 +1140,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A34%3A02.7861857Z'\"" + "W/\"datetime'2020-11-06T13%3A16%3A54.2152075Z'\"" ], "x-ms-request-id": [ - "3573c069-bc3e-4d57-b4f0-7aabb282ca78" + "9a42c929-8f31-4d07-8e02-548f35229f82" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1161,10 +1161,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "f11f5601-8d61-48b0-aa23-3a48e1a7c624" + "94b8a325-3c32-4e5f-8f84-d33dcbd18219" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123403Z:f11f5601-8d61-48b0-aa23-3a48e1a7c624" + "FRANCESOUTH:20201106T131701Z:94b8a325-3c32-4e5f-8f84-d33dcbd18219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,10 +1173,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:02 GMT" + "Fri, 06 Nov 2020 13:17:01 GMT" ], "Content-Length": [ - "457" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1185,32 +1185,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A02.7861857Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"cabcf5f9-54f6-cbb6-9524-9baae434481e\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A16%3A54.2152075Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"b7a5dd2e-be6f-0f8d-5457-1dc6d8e2f719\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0bfb39f8-d75c-4833-adfd-1cc4821f29e4" + "c1164e3e-2cf3-4116-8d8c-480c6c566ca5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "87" ] }, "ResponseHeaders": { @@ -1221,10 +1221,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A34%3A04.2512344Z'\"" + "W/\"datetime'2020-11-06T13%3A17%3A02.5930571Z'\"" ], "x-ms-request-id": [ - "3855fe99-f5fc-4358-a72a-2db54f60d45f" + "3fcb4a15-b960-4ba9-ac12-f4e7f4029a7b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1242,10 +1242,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "9125fa13-fdb0-427f-a73a-2b7c45a9c740" + "e2258fa6-5182-4ca9-829c-e4dfac32e4a4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123404Z:9125fa13-fdb0-427f-a73a-2b7c45a9c740" + "FRANCESOUTH:20201106T131703Z:e2258fa6-5182-4ca9-829c-e4dfac32e4a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1254,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:03 GMT" + "Fri, 06 Nov 2020 13:17:02 GMT" ], "Content-Length": [ - "456" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,26 +1266,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A04.2512344Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"cabcf5f9-54f6-cbb6-9524-9baae434481e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A17%3A02.5930571Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"poolId\": \"b7a5dd2e-be6f-0f8d-5457-1dc6d8e2f719\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c48446-1232-4357-89e3-a44ba44fd03e" + "0ebc5f1c-c4d7-4203-8a0f-88fe3a209cb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1296,10 +1296,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94c46fdc-32b6-4f1c-936a-e5607ec3a75a?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/daf3f4a5-5e38-4f6b-ad01-881ffd9e688f?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94c46fdc-32b6-4f1c-936a-e5607ec3a75a?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/daf3f4a5-5e38-4f6b-ad01-881ffd9e688f?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1317,13 +1317,13 @@ "14999" ], "x-ms-request-id": [ - "c95cf39f-d09e-4005-9844-d991e8bd0bab" + "666c0dcf-1019-41d7-afa1-c6dd3448cbd0" ], "x-ms-correlation-request-id": [ - "c95cf39f-d09e-4005-9844-d991e8bd0bab" + "666c0dcf-1019-41d7-afa1-c6dd3448cbd0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123406Z:c95cf39f-d09e-4005-9844-d991e8bd0bab" + "FRANCESOUTH:20201106T131704Z:666c0dcf-1019-41d7-afa1-c6dd3448cbd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,7 +1332,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:05 GMT" + "Fri, 06 Nov 2020 13:17:03 GMT" ], "Expires": [ "-1" @@ -1345,22 +1345,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczgwMjk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0MDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b884ee74-1143-48a3-a400-5a0934ffb116" + "fd35faf1-861d-412c-883a-675edb164c87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1371,10 +1371,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78bf92ac-1d66-40c4-a07f-9e7c2395b761?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78bf92ac-1d66-40c4-a07f-9e7c2395b761?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1392,13 +1392,13 @@ "14998" ], "x-ms-request-id": [ - "c89e7a27-4a9e-4f39-8df3-00c1787b3552" + "cec45b7a-f231-4a90-b5ab-be2fa4152297" ], "x-ms-correlation-request-id": [ - "c89e7a27-4a9e-4f39-8df3-00c1787b3552" + "cec45b7a-f231-4a90-b5ab-be2fa4152297" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123545Z:c89e7a27-4a9e-4f39-8df3-00c1787b3552" + "FRANCESOUTH:20201106T131851Z:cec45b7a-f231-4a90-b5ab-be2fa4152297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,7 +1407,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:44 GMT" + "Fri, 06 Nov 2020 13:18:50 GMT" ], "Expires": [ "-1" @@ -1420,16 +1420,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94c46fdc-32b6-4f1c-936a-e5607ec3a75a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTRjNDZmZGMtMzJiNi00ZjFjLTkzNmEtZTU2MDdlYzNhNzVhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/daf3f4a5-5e38-4f6b-ad01-881ffd9e688f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZGFmM2Y0YTUtNWUzOC00ZjZiLWFkMDEtODgxZmZkOWU2ODhmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1440,7 +1440,7 @@ "no-cache" ], "x-ms-request-id": [ - "47e2d494-e652-4913-a3b5-0d55c468336b" + "d03ceedd-b358-4557-b899-3b578d8d06d0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1458,10 +1458,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "46ec4348-41ce-4759-928d-1fd59d823c63" + "5cf019b5-d584-4115-a1ce-4b3b1492cfc2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123436Z:46ec4348-41ce-4759-928d-1fd59d823c63" + "FRANCESOUTH:20201106T131734Z:5cf019b5-d584-4115-a1ce-4b3b1492cfc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,7 +1470,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:35 GMT" + "Fri, 06 Nov 2020 13:17:34 GMT" ], "Content-Length": [ "516" @@ -1482,20 +1482,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94c46fdc-32b6-4f1c-936a-e5607ec3a75a\",\r\n \"name\": \"94c46fdc-32b6-4f1c-936a-e5607ec3a75a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:34:05.5191734Z\",\r\n \"endTime\": \"2020-09-05T12:34:06.2847457Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/daf3f4a5-5e38-4f6b-ad01-881ffd9e688f\",\r\n \"name\": \"daf3f4a5-5e38-4f6b-ad01-881ffd9e688f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:17:04.2410343Z\",\r\n \"endTime\": \"2020-11-06T13:17:04.8705575Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94c46fdc-32b6-4f1c-936a-e5607ec3a75a?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTRjNDZmZGMtMzJiNi00ZjFjLTkzNmEtZTU2MDdlYzNhNzVhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/daf3f4a5-5e38-4f6b-ad01-881ffd9e688f?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZGFmM2Y0YTUtNWUzOC00ZjZiLWFkMDEtODgxZmZkOWU2ODhmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1506,7 +1506,7 @@ "no-cache" ], "x-ms-request-id": [ - "b6b897b0-21e9-423f-a1d6-501d7c9ffdcf" + "28614d63-34b3-4c3f-9d07-71f2edf23e93" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1524,10 +1524,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "8c678b98-4904-41a4-9bb3-4739c10cf079" + "f96b70ad-638e-4784-a334-2f4eebdf3929" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123436Z:8c678b98-4904-41a4-9bb3-4739c10cf079" + "FRANCESOUTH:20201106T131734Z:f96b70ad-638e-4784-a334-2f4eebdf3929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,10 +1536,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:34:35 GMT" + "Fri, 06 Nov 2020 13:17:34 GMT" ], "Content-Length": [ - "709" + "737" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,20 +1548,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A34%3A05.9324374Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"poolId\": \"cabcf5f9-54f6-cbb6-9524-9baae434481e\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A17%3A04.3763016Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"poolId\": \"b7a5dd2e-be6f-0f8d-5457-1dc6d8e2f719\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3ca0d478-55e0-42de-8f7a-bfabf47c7726?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM2NhMGQ0NzgtNTVlMC00MmRlLThmN2EtYmZhYmY0N2M3NzI2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5819ccd7-362a-44d4-a771-fd92edc685bc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTgxOWNjZDctMzYyYS00NGQ0LWE3NzEtZmQ5MmVkYzY4NWJjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1572,7 +1572,7 @@ "no-cache" ], "x-ms-request-id": [ - "5650274c-9ecd-4f74-95e7-66f3b37d6a5f" + "2a2b3d81-f97a-49f6-92db-5bd8d7c0eada" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1590,10 +1590,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "131421a7-1bf5-4e9b-8204-7bce963a8ddd" + "8ad779b2-9880-4e34-a0f7-ba06b6a10b96" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123511Z:131421a7-1bf5-4e9b-8204-7bce963a8ddd" + "FRANCESOUTH:20201106T131809Z:8ad779b2-9880-4e34-a0f7-ba06b6a10b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,7 +1602,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:10 GMT" + "Fri, 06 Nov 2020 13:18:09 GMT" ], "Content-Length": [ "516" @@ -1614,26 +1614,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3ca0d478-55e0-42de-8f7a-bfabf47c7726\",\r\n \"name\": \"3ca0d478-55e0-42de-8f7a-bfabf47c7726\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:34:39.9966405Z\",\r\n \"endTime\": \"2020-09-05T12:34:40.2466399Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5819ccd7-362a-44d4-a771-fd92edc685bc\",\r\n \"name\": \"5819ccd7-362a-44d4-a771-fd92edc685bc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:17:38.4482155Z\",\r\n \"endTime\": \"2020-11-06T13:17:38.7312488Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczQ4NjM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0NzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b646d0af-d67b-484e-b69c-173d288053f5" + "0e579e0c-0be4-4faf-879f-77157e411457" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1650,13 +1650,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A35%3A13.1765651Z'\"" + "W/\"datetime'2020-11-06T13%3A18%3A12.2824299Z'\"" ], "x-ms-request-id": [ - "b0fc5420-ae8f-4798-add3-55491b87a600" + "da3f6773-5096-435c-bb2c-6bb6466335ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/df7c11ea-7468-40bd-8d32-9ff311ab44d9?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d38a7861-8d00-4acb-869e-d8be0c437698?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1674,10 +1674,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "99d8fe5c-f339-464f-8430-143a32085dc1" + "a7050d99-b552-47d8-a5c1-355921db5412" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123514Z:99d8fe5c-f339-464f-8430-143a32085dc1" + "FRANCESOUTH:20201106T131813Z:a7050d99-b552-47d8-a5c1-355921db5412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,10 +1686,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:13 GMT" + "Fri, 06 Nov 2020 13:18:12 GMT" ], "Content-Length": [ - "407" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1698,20 +1698,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863\",\r\n \"name\": \"ps6160/ps4863\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A35%3A13.1765651Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471\",\r\n \"name\": \"ps3420/ps9471\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A18%3A12.2824299Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/df7c11ea-7468-40bd-8d32-9ff311ab44d9?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZGY3YzExZWEtNzQ2OC00MGJkLThkMzItOWZmMzExYWI0NGQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d38a7861-8d00-4acb-869e-d8be0c437698?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZDM4YTc4NjEtOGQwMC00YWNiLTg2OWUtZDhiZTBjNDM3Njk4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1722,7 +1722,7 @@ "no-cache" ], "x-ms-request-id": [ - "374046ea-5cd9-4acd-9244-6e4177065eea" + "165c64cc-956d-4467-af75-ff0e382e74a1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1740,10 +1740,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "a66b72fd-6a02-4148-a1f8-c0a5952e175c" + "3e7d8b6d-9c91-4827-94a1-ca7663c89a25" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123544Z:a66b72fd-6a02-4148-a1f8-c0a5952e175c" + "FRANCESOUTH:20201106T131843Z:3e7d8b6d-9c91-4827-94a1-ca7663c89a25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,7 +1752,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:43 GMT" + "Fri, 06 Nov 2020 13:18:42 GMT" ], "Content-Length": [ "516" @@ -1764,20 +1764,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/df7c11ea-7468-40bd-8d32-9ff311ab44d9\",\r\n \"name\": \"df7c11ea-7468-40bd-8d32-9ff311ab44d9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:35:13.1151947Z\",\r\n \"endTime\": \"2020-09-05T12:35:13.3808433Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d38a7861-8d00-4acb-869e-d8be0c437698\",\r\n \"name\": \"d38a7861-8d00-4acb-869e-d8be0c437698\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:18:12.2130953Z\",\r\n \"endTime\": \"2020-11-06T13:18:12.5099924Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scy9wczQ4NjM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scy9wczk0NzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1788,10 +1788,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A35%3A16.7941546Z'\"" + "W/\"datetime'2020-11-06T13%3A18%3A15.5767105Z'\"" ], "x-ms-request-id": [ - "a56ed5d9-342d-414a-9ea3-46f690060120" + "a4d1896a-36c6-49e9-8b0a-33e7e737ebc8" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1809,10 +1809,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "d6c985f1-466f-4d58-a6a7-ae37ead39b04" + "8e3b1fff-42bf-4b57-8ed1-6be63bed20a1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123544Z:d6c985f1-466f-4d58-a6a7-ae37ead39b04" + "FRANCESOUTH:20201106T131843Z:8e3b1fff-42bf-4b57-8ed1-6be63bed20a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1821,10 +1821,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:35:43 GMT" + "Fri, 06 Nov 2020 13:18:42 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,20 +1833,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863\",\r\n \"name\": \"ps6160/ps4863\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A35%3A16.7941546Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"77804b86-c9f8-489e-5fab-792a505b8ce0\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471\",\r\n \"name\": \"ps3420/ps9471\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A18%3A15.5767105Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"8e4a33c7-f025-ccd3-f682-a70c99f721ea\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGVhMGI0YTYtZTZhMC00YzcwLTg2NmMtNmRhNGQ4OGMzZmE0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78bf92ac-1d66-40c4-a07f-9e7c2395b761?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzhiZjkyYWMtMWQ2Ni00MGM0LWEwN2YtOWU3YzIzOTViNzYxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1857,7 +1857,7 @@ "no-cache" ], "x-ms-request-id": [ - "85651cab-1c0d-4159-8640-5207a7919d0e" + "1d323a9e-ccee-4372-9f8f-00e5a6fc26d6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1875,10 +1875,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "a744c57e-6df7-4899-8db0-ef6ec4c09df9" + "b2d48b01-8b51-44ba-924f-9f7dc419e945" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123615Z:a744c57e-6df7-4899-8db0-ef6ec4c09df9" + "FRANCESOUTH:20201106T131921Z:b2d48b01-8b51-44ba-924f-9f7dc419e945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1887,10 +1887,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:15 GMT" + "Fri, 06 Nov 2020 13:19:20 GMT" ], "Content-Length": [ - "515" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1899,20 +1899,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4\",\r\n \"name\": \"8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:35:45.2915589Z\",\r\n \"endTime\": \"2020-09-05T12:35:45.671486Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78bf92ac-1d66-40c4-a07f-9e7c2395b761\",\r\n \"name\": \"78bf92ac-1d66-40c4-a07f-9e7c2395b761\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:18:51.0483314Z\",\r\n \"endTime\": \"2020-11-06T13:18:51.8926103Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8ea0b4a6-e6a0-4c70-866c-6da4d88c3fa4?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGVhMGI0YTYtZTZhMC00YzcwLTg2NmMtNmRhNGQ4OGMzZmE0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78bf92ac-1d66-40c4-a07f-9e7c2395b761?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzhiZjkyYWMtMWQ2Ni00MGM0LWEwN2YtOWU3YzIzOTViNzYxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1923,7 +1923,7 @@ "no-cache" ], "x-ms-request-id": [ - "d17ab3ba-e4ed-4ec8-addc-3ff6e7715fd9" + "99d1f583-aa8a-4229-8a28-06f6aaae4d30" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1941,10 +1941,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "84131ca6-4065-482c-8453-73ca35c0caed" + "d9122aa0-f697-447a-a014-b6d87559a79f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123615Z:84131ca6-4065-482c-8453-73ca35c0caed" + "FRANCESOUTH:20201106T131921Z:d9122aa0-f697-447a-a014-b6d87559a79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1953,7 +1953,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:15 GMT" + "Fri, 06 Nov 2020 13:19:20 GMT" ], "Content-Length": [ "709" @@ -1965,26 +1965,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A35%3A45.3956223Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"85afa28b-8cb2-a668-0370-97e7b3d40c59\",\r\n \"name\": \"ps6160/ps8029\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps8029\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A18%3A51.1274073Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"6a5534b9-9d5f-7abb-c095-f95134bad902\",\r\n \"name\": \"ps3420/ps9406\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9406\",\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"encryptionType\": \"Single\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzMjUyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYxNjAvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjgyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM0MjAvY2FwYWNpdHlQb29scz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e431313-28c5-4019-9055-c0bb1a18add2" + "3bc8d5b3-2df5-4ed7-a143-6696da62d08c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1995,7 +1995,7 @@ "no-cache" ], "x-ms-request-id": [ - "98c186c8-fd1b-4d8a-9bbc-039823416cf0" + "71a2653f-93ef-4f03-9c77-10f207bb1092" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2013,10 +2013,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "e0b06dcc-cb40-487f-a389-1ace32cb3124" + "c079b503-a4f0-4355-9b49-e9a7add3e708" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123616Z:e0b06dcc-cb40-487f-a389-1ace32cb3124" + "FRANCESOUTH:20201106T131922Z:c079b503-a4f0-4355-9b49-e9a7add3e708" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2025,10 +2025,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:16 GMT" + "Fri, 06 Nov 2020 13:19:21 GMT" ], "Content-Length": [ - "468" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2037,26 +2037,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps2525/providers/Microsoft.NetApp/netAppAccounts/ps6160/capacityPools/ps4863\",\r\n \"name\": \"ps6160/ps4863\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A35%3A16.7941546Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"77804b86-c9f8-489e-5fab-792a505b8ce0\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6820/providers/Microsoft.NetApp/netAppAccounts/ps3420/capacityPools/ps9471\",\r\n \"name\": \"ps3420/ps9471\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A18%3A15.5767105Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"8e4a33c7-f025-ccd3-f682-a70c99f721ea\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps2525?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzMjUyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6820?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjgyMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1750c92-ea18-4701-8728-8901c98b3914" + "4b7ddf70-9eff-4cf0-8c8a-dd7a1cc67610" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2067,7 +2067,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2076,13 +2076,13 @@ "14999" ], "x-ms-request-id": [ - "ae9989b5-12ee-4d95-9b8f-6917d80a7227" + "804fee36-09f1-460b-ba3e-b4969cbc897d" ], "x-ms-correlation-request-id": [ - "ae9989b5-12ee-4d95-9b8f-6917d80a7227" + "804fee36-09f1-460b-ba3e-b4969cbc897d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123619Z:ae9989b5-12ee-4d95-9b8f-6917d80a7227" + "FRANCESOUTH:20201106T131926Z:804fee36-09f1-460b-ba3e-b4969cbc897d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,7 +2091,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:19 GMT" + "Fri, 06 Nov 2020 13:19:25 GMT" ], "Expires": [ "-1" @@ -2104,16 +2104,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2124,7 +2124,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2133,13 +2133,13 @@ "11999" ], "x-ms-request-id": [ - "ed8fb30d-3751-4032-8a04-4b5e042450b4" + "93545014-e778-43d1-90dc-216d6544044c" ], "x-ms-correlation-request-id": [ - "ed8fb30d-3751-4032-8a04-4b5e042450b4" + "93545014-e778-43d1-90dc-216d6544044c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123635Z:ed8fb30d-3751-4032-8a04-4b5e042450b4" + "FRANCESOUTH:20201106T131941Z:93545014-e778-43d1-90dc-216d6544044c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2148,7 +2148,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:34 GMT" + "Fri, 06 Nov 2020 13:19:40 GMT" ], "Expires": [ "-1" @@ -2161,16 +2161,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2181,7 +2181,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2190,13 +2190,13 @@ "11998" ], "x-ms-request-id": [ - "6ae3f1a2-9805-4e41-aa2b-6ad3f9f2fe6b" + "af071705-d89c-4e0c-a49a-387fad4e5551" ], "x-ms-correlation-request-id": [ - "6ae3f1a2-9805-4e41-aa2b-6ad3f9f2fe6b" + "af071705-d89c-4e0c-a49a-387fad4e5551" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123650Z:6ae3f1a2-9805-4e41-aa2b-6ad3f9f2fe6b" + "FRANCESOUTH:20201106T131957Z:af071705-d89c-4e0c-a49a-387fad4e5551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2205,7 +2205,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:36:49 GMT" + "Fri, 06 Nov 2020 13:19:56 GMT" ], "Expires": [ "-1" @@ -2218,16 +2218,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2238,7 +2238,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2247,13 +2247,13 @@ "11997" ], "x-ms-request-id": [ - "5e8d6055-4bee-4a9f-a3a1-cf8776fe47e0" + "e2d35914-c2cf-460a-bbe8-ab3eea4379e9" ], "x-ms-correlation-request-id": [ - "5e8d6055-4bee-4a9f-a3a1-cf8776fe47e0" + "e2d35914-c2cf-460a-bbe8-ab3eea4379e9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123705Z:5e8d6055-4bee-4a9f-a3a1-cf8776fe47e0" + "FRANCESOUTH:20201106T132012Z:e2d35914-c2cf-460a-bbe8-ab3eea4379e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2262,7 +2262,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:37:04 GMT" + "Fri, 06 Nov 2020 13:20:12 GMT" ], "Expires": [ "-1" @@ -2275,16 +2275,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2295,7 +2295,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2304,13 +2304,13 @@ "11996" ], "x-ms-request-id": [ - "1590440c-e3f2-4f96-919d-df6c52750923" + "1af80094-889d-42ed-b2e1-f073f61cbfe9" ], "x-ms-correlation-request-id": [ - "1590440c-e3f2-4f96-919d-df6c52750923" + "1af80094-889d-42ed-b2e1-f073f61cbfe9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123720Z:1590440c-e3f2-4f96-919d-df6c52750923" + "FRANCESOUTH:20201106T132028Z:1af80094-889d-42ed-b2e1-f073f61cbfe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2319,7 +2319,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:37:20 GMT" + "Fri, 06 Nov 2020 13:20:27 GMT" ], "Expires": [ "-1" @@ -2332,16 +2332,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2352,7 +2352,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2361,13 +2361,13 @@ "11995" ], "x-ms-request-id": [ - "58879f42-158e-4f85-96ab-a9e9259e112c" + "fda77b48-b5e3-49e8-adfd-bf83dc90bf64" ], "x-ms-correlation-request-id": [ - "58879f42-158e-4f85-96ab-a9e9259e112c" + "fda77b48-b5e3-49e8-adfd-bf83dc90bf64" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123736Z:58879f42-158e-4f85-96ab-a9e9259e112c" + "FRANCESOUTH:20201106T132043Z:fda77b48-b5e3-49e8-adfd-bf83dc90bf64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2376,7 +2376,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:37:35 GMT" + "Fri, 06 Nov 2020 13:20:43 GMT" ], "Expires": [ "-1" @@ -2389,16 +2389,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2409,7 +2409,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2418,13 +2418,13 @@ "11994" ], "x-ms-request-id": [ - "2ba75524-3575-4d4b-b340-5fdffede6c2f" + "f2020f16-396c-44e5-a0a0-f8b1803b53b9" ], "x-ms-correlation-request-id": [ - "2ba75524-3575-4d4b-b340-5fdffede6c2f" + "f2020f16-396c-44e5-a0a0-f8b1803b53b9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123751Z:2ba75524-3575-4d4b-b340-5fdffede6c2f" + "FRANCESOUTH:20201106T132058Z:f2020f16-396c-44e5-a0a0-f8b1803b53b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2433,7 +2433,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:37:51 GMT" + "Fri, 06 Nov 2020 13:20:58 GMT" ], "Expires": [ "-1" @@ -2446,16 +2446,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2475,13 +2475,13 @@ "11993" ], "x-ms-request-id": [ - "aadc73dd-890f-4d58-a3ae-fa5d49ba7e33" + "ed2731ee-74d5-4538-a427-7d70dd9f05c2" ], "x-ms-correlation-request-id": [ - "aadc73dd-890f-4d58-a3ae-fa5d49ba7e33" + "ed2731ee-74d5-4538-a427-7d70dd9f05c2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123806Z:aadc73dd-890f-4d58-a3ae-fa5d49ba7e33" + "FRANCESOUTH:20201106T132114Z:ed2731ee-74d5-4538-a427-7d70dd9f05c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2490,7 +2490,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:38:06 GMT" + "Fri, 06 Nov 2020 13:21:13 GMT" ], "Expires": [ "-1" @@ -2503,16 +2503,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2523,7 +2523,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2532,13 +2532,13 @@ "11992" ], "x-ms-request-id": [ - "01a5d616-e76c-4929-bbd0-1ae87f5cabbf" + "4dfd4437-3932-4055-aac0-c7ef87e2ae2b" ], "x-ms-correlation-request-id": [ - "01a5d616-e76c-4929-bbd0-1ae87f5cabbf" + "4dfd4437-3932-4055-aac0-c7ef87e2ae2b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123822Z:01a5d616-e76c-4929-bbd0-1ae87f5cabbf" + "FRANCESOUTH:20201106T132129Z:4dfd4437-3932-4055-aac0-c7ef87e2ae2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,7 +2547,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:38:21 GMT" + "Fri, 06 Nov 2020 13:21:28 GMT" ], "Expires": [ "-1" @@ -2560,16 +2560,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2580,7 +2580,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2589,13 +2589,13 @@ "11991" ], "x-ms-request-id": [ - "5a34306e-ea8f-4efa-bcc7-b2a0cfaf39c7" + "4d87d15d-a97a-4d6c-bb0b-444cf608c31b" ], "x-ms-correlation-request-id": [ - "5a34306e-ea8f-4efa-bcc7-b2a0cfaf39c7" + "4d87d15d-a97a-4d6c-bb0b-444cf608c31b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123837Z:5a34306e-ea8f-4efa-bcc7-b2a0cfaf39c7" + "FRANCESOUTH:20201106T132144Z:4d87d15d-a97a-4d6c-bb0b-444cf608c31b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,7 +2604,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:38:36 GMT" + "Fri, 06 Nov 2020 13:21:44 GMT" ], "Expires": [ "-1" @@ -2617,16 +2617,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2637,7 +2637,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2646,13 +2646,13 @@ "11990" ], "x-ms-request-id": [ - "5e57abf4-ac5f-4101-b173-8a0588dbded1" + "dd90f9ff-9cd7-4313-b3a8-5af8eacef2ab" ], "x-ms-correlation-request-id": [ - "5e57abf4-ac5f-4101-b173-8a0588dbded1" + "dd90f9ff-9cd7-4313-b3a8-5af8eacef2ab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123852Z:5e57abf4-ac5f-4101-b173-8a0588dbded1" + "FRANCESOUTH:20201106T132200Z:dd90f9ff-9cd7-4313-b3a8-5af8eacef2ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2661,7 +2661,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:38:51 GMT" + "Fri, 06 Nov 2020 13:21:59 GMT" ], "Expires": [ "-1" @@ -2674,16 +2674,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2693,137 +2693,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-request-id": [ - "eae9aa7b-a6a4-447f-bd0f-90ca412b2453" - ], - "x-ms-correlation-request-id": [ - "eae9aa7b-a6a4-447f-bd0f-90ca412b2453" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123907Z:eae9aa7b-a6a4-447f-bd0f-90ca412b2453" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 12:39:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "90efc53a-1156-41a3-87a5-a5fe7e1173b9" - ], - "x-ms-correlation-request-id": [ - "90efc53a-1156-41a3-87a5-a5fe7e1173b9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123923Z:90efc53a-1156-41a3-87a5-a5fe7e1173b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 12:39:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "681f4b2f-45cf-4c6f-ba68-0470fd1a79f6" + "309732b4-61cf-4863-a896-c711dbabf7de" ], "x-ms-correlation-request-id": [ - "681f4b2f-45cf-4c6f-ba68-0470fd1a79f6" + "309732b4-61cf-4863-a896-c711dbabf7de" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123938Z:681f4b2f-45cf-4c6f-ba68-0470fd1a79f6" + "FRANCESOUTH:20201106T132215Z:309732b4-61cf-4863-a896-c711dbabf7de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2832,115 +2712,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:39:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "0623a1a3-a7a5-4a14-9f37-016944c2cc57" - ], - "x-ms-correlation-request-id": [ - "0623a1a3-a7a5-4a14-9f37-016944c2cc57" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T123953Z:0623a1a3-a7a5-4a14-9f37-016944c2cc57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 12:39:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "793c97de-5cfa-4acb-9427-20c22e2e125f" - ], - "x-ms-correlation-request-id": [ - "793c97de-5cfa-4acb-9427-20c22e2e125f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124009Z:793c97de-5cfa-4acb-9427-20c22e2e125f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 12:40:08 GMT" + "Fri, 06 Nov 2020 13:22:14 GMT" ], "Expires": [ "-1" @@ -2953,16 +2725,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MjUtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1qVXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY4MjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNE1qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2973,16 +2745,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-request-id": [ - "ff13e406-9650-41c7-baed-517361001c79" + "a413cd85-68f2-48d7-8676-b9cd0c4930ca" ], "x-ms-correlation-request-id": [ - "ff13e406-9650-41c7-baed-517361001c79" + "a413cd85-68f2-48d7-8676-b9cd0c4930ca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T124009Z:ff13e406-9650-41c7-baed-517361001c79" + "FRANCESOUTH:20201106T132215Z:a413cd85-68f2-48d7-8676-b9cd0c4930ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2991,7 +2763,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:40:08 GMT" + "Fri, 06 Nov 2020 13:22:14 GMT" ], "Expires": [ "-1" @@ -3006,13 +2778,13 @@ ], "Names": { "Test-PoolPipelines": [ - "ps2525", - "ps6160", - "ps8029", - "ps4863" + "ps6820", + "ps3420", + "ps9406", + "ps9471" ] }, "Variables": { - "SubscriptionId": "0661B131-4A11-479B-96BF-2F95ACCA2F73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json index c8c0191aad11..9b8f892c75d5 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8572?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODU3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4162f81b-84cc-4be2-94dd-c73de294e69b" + "7627ce5a-73a5-4e79-81db-bd5f0db752f1" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "678c574d-7b09-4026-9a4f-565e94739b54" + "cc2cb5cd-2f73-4612-8211-5d37abea3add" ], "x-ms-correlation-request-id": [ - "678c574d-7b09-4026-9a4f-565e94739b54" + "cc2cb5cd-2f73-4612-8211-5d37abea3add" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174855Z:678c574d-7b09-4026-9a4f-565e94739b54" + "FRANCESOUTH:20201106T133001Z:cc2cb5cd-2f73-4612-8211-5d37abea3add" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:48:54 GMT" + "Fri, 06 Nov 2020 13:30:00 GMT" ], "Content-Length": [ "172" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077\",\r\n \"name\": \"ps3077\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572\",\r\n \"name\": \"ps8572\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d82d9f7f-b80d-46e8-a4b9-fe753f4222c4" + "5b3a2255-6f69-4bde-aaf3-a2d242c08468" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A00.8384612Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A09.8762449Z'\"" ], "x-ms-request-id": [ - "9edbb701-b6b3-4f24-96ef-ecabc65da6f5" + "6d16d5c7-892c-4456-abea-64e2228400b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ffe0df3b-6913-43e9-94bc-6bd445b2ec3b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -120,13 +120,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "8da0b7b0-f2ec-46f0-ae5c-d147710f4143" + "29e90fad-d5af-4d6d-b799-f8952c9122c0" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174901Z:8da0b7b0-f2ec-46f0-ae5c-d147710f4143" + "FRANCESOUTH:20201106T133011Z:29e90fad-d5af-4d6d-b799-f8952c9122c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:01 GMT" + "Fri, 06 Nov 2020 13:30:11 GMT" ], "Content-Length": [ "347" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\",\r\n \"name\": \"ps5700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A00.8384612Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394\",\r\n \"name\": \"ps5394\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A09.8762449Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2FkOWRhYzEtM2NiZC00NDc4LTk0YjMtYjk3NzNjY2Y1N2EyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ffe0df3b-6913-43e9-94bc-6bd445b2ec3b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmZlMGRmM2ItNjkxMy00M2U5LTk0YmMtNmJkNDQ1YjJlYzNiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "2e90122e-f6d4-46df-96ac-8551b74f3f1e" + "66c71d7f-2da0-4026-a29a-e0294f11b6a3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -186,13 +186,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-correlation-request-id": [ - "eeffc221-1786-42a3-927e-dac3979c681c" + "ff9557e0-f977-4393-8426-bae509af0e08" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174932Z:eeffc221-1786-42a3-927e-dac3979c681c" + "FRANCESOUTH:20201106T133041Z:ff9557e0-f977-4393-8426-bae509af0e08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:31 GMT" + "Fri, 06 Nov 2020 13:30:40 GMT" ], "Content-Length": [ "495" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7ad9dac1-3cbd-4478-94b3-b9773ccf57a2\",\r\n \"name\": \"7ad9dac1-3cbd-4478-94b3-b9773ccf57a2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T17:49:00.7540751Z\",\r\n \"endTime\": \"2020-10-25T17:49:00.9103766Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ffe0df3b-6913-43e9-94bc-6bd445b2ec3b\",\r\n \"name\": \"ffe0df3b-6913-43e9-94bc-6bd445b2ec3b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:30:09.7444049Z\",\r\n \"endTime\": \"2020-11-06T13:30:10.0100415Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A00.9125139Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A09.9593024Z'\"" ], "x-ms-request-id": [ - "a6c02b49-1be4-4f66-a357-efca4984dc23" + "6e3fffe0-cffc-4319-ae04-7b3b28549889" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -255,13 +255,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-correlation-request-id": [ - "e0cd351f-6522-4f33-8c2b-ed28d6e9be3e" + "30ffee05-64d5-4672-b989-dffdecd04995" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174932Z:e0cd351f-6522-4f33-8c2b-ed28d6e9be3e" + "FRANCESOUTH:20201106T133042Z:30ffee05-64d5-4672-b989-dffdecd04995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:31 GMT" + "Fri, 06 Nov 2020 13:30:41 GMT" ], "Content-Length": [ "348" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700\",\r\n \"name\": \"ps5700\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A00.9125139Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394\",\r\n \"name\": \"ps5394\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A09.9593024Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "032ba4fc-35d6-40b9-bd5d-d345fed1e6a7" + "0cab3b09-3510-42a1-a63d-92b4ebdad86e" ], "Accept-Language": [ "en-US" @@ -318,13 +318,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A33.0302529Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A42.6271173Z'\"" ], "x-ms-request-id": [ - "ab866fa6-d4a7-4c93-a25e-2943c655229c" + "3ec77480-2324-47f8-a409-f078fedae408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1b687ade-a316-49f5-98f4-6fc0359c88ff?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6371b346-adde-47ac-9996-82b0debb4917?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -339,13 +339,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "70a679aa-8a7c-4944-8828-a9aa538a503b" + "028d63ea-72bc-443b-9e1e-d2ddae092fa2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174933Z:70a679aa-8a7c-4944-8828-a9aa538a503b" + "FRANCESOUTH:20201106T133042Z:028d63ea-72bc-443b-9e1e-d2ddae092fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,7 +354,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:32 GMT" + "Fri, 06 Nov 2020 13:30:41 GMT" ], "Content-Length": [ "671" @@ -366,17 +366,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.0302529Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A42.6271173Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ca8cdbe-f2c4-485d-aadc-36deee281af1" + "4cbb64f6-54d2-4eba-afaf-5fdf114572eb" ], "Accept-Language": [ "en-US" @@ -396,10 +396,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A42.7001679Z'\"" ], "x-ms-request-id": [ - "31efb541-5325-420a-b843-cf713add844f" + "181e9149-65ca-4f56-97d8-c5d3f97d8cf9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -414,13 +414,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11997" ], "x-ms-correlation-request-id": [ - "460554fa-bd0e-4edd-a8de-0f67ef461754" + "2ebe7a7d-2f05-4101-877f-4beadb39fcde" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174933Z:460554fa-bd0e-4edd-a8de-0f67ef461754" + "FRANCESOUTH:20201106T133043Z:2ebe7a7d-2f05-4101-877f-4beadb39fcde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:32 GMT" + "Fri, 06 Nov 2020 13:30:42 GMT" ], "Content-Length": [ "672" @@ -441,17 +441,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A42.7001679Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38405d4a-272f-4452-a632-90ccde31019a" + "2d061c1b-94ea-491e-8a36-8e04ce833bf7" ], "Accept-Language": [ "en-US" @@ -471,10 +471,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A43.5697705Z'\"" ], "x-ms-request-id": [ - "253980a2-f637-4593-b48e-5154a49e0fba" + "f1baf033-5056-48a9-b205-6286d0801827" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -489,13 +489,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11995" ], "x-ms-correlation-request-id": [ - "c732d8c2-65f8-45ee-881e-2b56db7bf133" + "c5941eb6-5e6f-4a8c-bf6e-68cda517eb3f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174934Z:c732d8c2-65f8-45ee-881e-2b56db7bf133" + "FRANCESOUTH:20201106T133045Z:c5941eb6-5e6f-4a8c-bf6e-68cda517eb3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:33 GMT" + "Fri, 06 Nov 2020 13:30:45 GMT" ], "Content-Length": [ "672" @@ -516,17 +516,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A43.5697705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b188c81c-22ef-4bba-b58a-5b4c89e5cf76" + "04c6bfc3-6748-422c-8acb-b81a23b7242f" ], "Accept-Language": [ "en-US" @@ -546,10 +546,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A43.5697705Z'\"" ], "x-ms-request-id": [ - "ae15a9dd-55dd-4fad-b2ee-aa37894cbaa4" + "94b1f006-9d80-4cc4-9f01-00a17027c1bd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -564,13 +564,94 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11994" + ], + "x-ms-correlation-request-id": [ + "683b0c74-dce3-45da-8422-b08fdba559ed" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133045Z:683b0c74-dce3-45da-8422-b08fdba559ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:45 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A43.5697705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf553658-8a9e-4f80-9a9e-fe570acad115" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "140" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-06T13%3A30%3A43.4636966Z'\"" + ], + "x-ms-request-id": [ + "e30f5d4e-7976-40e9-a70c-0b99f3b522a9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "e088ca79-620f-41a9-a745-2c880928673a" + "5f611dfa-5351-49a4-a540-8c04b77dfe9e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174934Z:e088ca79-620f-41a9-a745-2c880928673a" + "FRANCESOUTH:20201106T133043Z:5f611dfa-5351-49a4-a540-8c04b77dfe9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +660,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:33 GMT" + "Fri, 06 Nov 2020 13:30:42 GMT" ], "Content-Length": [ "672" @@ -591,17 +672,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A43.4636966Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczE3Nzg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps4534?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3306fb10-23b5-4ac3-a567-38ff53771d73" + "ea0755b3-a9d5-4b27-b43f-595d3d3d40f5" ], "Accept-Language": [ "en-US" @@ -627,13 +708,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T17%3A49%3A33.7907898Z'\"" + "W/\"datetime'2020-11-06T13%3A30%3A44.4113567Z'\"" ], "x-ms-request-id": [ - "16933584-a300-4b5a-8b58-32219520fee7" + "9c703c0a-2304-480a-abeb-1d0de68be77c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ea58545d-55e4-453e-98ac-670ff366a248?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ee524c3b-d233-47d9-a0dc-b69bb8a4abb1?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -648,13 +729,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "65e90b87-8194-4e40-b87e-5d3736a0d68b" + "b0508057-ef4b-41c5-9e69-fbfcceb5d2cb" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174933Z:65e90b87-8194-4e40-b87e-5d3736a0d68b" + "FRANCESOUTH:20201106T133044Z:b0508057-ef4b-41c5-9e69-fbfcceb5d2cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +744,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:33 GMT" + "Fri, 06 Nov 2020 13:30:43 GMT" ], "Content-Length": [ "671" @@ -675,17 +756,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.7907898Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps4534\",\r\n \"name\": \"ps5394/ps4534\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A44.4113567Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps4534\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c72bd46-167e-40d7-beb5-36a26e6bba3a" + "02f66e14-4e36-467b-ba83-0fa65262b487" ], "Accept-Language": [ "en-US" @@ -705,7 +786,7 @@ "no-cache" ], "x-ms-request-id": [ - "ed2c3664-e9b6-4ac2-8553-c7b51eff8be9" + "b60f2ede-e258-4c46-8dea-4688f5b1afef" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -720,13 +801,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11996" ], "x-ms-correlation-request-id": [ - "946c0c2b-fbc8-4ee0-a3d2-ffb0e1396bda" + "71181859-3708-4332-9f27-28ba1a4df189" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174934Z:946c0c2b-fbc8-4ee0-a3d2-ffb0e1396bda" + "FRANCESOUTH:20201106T133044Z:71181859-3708-4332-9f27-28ba1a4df189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,7 +816,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:33 GMT" + "Fri, 06 Nov 2020 13:30:43 GMT" ], "Content-Length": [ "1357" @@ -747,17 +828,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.1063062Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps4534\",\r\n \"name\": \"ps5394/ps4534\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A44.5054229Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps4534\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A43.5697705Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7fee711-ac22-47ff-b6a8-6d8865232d7a" + "f099eba6-af05-4b01-ad45-3561b65ea1f5" ], "Accept-Language": [ "en-US" @@ -777,7 +858,7 @@ "no-cache" ], "x-ms-request-id": [ - "24344a5f-5863-4c50-bdde-ed45af7333ff" + "7b51b9be-9092-4a9e-8570-d8def58b1691" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -792,13 +873,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11991" ], "x-ms-correlation-request-id": [ - "99c375f2-5268-494e-8406-b791023fb33b" + "030a9d49-1e1a-41b2-9722-d155ce78c91f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175005Z:99c375f2-5268-494e-8406-b791023fb33b" + "FRANCESOUTH:20201106T133116Z:030a9d49-1e1a-41b2-9722-d155ce78c91f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,7 +888,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:04 GMT" + "Fri, 06 Nov 2020 13:31:15 GMT" ], "Content-Length": [ "684" @@ -819,17 +900,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps4534\",\r\n \"name\": \"ps5394/ps4534\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A44.5054229Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps4534\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "463ef935-5cb6-491d-979a-dc7a85612de0" + "df9f7c4b-322c-4d74-9b20-be08844e9e86" ], "Accept-Language": [ "en-US" @@ -849,7 +930,7 @@ "no-cache" ], "x-ms-request-id": [ - "f04cdc3a-93e3-4976-a257-4d92fd1fbe0b" + "13fe6bdd-ba99-4e75-acb8-7f3d012b7aa2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -864,13 +945,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11990" ], "x-ms-correlation-request-id": [ - "38a470f1-5dd2-4e39-a095-d73573b4bc6e" + "04de4b5b-c118-4667-99f4-9a727b4b9d23" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175006Z:38a470f1-5dd2-4e39-a095-d73573b4bc6e" + "FRANCESOUTH:20201106T133116Z:04de4b5b-c118-4667-99f4-9a727b4b9d23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,7 +960,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:05 GMT" + "Fri, 06 Nov 2020 13:31:16 GMT" ], "Content-Length": [ "684" @@ -891,17 +972,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps1778\",\r\n \"name\": \"ps5700/ps1778\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A33.8648425Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1778\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps4534\",\r\n \"name\": \"ps5394/ps4534\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A44.5054229Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps4534\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7874b005-16d4-4645-bc00-88bd483f2ea7" + "30423fdf-421b-4ad6-aef1-6fb775d9bea6" ], "Accept-Language": [ "en-US" @@ -921,10 +1002,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -939,16 +1020,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "f789d202-3617-4905-8219-0188bff732fc" + "d236b026-0383-4d01-a6c5-a27f3d245d86" ], "x-ms-correlation-request-id": [ - "f789d202-3617-4905-8219-0188bff732fc" + "d236b026-0383-4d01-a6c5-a27f3d245d86" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T174935Z:f789d202-3617-4905-8219-0188bff732fc" + "FRANCESOUTH:20201106T133045Z:d236b026-0383-4d01-a6c5-a27f3d245d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,7 +1038,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:49:34 GMT" + "Fri, 06 Nov 2020 13:30:45 GMT" ], "Expires": [ "-1" @@ -970,13 +1051,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzA3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU3MDAvc25hcHNob3RQb2xpY2llcy9wczMxMzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcy9wczY4NjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85f3287a-8575-4368-930f-5f1ad2938b54" + "79fae0cb-14ee-48fd-9dab-359512dde90c" ], "Accept-Language": [ "en-US" @@ -1008,16 +1089,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-request-id": [ - "e1366c63-3670-404d-b4bf-e52c23cfd047" + "88914605-63aa-4a81-a745-33a55a9069f1" ], "x-ms-correlation-request-id": [ - "e1366c63-3670-404d-b4bf-e52c23cfd047" + "88914605-63aa-4a81-a745-33a55a9069f1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175006Z:e1366c63-3670-404d-b4bf-e52c23cfd047" + "FRANCESOUTH:20201106T133116Z:88914605-63aa-4a81-a745-33a55a9069f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,7 +1107,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:05 GMT" + "Fri, 06 Nov 2020 13:31:15 GMT" ], "Expires": [ "-1" @@ -1036,8 +1117,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkNDAwMDItYTBlNC00MWJhLWE5OGQtZmIwZjVlOWRlYzI5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTE2YzdiZTMtYmIzZi00YjA4LWFjYjktMGU2YjEzYThjZjI4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,7 +1137,7 @@ "no-cache" ], "x-ms-request-id": [ - "2063303e-a8ef-45a8-8be1-1a4808a30a3b" + "5e267fdc-0977-4fe8-b333-ec3661b086f9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1071,13 +1152,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11993" ], "x-ms-correlation-request-id": [ - "737cef87-b079-434e-8d70-271c3f6ba704" + "c0e9ee07-060c-4f49-b054-0a9ce3855e12" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175005Z:737cef87-b079-434e-8d70-271c3f6ba704" + "FRANCESOUTH:20201106T133115Z:c0e9ee07-060c-4f49-b054-0a9ce3855e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1167,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:04 GMT" + "Fri, 06 Nov 2020 13:31:15 GMT" ], "Content-Length": [ "519" @@ -1098,12 +1179,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29\",\r\n \"name\": \"0ad40002-a0e4-41ba-a98d-fb0f5e9dec29\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T17:49:34.9167882Z\",\r\n \"endTime\": \"2020-10-25T17:49:35.0425814Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28\",\r\n \"name\": \"916c7be3-bb3f-4b08-acb9-0e6b13a8cf28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:30:45.5181502Z\",\r\n \"endTime\": \"2020-11-06T13:30:45.6774158Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad40002-a0e4-41ba-a98d-fb0f5e9dec29?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkNDAwMDItYTBlNC00MWJhLWE5OGQtZmIwZjVlOWRlYzI5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTE2YzdiZTMtYmIzZi00YjA4LWFjYjktMGU2YjEzYThjZjI4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1122,7 +1203,7 @@ "no-cache" ], "x-ms-request-id": [ - "d88f62fb-1d93-43e8-b9af-4b7e7a9a44d9" + "596306c8-1fa8-4838-9ea0-16b129233f19" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1137,13 +1218,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11992" ], "x-ms-correlation-request-id": [ - "cb61e0df-7dc9-4d55-a910-b28dc5e66b30" + "71ff1a42-2291-4211-b4be-6f00bb0e85d3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175005Z:cb61e0df-7dc9-4d55-a910-b28dc5e66b30" + "FRANCESOUTH:20201106T133116Z:71ff1a42-2291-4211-b4be-6f00bb0e85d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,7 +1233,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:04 GMT" + "Fri, 06 Nov 2020 13:31:15 GMT" ], "Content-Length": [ "670" @@ -1164,17 +1245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3077/providers/Microsoft.NetApp/netAppAccounts/ps5700/snapshotPolicies/ps3132\",\r\n \"name\": \"ps5700/ps3132\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T17%3A49%3A35.012657Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps3132\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies/ps6865\",\r\n \"name\": \"ps5394/ps6865\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A30%3A45.596185Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"ps6865\",\r\n \"enabled\": true,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 3,\r\n \"minute\": 1\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzA3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8572?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODU3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74cf71ee-095a-44f7-a61a-3fdea06227e1" + "0b410daa-67e0-4c7e-94a6-2538313126ae" ], "Accept-Language": [ "en-US" @@ -1194,22 +1275,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-request-id": [ - "6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + "a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" ], "x-ms-correlation-request-id": [ - "6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + "a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175009Z:6c34dcb6-ae67-41d2-9588-fb70a78cf6b4" + "FRANCESOUTH:20201106T133120Z:a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1218,7 +1299,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:09 GMT" + "Fri, 06 Nov 2020 13:31:19 GMT" ], "Expires": [ "-1" @@ -1231,8 +1312,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1251,22 +1332,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-request-id": [ - "01b41e6f-0545-499c-80a6-684e74ba4722" + "5d5d168d-7d49-4973-bd62-528602e82283" ], "x-ms-correlation-request-id": [ - "01b41e6f-0545-499c-80a6-684e74ba4722" + "5d5d168d-7d49-4973-bd62-528602e82283" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175024Z:01b41e6f-0545-499c-80a6-684e74ba4722" + "FRANCESOUTH:20201106T133135Z:5d5d168d-7d49-4973-bd62-528602e82283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +1356,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:23 GMT" + "Fri, 06 Nov 2020 13:31:35 GMT" ], "Expires": [ "-1" @@ -1288,8 +1369,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1308,22 +1389,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11983" ], "x-ms-request-id": [ - "36b891c6-caa1-4582-91c6-72de7edb0f6c" + "34b12da7-7568-4b41-9acd-07fb5de1a9b4" ], "x-ms-correlation-request-id": [ - "36b891c6-caa1-4582-91c6-72de7edb0f6c" + "34b12da7-7568-4b41-9acd-07fb5de1a9b4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175039Z:36b891c6-caa1-4582-91c6-72de7edb0f6c" + "FRANCESOUTH:20201106T133150Z:34b12da7-7568-4b41-9acd-07fb5de1a9b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,7 +1413,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:39 GMT" + "Fri, 06 Nov 2020 13:31:50 GMT" ], "Expires": [ "-1" @@ -1345,8 +1426,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1365,22 +1446,79 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11982" + ], + "x-ms-request-id": [ + "e7a15b95-00d1-41d0-96de-3e6dff0baf44" + ], + "x-ms-correlation-request-id": [ + "e7a15b95-00d1-41d0-96de-3e6dff0baf44" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133206Z:e7a15b95-00d1-41d0-96de-3e6dff0baf44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:32:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "x-ms-request-id": [ - "20231d6c-8baf-4c20-83ad-957a075b1c97" + "3a102512-ed2f-44e3-a304-0dedcd14caa4" ], "x-ms-correlation-request-id": [ - "20231d6c-8baf-4c20-83ad-957a075b1c97" + "3a102512-ed2f-44e3-a304-0dedcd14caa4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175055Z:20231d6c-8baf-4c20-83ad-957a075b1c97" + "FRANCESOUTH:20201106T133221Z:3a102512-ed2f-44e3-a304-0dedcd14caa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1527,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:50:55 GMT" + "Fri, 06 Nov 2020 13:32:21 GMT" ], "Expires": [ "-1" @@ -1402,8 +1540,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1422,22 +1560,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11980" ], "x-ms-request-id": [ - "df678e7a-17bd-4346-a2fc-ca3722733b85" + "d347ea35-5ede-4fca-acbf-72784d53ab3a" ], "x-ms-correlation-request-id": [ - "df678e7a-17bd-4346-a2fc-ca3722733b85" + "d347ea35-5ede-4fca-acbf-72784d53ab3a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175110Z:df678e7a-17bd-4346-a2fc-ca3722733b85" + "FRANCESOUTH:20201106T133237Z:d347ea35-5ede-4fca-acbf-72784d53ab3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,7 +1584,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:51:10 GMT" + "Fri, 06 Nov 2020 13:32:36 GMT" ], "Expires": [ "-1" @@ -1459,8 +1597,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1479,22 +1617,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11979" ], "x-ms-request-id": [ - "5ccfc894-3feb-43b7-aeec-0d9f1683f678" + "47c1e9df-0c27-4245-a1c8-5558c6391900" ], "x-ms-correlation-request-id": [ - "5ccfc894-3feb-43b7-aeec-0d9f1683f678" + "47c1e9df-0c27-4245-a1c8-5558c6391900" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175126Z:5ccfc894-3feb-43b7-aeec-0d9f1683f678" + "FRANCESOUTH:20201106T133252Z:47c1e9df-0c27-4245-a1c8-5558c6391900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1503,7 +1641,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:51:26 GMT" + "Fri, 06 Nov 2020 13:32:51 GMT" ], "Expires": [ "-1" @@ -1516,8 +1654,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1536,22 +1674,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11978" ], "x-ms-request-id": [ - "686bd442-db51-4d37-83f2-4aa450797c6e" + "8c8f979d-67ae-4342-b83f-c1d84dc7878e" ], "x-ms-correlation-request-id": [ - "686bd442-db51-4d37-83f2-4aa450797c6e" + "8c8f979d-67ae-4342-b83f-c1d84dc7878e" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175141Z:686bd442-db51-4d37-83f2-4aa450797c6e" + "FRANCESOUTH:20201106T133307Z:8c8f979d-67ae-4342-b83f-c1d84dc7878e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1560,7 +1698,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:51:41 GMT" + "Fri, 06 Nov 2020 13:33:07 GMT" ], "Expires": [ "-1" @@ -1573,8 +1711,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1593,22 +1731,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11977" ], "x-ms-request-id": [ - "32309b4c-f447-40b0-9fdb-10da06543f70" + "750e2a94-7e53-4869-9710-b6e7d390dc31" ], "x-ms-correlation-request-id": [ - "32309b4c-f447-40b0-9fdb-10da06543f70" + "750e2a94-7e53-4869-9710-b6e7d390dc31" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175156Z:32309b4c-f447-40b0-9fdb-10da06543f70" + "FRANCESOUTH:20201106T133323Z:750e2a94-7e53-4869-9710-b6e7d390dc31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,7 +1755,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:51:56 GMT" + "Fri, 06 Nov 2020 13:33:22 GMT" ], "Expires": [ "-1" @@ -1630,8 +1768,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,22 +1788,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11976" ], "x-ms-request-id": [ - "bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + "a4ede524-c1b9-4173-8b8c-84988e40dbb7" ], "x-ms-correlation-request-id": [ - "bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + "a4ede524-c1b9-4173-8b8c-84988e40dbb7" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175212Z:bc51e879-13b3-44ee-af39-a5f76cb2ee2e" + "FRANCESOUTH:20201106T133338Z:a4ede524-c1b9-4173-8b8c-84988e40dbb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,7 +1812,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:52:11 GMT" + "Fri, 06 Nov 2020 13:33:38 GMT" ], "Expires": [ "-1" @@ -1687,8 +1825,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1707,22 +1845,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11975" ], "x-ms-request-id": [ - "220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + "60aa42e3-7d96-440d-bd45-c6b4816cc478" ], "x-ms-correlation-request-id": [ - "220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + "60aa42e3-7d96-440d-bd45-c6b4816cc478" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175227Z:220a2ab0-e097-419e-9ba9-6132ddb0c5e3" + "FRANCESOUTH:20201106T133353Z:60aa42e3-7d96-440d-bd45-c6b4816cc478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,7 +1869,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:52:26 GMT" + "Fri, 06 Nov 2020 13:33:53 GMT" ], "Expires": [ "-1" @@ -1744,8 +1882,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1764,16 +1902,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11974" ], "x-ms-request-id": [ - "5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + "f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" ], "x-ms-correlation-request-id": [ - "5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + "f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175242Z:5b0e6bf0-b705-4ad8-82b8-0d2d0b8b2d3c" + "FRANCESOUTH:20201106T133409Z:f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,7 +1920,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:52:42 GMT" + "Fri, 06 Nov 2020 13:34:09 GMT" ], "Expires": [ "-1" @@ -1795,8 +1933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwNzctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd056Y3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU56SXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,16 +1953,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11973" ], "x-ms-request-id": [ - "23c8752c-ec73-41a5-b813-1fe57572a8d7" + "ce2a977e-53c0-404e-8963-36e4e4f77c22" ], "x-ms-correlation-request-id": [ - "23c8752c-ec73-41a5-b813-1fe57572a8d7" + "ce2a977e-53c0-404e-8963-36e4e4f77c22" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T175243Z:23c8752c-ec73-41a5-b813-1fe57572a8d7" + "FRANCESOUTH:20201106T133409Z:ce2a977e-53c0-404e-8963-36e4e4f77c22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,7 +1971,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 17:52:42 GMT" + "Fri, 06 Nov 2020 13:34:09 GMT" ], "Expires": [ "-1" @@ -1848,10 +1986,10 @@ ], "Names": { "Test-SnapshotPolicyCrud": [ - "ps3077", - "ps5700", - "ps3132", - "ps1778" + "ps8572", + "ps5394", + "ps6865", + "ps4534" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json index 0d09c65665d4..093487f21d24 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2641?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7603?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzYwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00e478ef-a5ae-4666-8ef7-71e64a06b14c" + "965f5296-f83c-4202-a5b1-11e3afb8d2ce" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "455013a1-d84e-46dd-b67a-c5a021c0c50d" + "faf5022a-58b3-4fc3-b332-3407cb4952e3" ], "x-ms-correlation-request-id": [ - "455013a1-d84e-46dd-b67a-c5a021c0c50d" + "faf5022a-58b3-4fc3-b332-3407cb4952e3" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194222Z:455013a1-d84e-46dd-b67a-c5a021c0c50d" + "FRANCESOUTH:20201106T133415Z:faf5022a-58b3-4fc3-b332-3407cb4952e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:42:22 GMT" + "Fri, 06 Nov 2020 13:34:15 GMT" ], "Content-Length": [ "172" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641\",\r\n \"name\": \"ps2641\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603\",\r\n \"name\": \"ps7603\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c5676815-362b-413b-821e-88fae7a72e5b" + "85e26fa5-ac8d-4898-96cd-b1bc2f70cc0a" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T19%3A42%3A28.7567616Z'\"" + "W/\"datetime'2020-11-06T13%3A34%3A23.4062453Z'\"" ], "x-ms-request-id": [ - "a481ccf0-0ec0-4edb-a565-d7324ebaabe6" + "2820a992-f974-43a1-b1b9-38574d370eed" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9be20950-3f11-46d8-b687-6ff3e3f660c3?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -120,13 +120,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "7783425f-17f4-455a-b95a-7dd70fdd96c5" + "737b5b3e-1eb8-4456-a348-dfdd4a4ce599" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194230Z:7783425f-17f4-455a-b95a-7dd70fdd96c5" + "FRANCESOUTH:20201106T133425Z:737b5b3e-1eb8-4456-a348-dfdd4a4ce599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,7 +135,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:42:29 GMT" + "Fri, 06 Nov 2020 13:34:24 GMT" ], "Content-Length": [ "319" @@ -147,12 +147,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.7567616Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028\",\r\n \"name\": \"ps9028\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A34%3A23.4062453Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTFhOTZjNTAtYWQwZS00MGQ5LWFjM2ItNTdjNWEzODY4OTYxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9be20950-3f11-46d8-b687-6ff3e3f660c3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOWJlMjA5NTAtM2YxMS00NmQ4LWI2ODctNmZmM2UzZjY2MGMzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "94bdfa54-f77f-4785-bcba-819d1ba2118b" + "000667ce-bb06-4d91-9f5e-6557542a465d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -186,13 +186,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "16f23706-cd02-4d29-bc1e-75f4e570bb93" + "82ed445e-2202-42fe-933d-88df2639024d" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194300Z:16f23706-cd02-4d29-bc1e-75f4e570bb93" + "FRANCESOUTH:20201106T133455Z:82ed445e-2202-42fe-933d-88df2639024d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:00 GMT" + "Fri, 06 Nov 2020 13:34:55 GMT" ], "Content-Length": [ "495" @@ -213,12 +213,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/91a96c50-ad0e-40d9-ac3b-57c5a3868961\",\r\n \"name\": \"91a96c50-ad0e-40d9-ac3b-57c5a3868961\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-25T19:42:28.2946712Z\",\r\n \"endTime\": \"2020-10-25T19:42:28.8259477Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9be20950-3f11-46d8-b687-6ff3e3f660c3\",\r\n \"name\": \"9be20950-3f11-46d8-b687-6ff3e3f660c3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T13:34:23.2189803Z\",\r\n \"endTime\": \"2020-11-06T13:34:23.4689969Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\"" + "W/\"datetime'2020-11-06T13%3A34%3A23.4752935Z'\"" ], "x-ms-request-id": [ - "fc1207b6-f6f5-4d55-86a2-acc6390c3870" + "6bf60a6e-ce03-41ec-85e2-aa04990ef9d4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -255,13 +255,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "19dc13fe-8cb2-4abc-8d78-d240e2ad88ce" + "9f5a24a0-8ab9-43ad-8205-7adbb2f96d72" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194300Z:19dc13fe-8cb2-4abc-8d78-d240e2ad88ce" + "FRANCESOUTH:20201106T133455Z:9f5a24a0-8ab9-43ad-8205-7adbb2f96d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,7 +270,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:00 GMT" + "Fri, 06 Nov 2020 13:34:55 GMT" ], "Content-Length": [ "320" @@ -282,17 +282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028\",\r\n \"name\": \"ps9028\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A34%3A23.4752935Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daca0dc8-caab-4825-b3c8-89a953c9c9d3" + "562bf620-5449-404f-b493-95166d4cc3d3" ], "Accept-Language": [ "en-US" @@ -312,10 +312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\"" + "W/\"datetime'2020-11-06T13%3A34%3A23.4752935Z'\"" ], "x-ms-request-id": [ - "aa58446d-173c-4194-9c65-7b135c64fcb5" + "7017cadc-e399-4e47-b70a-2b614095f133" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -330,13 +330,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "3af8f6d8-55c0-4ec1-a511-13981c31f564" + "734fc6f9-89f1-4520-a3ae-702cf323ef92" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194301Z:3af8f6d8-55c0-4ec1-a511-13981c31f564" + "FRANCESOUTH:20201106T133455Z:734fc6f9-89f1-4520-a3ae-702cf323ef92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,7 +345,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:00 GMT" + "Fri, 06 Nov 2020 13:34:55 GMT" ], "Content-Length": [ "320" @@ -357,17 +357,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396\",\r\n \"name\": \"ps1396\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A42%3A28.8238239Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028\",\r\n \"name\": \"ps9028\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A34%3A23.4752935Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTYvc25hcHNob3RQb2xpY2llcy9wczI3NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028/snapshotPolicies/ps2001?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjgvc25hcHNob3RQb2xpY2llcy9wczIwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b44d7c55-fdb2-4ec7-8287-68d86c0ca5ed" + "2b918cb8-f0bd-4b8f-bfd2-8a35f9da0024" ], "Accept-Language": [ "en-US" @@ -393,13 +393,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T19%3A43%3A01.8442602Z'\"" + "W/\"datetime'2020-11-06T13%3A34%3A56.3190492Z'\"" ], "x-ms-request-id": [ - "6d4bf0a6-2566-43f5-96dc-86e5a6488d3c" + "c62d4d32-9469-461c-80c0-20f59358f592" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/562e84a8-8735-47f4-801d-f7523afcf904?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dbf57c7f-3043-4996-a52a-43e4b8df45df?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -414,13 +414,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "be0ddfae-c853-445c-9526-daa5b73d94ae" + "f859c808-58f2-4a13-b94d-bf49cd9c6994" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194302Z:be0ddfae-c853-445c-9526-daa5b73d94ae" + "FRANCESOUTH:20201106T133456Z:f859c808-58f2-4a13-b94d-bf49cd9c6994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:01 GMT" + "Fri, 06 Nov 2020 13:34:56 GMT" ], "Content-Length": [ "672" @@ -441,17 +441,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746\",\r\n \"name\": \"ps1396/ps2746\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A43%3A01.8442602Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2746\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028/snapshotPolicies/ps2001\",\r\n \"name\": \"ps9028/ps2001\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A34%3A56.3190492Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2001\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjY0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczEzOTYvc25hcHNob3RQb2xpY2llcy9wczI3NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028/snapshotPolicies/ps2001?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjgvc25hcHNob3RQb2xpY2llcy9wczIwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b1dffb3-b200-4ac1-b14f-5a8d9aeb5e09" + "0b1f1757-00f6-40e4-b7f6-f0deb58f4589" ], "Accept-Language": [ "en-US" @@ -471,10 +471,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-25T19%3A43%3A01.9083055Z'\"" + "W/\"datetime'2020-11-06T13%3A34%3A56.3971042Z'\"" ], "x-ms-request-id": [ - "6711c0d9-c0b5-4b0b-80a1-9a4258bc07db" + "1954e6f9-15d1-481a-bba1-c0e934155abd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -489,13 +489,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "554370ec-dc85-4745-a83d-65b05f0a255d" + "a82cab12-2644-4b53-b4aa-12b57c5bc929" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194302Z:554370ec-dc85-4745-a83d-65b05f0a255d" + "FRANCESOUTH:20201106T133456Z:a82cab12-2644-4b53-b4aa-12b57c5bc929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:01 GMT" + "Fri, 06 Nov 2020 13:34:56 GMT" ], "Content-Length": [ "673" @@ -516,17 +516,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2641/providers/Microsoft.NetApp/netAppAccounts/ps1396/snapshotPolicies/ps2746\",\r\n \"name\": \"ps1396/ps2746\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-10-25T19%3A43%3A01.9083055Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2746\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028/snapshotPolicies/ps2001\",\r\n \"name\": \"ps9028/ps2001\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/snapshotPolicies\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T13%3A34%3A56.3971042Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps2001\",\r\n \"enabled\": false,\r\n \"hourlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"minute\": 2\r\n },\r\n \"dailySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"weeklySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"day\": \"Sunday,Monday\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"monthlySchedule\": {\r\n \"snapshotsToKeep\": 6,\r\n \"daysOfMonth\": \"2,11,21\",\r\n \"hour\": 1,\r\n \"minute\": 2\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2641?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjY0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7603?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzYwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8222b1f-9e27-43c9-aeaa-1b49b4ffa385" + "7d6e8f9f-06f5-4c50-8e19-0c640632c4b8" ], "Accept-Language": [ "en-US" @@ -546,7 +546,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -555,13 +555,13 @@ "14999" ], "x-ms-request-id": [ - "83c5d5a2-ce70-40c0-8fba-11765fb5787e" + "e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" ], "x-ms-correlation-request-id": [ - "83c5d5a2-ce70-40c0-8fba-11765fb5787e" + "e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194304Z:83c5d5a2-ce70-40c0-8fba-11765fb5787e" + "FRANCESOUTH:20201106T133459Z:e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:03 GMT" + "Fri, 06 Nov 2020 13:34:58 GMT" ], "Expires": [ "-1" @@ -583,8 +583,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -603,7 +603,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -612,13 +612,13 @@ "11999" ], "x-ms-request-id": [ - "fbed0426-d90c-47fa-af3a-24f08172517e" + "9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" ], "x-ms-correlation-request-id": [ - "fbed0426-d90c-47fa-af3a-24f08172517e" + "9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194320Z:fbed0426-d90c-47fa-af3a-24f08172517e" + "FRANCESOUTH:20201106T133515Z:9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,7 +627,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:19 GMT" + "Fri, 06 Nov 2020 13:35:15 GMT" ], "Expires": [ "-1" @@ -640,8 +640,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -660,7 +660,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -669,13 +669,13 @@ "11998" ], "x-ms-request-id": [ - "9cfec789-7924-44f6-85cb-f7441e3a0bf1" + "b83154d9-7e6d-49af-83bb-a273047093f4" ], "x-ms-correlation-request-id": [ - "9cfec789-7924-44f6-85cb-f7441e3a0bf1" + "b83154d9-7e6d-49af-83bb-a273047093f4" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194335Z:9cfec789-7924-44f6-85cb-f7441e3a0bf1" + "FRANCESOUTH:20201106T133530Z:b83154d9-7e6d-49af-83bb-a273047093f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,7 +684,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:35 GMT" + "Fri, 06 Nov 2020 13:35:30 GMT" ], "Expires": [ "-1" @@ -697,8 +697,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,7 +717,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -726,13 +726,13 @@ "11997" ], "x-ms-request-id": [ - "27c3d20c-a955-41c1-a4cf-0a50f24a4413" + "02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" ], "x-ms-correlation-request-id": [ - "27c3d20c-a955-41c1-a4cf-0a50f24a4413" + "02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194350Z:27c3d20c-a955-41c1-a4cf-0a50f24a4413" + "FRANCESOUTH:20201106T133545Z:02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,7 +741,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:43:50 GMT" + "Fri, 06 Nov 2020 13:35:45 GMT" ], "Expires": [ "-1" @@ -754,8 +754,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,7 +774,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -783,13 +783,13 @@ "11996" ], "x-ms-request-id": [ - "a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + "0c88a01b-5987-4650-bfb3-322970a9f97a" ], "x-ms-correlation-request-id": [ - "a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + "0c88a01b-5987-4650-bfb3-322970a9f97a" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194406Z:a321f71a-7b8f-48c3-acf4-fcb0e6a52ad2" + "FRANCESOUTH:20201106T133601Z:0c88a01b-5987-4650-bfb3-322970a9f97a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:44:05 GMT" + "Fri, 06 Nov 2020 13:36:00 GMT" ], "Expires": [ "-1" @@ -811,8 +811,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +831,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -840,13 +840,13 @@ "11995" ], "x-ms-request-id": [ - "70f6b0e9-0270-4312-931a-74252f8cdd05" + "faeb8087-05f4-4f5c-bc23-4e2f884df6b2" ], "x-ms-correlation-request-id": [ - "70f6b0e9-0270-4312-931a-74252f8cdd05" + "faeb8087-05f4-4f5c-bc23-4e2f884df6b2" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194421Z:70f6b0e9-0270-4312-931a-74252f8cdd05" + "FRANCESOUTH:20201106T133616Z:faeb8087-05f4-4f5c-bc23-4e2f884df6b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,7 +855,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:44:21 GMT" + "Fri, 06 Nov 2020 13:36:15 GMT" ], "Expires": [ "-1" @@ -868,8 +868,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -888,7 +888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -897,13 +897,13 @@ "11994" ], "x-ms-request-id": [ - "af3d8500-bdb6-4256-a611-dde118425cfe" + "78ed71be-9cba-48b3-926b-863a3fd2dc40" ], "x-ms-correlation-request-id": [ - "af3d8500-bdb6-4256-a611-dde118425cfe" + "78ed71be-9cba-48b3-926b-863a3fd2dc40" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194436Z:af3d8500-bdb6-4256-a611-dde118425cfe" + "FRANCESOUTH:20201106T133631Z:78ed71be-9cba-48b3-926b-863a3fd2dc40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +912,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:44:36 GMT" + "Fri, 06 Nov 2020 13:36:31 GMT" ], "Expires": [ "-1" @@ -925,8 +925,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -944,23 +944,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "2f0535c3-4b44-418d-bd53-2ec626e77c9d" + "f93c816e-786f-4b04-8e04-a719889067db" ], "x-ms-correlation-request-id": [ - "2f0535c3-4b44-418d-bd53-2ec626e77c9d" + "f93c816e-786f-4b04-8e04-a719889067db" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194452Z:2f0535c3-4b44-418d-bd53-2ec626e77c9d" + "FRANCESOUTH:20201106T133647Z:f93c816e-786f-4b04-8e04-a719889067db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,229 +963,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:44:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "04f8271b-41c4-4e6d-8b38-6843d8ac645c" - ], - "x-ms-correlation-request-id": [ - "04f8271b-41c4-4e6d-8b38-6843d8ac645c" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194507Z:04f8271b-41c4-4e6d-8b38-6843d8ac645c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 25 Oct 2020 19:45:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "43b54e18-28a5-4e45-9f02-2bc9ece342b4" - ], - "x-ms-correlation-request-id": [ - "43b54e18-28a5-4e45-9f02-2bc9ece342b4" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194523Z:43b54e18-28a5-4e45-9f02-2bc9ece342b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 25 Oct 2020 19:45:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "64e2e481-cae7-46bb-8174-9b4e9946971d" - ], - "x-ms-correlation-request-id": [ - "64e2e481-cae7-46bb-8174-9b4e9946971d" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194538Z:64e2e481-cae7-46bb-8174-9b4e9946971d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 25 Oct 2020 19:45:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "963fd6c2-74f2-44c7-afe2-73b76f1d3061" - ], - "x-ms-correlation-request-id": [ - "963fd6c2-74f2-44c7-afe2-73b76f1d3061" - ], - "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194553Z:963fd6c2-74f2-44c7-afe2-73b76f1d3061" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 25 Oct 2020 19:45:52 GMT" + "Fri, 06 Nov 2020 13:36:47 GMT" ], "Expires": [ "-1" @@ -1204,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NDEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5ERXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,16 +996,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "7ad21544-0346-4333-bd77-007ba60626fa" + "f2aec55b-b620-4f75-85a9-07c94a00d7be" ], "x-ms-correlation-request-id": [ - "7ad21544-0346-4333-bd77-007ba60626fa" + "f2aec55b-b620-4f75-85a9-07c94a00d7be" ], "x-ms-routing-request-id": [ - "FRANCESOUTH:20201025T194554Z:7ad21544-0346-4333-bd77-007ba60626fa" + "FRANCESOUTH:20201106T133647Z:f2aec55b-b620-4f75-85a9-07c94a00d7be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1014,7 @@ "nosniff" ], "Date": [ - "Sun, 25 Oct 2020 19:45:54 GMT" + "Fri, 06 Nov 2020 13:36:47 GMT" ], "Expires": [ "-1" @@ -1257,11 +1029,11 @@ ], "Names": { "Test-SnapshotPolicyPipelines": [ - "ps2641", - "ps8762", - "ps1396", - "ps2746", - "ps7053" + "ps7603", + "ps9724", + "ps9028", + "ps2001", + "ps9049" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json deleted file mode 100644 index e145f7d2b8fa..000000000000 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePoolChange.json +++ /dev/null @@ -1,4051 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bd70408-442a-4fdf-bdf6-7c3912332ee2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "8e1dab58-928a-4dc3-965a-a8060e898112" - ], - "x-ms-correlation-request-id": [ - "8e1dab58-928a-4dc3-965a-a8060e898112" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202108Z:8e1dab58-928a-4dc3-965a-a8060e898112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:07 GMT" - ], - "Content-Length": [ - "172" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921\",\r\n \"name\": \"ps6921\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bae5774d-a387-485c-8cd2-3f8df0269c12" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "16e77f23-7cf1-43eb-857e-fe846a4fd945" - ], - "x-ms-correlation-request-id": [ - "16e77f23-7cf1-43eb-857e-fe846a4fd945" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202109Z:16e77f23-7cf1-43eb-857e-fe846a4fd945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:08 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "223" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps6921-vnet' under resource group 'ps6921' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" - ], - "x-ms-request-id": [ - "f8bc40b0-ddbe-4d02-82f3-2c2eb87fa0e0" - ], - "x-ms-correlation-request-id": [ - "f6bda8e2-7c31-4e7d-a27e-36a230036ad8" - ], - "x-ms-arm-service-request-id": [ - "aecb3a6c-3e0b-421f-8ae6-25afb78fb05f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202121Z:f6bda8e2-7c31-4e7d-a27e-36a230036ad8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:20 GMT" - ], - "Content-Length": [ - "648" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b24f7f8-470a-4925-a998-c6299ff5bf6b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" - ], - "x-ms-request-id": [ - "139f067c-0057-4ab9-9ca2-89852ccaef98" - ], - "x-ms-correlation-request-id": [ - "1523c734-8e19-435f-a81a-29413fc882c7" - ], - "x-ms-arm-service-request-id": [ - "7b61be81-9cfa-4d0d-b388-02e52f3445a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202121Z:1523c734-8e19-435f-a81a-29413fc882c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:20 GMT" - ], - "Content-Length": [ - "648" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9daf9831-4999-4435-a4d4-78b9a67120bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\"" - ], - "x-ms-request-id": [ - "a73f03a1-5f03-46d8-a6c0-4762d51e4f96" - ], - "x-ms-correlation-request-id": [ - "fa25fa17-3e4e-4c68-b5df-b3f6be8041f9" - ], - "x-ms-arm-service-request-id": [ - "a6f139e2-5d02-4f4a-a147-8ccfbaba7c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202121Z:fa25fa17-3e4e-4c68-b5df-b3f6be8041f9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:21 GMT" - ], - "Content-Length": [ - "648" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"4327ee71-0954-4bc4-9229-2f9d83e80aa1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\"" - ], - "x-ms-request-id": [ - "8625d32e-e529-4c58-a589-c6c2b15ae233" - ], - "x-ms-correlation-request-id": [ - "695aa93e-ce67-470a-abcc-dee7696492e9" - ], - "x-ms-arm-service-request-id": [ - "8d09ceac-f695-46b1-806f-3ae8d2cf977a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202126Z:695aa93e-ce67-470a-abcc-dee7696492e9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:25 GMT" - ], - "Content-Length": [ - "2157" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "667ca10c-6619-4a2e-bd09-10bafaf9f9ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\"" - ], - "x-ms-request-id": [ - "c3279552-f39e-4762-9045-8393757d43ab" - ], - "x-ms-correlation-request-id": [ - "9402d36e-4a74-4183-8d64-cb40ab126601" - ], - "x-ms-arm-service-request-id": [ - "bf37d85b-29f6-484c-909d-d6a2bd4b5112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202126Z:9402d36e-4a74-4183-8d64-cb40ab126601" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:25 GMT" - ], - "Content-Length": [ - "2157" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"5b1ae8df-2a7e-47d0-b9bb-11b8e5166715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d9cff01-04ac-474a-9366-07852b1996e4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "267" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7770b1e3-7aee-4d24-9917-0781194bb267" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7770b1e3-7aee-4d24-9917-0781194bb267?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "e87fc978-29e7-4c3b-9b56-a4a71a3e471d" - ], - "x-ms-arm-service-request-id": [ - "de1c408d-e983-453b-b881-9d81dc5a8038" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202117Z:e87fc978-29e7-4c3b-9b56-a4a71a3e471d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:16 GMT" - ], - "Content-Length": [ - "647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"fd0b4609-9ec6-4ae8-acae-1ea31ba15088\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkyMS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "67ccd181-7a76-45f6-9ba9-83680620f3ff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1070" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d8507946-174f-4728-9a4d-4672b384732c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8507946-174f-4728-9a4d-4672b384732c?api-version=2020-06-01" - ], - "x-ms-correlation-request-id": [ - "8cbb3ca6-c534-4b78-be72-a1645d970540" - ], - "x-ms-arm-service-request-id": [ - "68c494f0-c144-48ea-a196-5aefa0e562a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202122Z:8cbb3ca6-c534-4b78-be72-a1645d970540" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:22 GMT" - ], - "Content-Length": [ - "2155" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps6921-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"864eae1c-be39-45cd-945a-73f713ff57de\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"37b6834d-7ea7-4151-b311-d6f6e02fed94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7770b1e3-7aee-4d24-9917-0781194bb267?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc3NzBiMWUzLTdhZWUtNGQyNC05OTE3LTA3ODExOTRiYjI2Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "473285cd-2f9b-4bd6-9a5c-d73940fa5ef3" - ], - "x-ms-correlation-request-id": [ - "3c7bcab0-5c99-486b-ac14-aadf2568bf9b" - ], - "x-ms-arm-service-request-id": [ - "8b02bf36-8576-4d25-84c3-3891199ee920" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202121Z:3c7bcab0-5c99-486b-ac14-aadf2568bf9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:20 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8507946-174f-4728-9a4d-4672b384732c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q4NTA3OTQ2LTE3NGYtNDcyOC05YTRkLTQ2NzJiMzg0NzMyYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5c9f1828-e1df-4414-bf75-df098c6f1108" - ], - "x-ms-correlation-request-id": [ - "6120010a-1c20-4c01-b52e-65e874083d89" - ], - "x-ms-arm-service-request-id": [ - "d63b810b-1280-478f-a785-9b99a01a3193" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202125Z:6120010a-1c20-4c01-b52e-65e874083d89" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:25 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2f3b44e6-5f38-4fe8-9018-f882bb9b5d65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A21%3A30.054506Z'\"" - ], - "x-ms-request-id": [ - "1340c425-9d9f-41c2-a79e-2e103b7105d2" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "28231983-1666-4747-8656-9c9531d3fe66" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202131Z:28231983-1666-4747-8656-9c9531d3fe66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:21:30 GMT" - ], - "Content-Length": [ - "318" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\",\r\n \"name\": \"ps1905\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A21%3A30.054506Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODI4MDA0ZGYtMzc1Yi00NDI5LTgwNTYtNzQ4NWU3NjI2ODBiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "08e6cd1f-5310-4eba-a7cc-2f99c1a02e26" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "c3468c6f-4960-4fb5-a27d-4d022665479d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202201Z:c3468c6f-4960-4fb5-a27d-4d022665479d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:01 GMT" - ], - "Content-Length": [ - "494" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/828004df-375b-4429-8056-7485e762680b\",\r\n \"name\": \"828004df-375b-4429-8056-7485e762680b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:21:29.795319Z\",\r\n \"endTime\": \"2020-10-22T20:21:30.1390757Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A21%3A30.135563Z'\"" - ], - "x-ms-request-id": [ - "939cfc3d-3ebb-46da-8fb3-a88320f8d5b9" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "45b035c0-ad7b-42a7-9310-5b3a14211149" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202201Z:45b035c0-ad7b-42a7-9310-5b3a14211149" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:01 GMT" - ], - "Content-Length": [ - "319" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905\",\r\n \"name\": \"ps1905\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A21%3A30.135563Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c5e5cda-9015-4559-b62b-c2937105094f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A22%3A03.7962261Z'\"" - ], - "x-ms-request-id": [ - "f7081aec-ff84-46d9-adb5-55b7847b4208" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "edb23b11-baf2-4dfe-bab0-d36ff6475a57" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202204Z:edb23b11-baf2-4dfe-bab0-d36ff6475a57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:04 GMT" - ], - "Content-Length": [ - "464" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\",\r\n \"name\": \"ps1905/ps9916\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A03.7962261Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGU1NjU0NTQtYmVkNS00MDZmLWE5ZTQtNzE1ZmVhNGJlMWExP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2fac6be8-9a73-433e-96e9-7c8bc5cf3470" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "1c341adb-4053-4b27-8ed2-f68c0592494e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202235Z:1c341adb-4053-4b27-8ed2-f68c0592494e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:34 GMT" - ], - "Content-Length": [ - "516" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e565454-bed5-406f-a9e4-715fea4be1a1\",\r\n \"name\": \"0e565454-bed5-406f-a9e4-715fea4be1a1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:22:03.7274226Z\",\r\n \"endTime\": \"2020-10-22T20:22:03.9930984Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A22%3A06.5061307Z'\"" - ], - "x-ms-request-id": [ - "9ca956d7-e442-4783-81cf-66ebb50bf3d0" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "47a7e74f-b333-447a-b73b-5a60d3ac7964" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202235Z:47a7e74f-b333-447a-b73b-5a60d3ac7964" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:35 GMT" - ], - "Content-Length": [ - "534" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916\",\r\n \"name\": \"ps1905/ps9916\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A06.5061307Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"298f20ab-6d80-4fff-cb4a-b0fa7e2d40e5\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d80be3e-2316-4938-ab80-e318988520e1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A22%3A38.2574581Z'\"" - ], - "x-ms-request-id": [ - "7800f20e-ac59-4a44-abb7-d343e26af4a7" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "302bbb70-4638-4511-9a36-97e687392e30" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202239Z:302bbb70-4638-4511-9a36-97e687392e30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:22:38 GMT" - ], - "Content-Length": [ - "464" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\",\r\n \"name\": \"ps1905/ps6304\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A38.2574581Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZGQ5NTJhMGQtMDE5My00Zjk5LTkwZjgtZTY2ZWE5NDQ2YTZlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b2a73dc3-d95c-4969-9a3e-77a5aee22e3b" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "d57da8d8-570e-4533-b000-c3b6fa17513e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202309Z:d57da8d8-570e-4533-b000-c3b6fa17513e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:23:09 GMT" - ], - "Content-Length": [ - "516" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd952a0d-0193-4f99-90f8-e66ea9446a6e\",\r\n \"name\": \"dd952a0d-0193-4f99-90f8-e66ea9446a6e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:22:38.1697628Z\",\r\n \"endTime\": \"2020-10-22T20:22:38.4510168Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A22%3A42.4684179Z'\"" - ], - "x-ms-request-id": [ - "9d0d2d54-c96e-46d3-8b8d-3d0950edf7cb" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "d45613cc-90c5-4d9d-b34b-03562326a11f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202309Z:d45613cc-90c5-4d9d-b34b-03562326a11f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:23:09 GMT" - ], - "Content-Length": [ - "534" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\",\r\n \"name\": \"ps1905/ps6304\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A22%3A42.4684179Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"0e529e8a-e598-7031-f9bd-71d751744b07\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4af84715-dec4-4f4e-9cd6-570d143ed3ae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "784" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A23%3A11.8510732Z'\"" - ], - "x-ms-request-id": [ - "ead93f52-e6f0-4087-947e-41affe344346" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "804fedf0-7147-4a87-ab15-cfa5ba1a8bb8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202312Z:804fedf0-7147-4a87-ab15-cfa5ba1a8bb8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:23:12 GMT" - ], - "Content-Length": [ - "1059" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A23%3A11.8510732Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1461862a-f68b-4f87-8bc8-2cf36ef52707" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "21c66fd9-5121-44d1-aea1-1279a6599f4d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202343Z:21c66fd9-5121-44d1-aea1-1279a6599f4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:23:42 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e1516004-bff9-4010-aa45-f6267dcde56e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "40b721e8-311b-4d64-8db0-9fea0d4709ef" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202413Z:40b721e8-311b-4d64-8db0-9fea0d4709ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:24:13 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26108a30-34d7-4ce2-9e30-9f5dec654034" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "78fd3fb3-018e-4508-ad95-962c239c717f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202443Z:78fd3fb3-018e-4508-ad95-962c239c717f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:24:43 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1db7ebb0-239c-4d75-bab1-8db5dc3582f4" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "d95ef3af-e95d-4ff3-b52c-29f357a0e159" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202514Z:d95ef3af-e95d-4ff3-b52c-29f357a0e159" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:25:13 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "10c8cd4f-f29f-4feb-b8ee-16f2c64c2d18" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "b511318f-be16-4a83-9219-686bce082fe8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202544Z:b511318f-be16-4a83-9219-686bce082fe8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:25:43 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "984914de-4193-47d2-973c-6e4ad668757a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "a4cba919-16b2-4b7d-9dfe-4aef20b4c155" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202614Z:a4cba919-16b2-4b7d-9dfe-4aef20b4c155" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:26:14 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjliNjBjMjAtOTM1OS00NjU0LWJjNWYtMmEwZjBmMTBkMDNkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aa4a31f5-2322-4687-af06-c174db4a4051" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "a19c8d72-1258-48d9-a81b-a6cf571079ff" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202644Z:a19c8d72-1258-48d9-a81b-a6cf571079ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:26:44 GMT" - ], - "Content-Length": [ - "529" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"name\": \"69b60c20-9359-4654-bc5f-2a0f0f10d03d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:23:11.731634Z\",\r\n \"endTime\": \"2020-10-22T20:26:23.523014Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\"" - ], - "x-ms-request-id": [ - "025baa89-0613-4eb1-8ed6-eae8b9c3d20f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "88835264-f230-433b-bf6a-6cc6e32a94ac" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202644Z:88835264-f230-433b-bf6a-6cc6e32a94ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:26:44 GMT" - ], - "Content-Length": [ - "1535" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc31ec2c-e5c3-4152-9542-866ab85f3ddc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\"" - ], - "x-ms-request-id": [ - "b179fe44-1223-4d6f-b3a1-fd1e02f33895" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "c72147d1-3938-4d11-9635-7b4ef9b694b8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202645Z:c72147d1-3938-4d11-9635-7b4ef9b694b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:26:44 GMT" - ], - "Content-Length": [ - "1535" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\",\r\n \"name\": \"ps1905/ps9916/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A23.5248187Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111/poolChange?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczk5MTYvdm9sdW1lcy9wczgxMTEvcG9vbENoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"newPoolResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7837f6e6-24e0-4b4d-bcda-bc0d1cbdbf32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "174" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f6fe1b37-fe78-4d81-b002-33615f53f744" - ], - "x-ms-correlation-request-id": [ - "f6fe1b37-fe78-4d81-b002-33615f53f744" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202646Z:f6fe1b37-fe78-4d81-b002-33615f53f744" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:26:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "831f86ae-4d4e-4bd6-bd89-5229ad1bd681" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "7df4ed11-90c4-494c-a87a-7b19c8da9da2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202716Z:7df4ed11-90c4-494c-a87a-7b19c8da9da2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:27:15 GMT" - ], - "Content-Length": [ - "522" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"name\": \"1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"status\": \"ChangePool\",\r\n \"startTime\": \"2020-10-22T20:26:45.8365791Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "040e5947-683e-4376-9725-4b6347f4e6d8" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "b4b9af5d-0a3d-47b4-9e00-055138e8ccd3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202747Z:b4b9af5d-0a3d-47b4-9e00-055138e8ccd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:27:46 GMT" - ], - "Content-Length": [ - "531" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"name\": \"1c4890ac-e608-4628-bfbf-9989e196d6cc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-22T20:26:45.8365791Z\",\r\n \"endTime\": \"2020-10-22T20:27:30.6909561Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps9916/volumes/ps8111\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c4890ac-e608-4628-bfbf-9989e196d6cc?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM0ODkwYWMtZTYwOC00NjI4LWJmYmYtOTk4OWUxOTZkNmNjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "04ee3014-8fb7-4289-977d-40d4bfac1902" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "a797143a-aa71-4e7c-aba8-e1a96dc7963c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202747Z:a797143a-aa71-4e7c-aba8-e1a96dc7963c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:27:46 GMT" - ], - "Content-Length": [ - "1892" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"name\": \"ps1905/ps6304/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A26%3A46.069318Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"poolId\": \"0e529e8a-e598-7031-f9bd-71d751744b07\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MDUvY2FwYWNpdHlQb29scy9wczYzMDQvdm9sdW1lcy9wczgxMTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bd4648b-d46f-4b71-b632-74fb74393bb5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-10-22T20%3A27%3A30.6850321Z'\"" - ], - "x-ms-request-id": [ - "d013b18d-7e21-43bc-9309-8de33d72f58d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "3b875748-03a1-471e-8332-3929e4115abc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202747Z:3b875748-03a1-471e-8332-3929e4115abc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:27:46 GMT" - ], - "Content-Length": [ - "1507" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.NetApp/netAppAccounts/ps1905/capacityPools/ps6304/volumes/ps8111\",\r\n \"name\": \"ps1905/ps6304/ps8111\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-22T20%3A27%3A30.6850321Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"566e583d-fa87-cf52-da77-2b02213a3627\",\r\n \"name\": \"ps8111\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8111\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_eae219fd\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6921/providers/Microsoft.Network/virtualNetworks/ps6921-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6921?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "812033c1-ab4c-4a14-b42c-bf04e414dcba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" - ], - "x-ms-correlation-request-id": [ - "aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202751Z:aa07bd2a-d6d0-4feb-ba60-7ef01bd963eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:27:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "b4895f1d-6e6c-457c-8296-60de8eb30a8f" - ], - "x-ms-correlation-request-id": [ - "b4895f1d-6e6c-457c-8296-60de8eb30a8f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202806Z:b4895f1d-6e6c-457c-8296-60de8eb30a8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:28:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "289080c7-2d82-4aae-bcef-009ae4483abe" - ], - "x-ms-correlation-request-id": [ - "289080c7-2d82-4aae-bcef-009ae4483abe" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202822Z:289080c7-2d82-4aae-bcef-009ae4483abe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:28:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" - ], - "x-ms-correlation-request-id": [ - "477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202837Z:477a64e2-e2d5-4fa0-8faa-845a3cb78e7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:28:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "752486e6-a32b-4a32-9d91-6c268a7bac15" - ], - "x-ms-correlation-request-id": [ - "752486e6-a32b-4a32-9d91-6c268a7bac15" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202852Z:752486e6-a32b-4a32-9d91-6c268a7bac15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:28:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" - ], - "x-ms-correlation-request-id": [ - "89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202908Z:89810ab8-77e4-4e9c-a7c6-152cc71b6ac3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:29:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "f5b39b1f-e0ac-4738-b258-a48a4f2f185c" - ], - "x-ms-correlation-request-id": [ - "f5b39b1f-e0ac-4738-b258-a48a4f2f185c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202923Z:f5b39b1f-e0ac-4738-b258-a48a4f2f185c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:29:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" - ], - "x-ms-correlation-request-id": [ - "b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202938Z:b0ea86f4-e0b5-4ac3-9c60-b5203b1e80e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:29:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "3199f69b-1722-4ec2-b5ce-b2617e1e5e32" - ], - "x-ms-correlation-request-id": [ - "3199f69b-1722-4ec2-b5ce-b2617e1e5e32" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T202954Z:3199f69b-1722-4ec2-b5ce-b2617e1e5e32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:29:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "29700e21-9bd0-4b56-a48a-e4f772e3d78b" - ], - "x-ms-correlation-request-id": [ - "29700e21-9bd0-4b56-a48a-e4f772e3d78b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203009Z:29700e21-9bd0-4b56-a48a-e4f772e3d78b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:30:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" - ], - "x-ms-correlation-request-id": [ - "c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203025Z:c46fb1a9-03e2-4119-b6a4-cc4aef3c5904" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:30:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "672eee87-3cfc-49ce-b611-c466eaa80d11" - ], - "x-ms-correlation-request-id": [ - "672eee87-3cfc-49ce-b611-c466eaa80d11" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203040Z:672eee87-3cfc-49ce-b611-c466eaa80d11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:30:40 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" - ], - "x-ms-correlation-request-id": [ - "19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203055Z:19a7ba48-06b3-4bd0-817d-9b092a8bc6d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:30:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "53c1b667-f557-484c-89fa-bf5d4f9fcbd2" - ], - "x-ms-correlation-request-id": [ - "53c1b667-f557-484c-89fa-bf5d4f9fcbd2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203111Z:53c1b667-f557-484c-89fa-bf5d4f9fcbd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:31:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "7793a4b0-5b3d-4680-9390-eb66b02b6eae" - ], - "x-ms-correlation-request-id": [ - "7793a4b0-5b3d-4680-9390-eb66b02b6eae" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203126Z:7793a4b0-5b3d-4680-9390-eb66b02b6eae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:31:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "12a5531e-c8ca-43df-9e32-ff1b63e58146" - ], - "x-ms-correlation-request-id": [ - "12a5531e-c8ca-43df-9e32-ff1b63e58146" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203142Z:12a5531e-c8ca-43df-9e32-ff1b63e58146" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:31:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" - ], - "x-ms-correlation-request-id": [ - "6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203157Z:6ddc6b8a-5da6-4adb-8af5-f1cc9216a124" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:31:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "ddfd76fb-2f3b-4319-9989-6004ccabb643" - ], - "x-ms-correlation-request-id": [ - "ddfd76fb-2f3b-4319-9989-6004ccabb643" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203213Z:ddfd76fb-2f3b-4319-9989-6004ccabb643" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:32:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "59fdd61e-27d0-4503-8afc-3875407433f7" - ], - "x-ms-correlation-request-id": [ - "59fdd61e-27d0-4503-8afc-3875407433f7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203228Z:59fdd61e-27d0-4503-8afc-3875407433f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:32:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "2a2143c6-0dd3-454d-8c56-8c295b6d1f28" - ], - "x-ms-correlation-request-id": [ - "2a2143c6-0dd3-454d-8c56-8c295b6d1f28" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203243Z:2a2143c6-0dd3-454d-8c56-8c295b6d1f28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:32:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "341ff25a-a19e-49f4-bdce-76a08f921094" - ], - "x-ms-correlation-request-id": [ - "341ff25a-a19e-49f4-bdce-76a08f921094" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203259Z:341ff25a-a19e-49f4-bdce-76a08f921094" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:32:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "8a2a80a5-3421-4938-9d25-a3011fb8b458" - ], - "x-ms-correlation-request-id": [ - "8a2a80a5-3421-4938-9d25-a3011fb8b458" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203314Z:8a2a80a5-3421-4938-9d25-a3011fb8b458" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:33:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "48ba653b-c1a2-441c-bbcb-903483878d04" - ], - "x-ms-correlation-request-id": [ - "48ba653b-c1a2-441c-bbcb-903483878d04" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203329Z:48ba653b-c1a2-441c-bbcb-903483878d04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:33:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "db903c65-42c9-4325-8005-2faf531a2d9b" - ], - "x-ms-correlation-request-id": [ - "db903c65-42c9-4325-8005-2faf531a2d9b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203345Z:db903c65-42c9-4325-8005-2faf531a2d9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:33:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "d3172cb7-590c-4194-8e34-daa7c5046b79" - ], - "x-ms-correlation-request-id": [ - "d3172cb7-590c-4194-8e34-daa7c5046b79" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203400Z:d3172cb7-590c-4194-8e34-daa7c5046b79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:33:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" - ], - "x-ms-correlation-request-id": [ - "e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203415Z:e9a38faf-9dc4-4884-85e8-3c1f62c3e5a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:34:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" - ], - "x-ms-correlation-request-id": [ - "9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203431Z:9c08a7ea-eefe-404e-8b96-b4c5734f1bfa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:34:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MjEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1qRXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "e40a5870-a6a1-425e-8277-d4e3532ef5a7" - ], - "x-ms-correlation-request-id": [ - "e40a5870-a6a1-425e-8277-d4e3532ef5a7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20201022T203431Z:e40a5870-a6a1-425e-8277-d4e3532ef5a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 20:34:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-VolumePoolChange": [ - "ps6921", - "ps1905", - "ps9916", - "ps6304", - "ps8111" - ] - }, - "Variables": { - "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" - } -} \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json index e39c1c524eee..f8a901c822e8 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8985?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc8b468e-5ffe-4fba-b74f-00f1d090c807" + "4f7c9bd4-672d-4032-8a8f-0de0f72b327d" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "d1632045-c26c-49b5-a3ca-25a0008582fb" + "5cf74402-0c5d-4052-9e8e-e2be3d39c28e" ], "x-ms-correlation-request-id": [ - "d1632045-c26c-49b5-a3ca-25a0008582fb" + "5cf74402-0c5d-4052-9e8e-e2be3d39c28e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194325Z:d1632045-c26c-49b5-a3ca-25a0008582fb" + "FRANCESOUTH:20201106T155003Z:5cf74402-0c5d-4052-9e8e-e2be3d39c28e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:24 GMT" + "Fri, 06 Nov 2020 15:50:03 GMT" ], "Content-Length": [ "166" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997\",\r\n \"name\": \"ps4997\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985\",\r\n \"name\": \"ps8985\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2981?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4797?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDc5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d1f1c41-8f32-4c6f-8a9e-55dd8f2bdd0c" + "c304c07e-2d23-415b-92c0-341ede856519" ], "Accept-Language": [ "en-US" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "efba968e-3f87-488f-9376-bfbbc30b0525" + "68e62f93-333a-4c41-b69f-3a4f47b9989e" ], "x-ms-correlation-request-id": [ - "efba968e-3f87-488f-9376-bfbbc30b0525" + "68e62f93-333a-4c41-b69f-3a4f47b9989e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194327Z:efba968e-3f87-488f-9376-bfbbc30b0525" + "FRANCESOUTH:20201106T155005Z:68e62f93-333a-4c41-b69f-3a4f47b9989e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:26 GMT" + "Fri, 06 Nov 2020 15:50:04 GMT" ], "Content-Length": [ "173" @@ -129,17 +129,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981\",\r\n \"name\": \"ps2981\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797\",\r\n \"name\": \"ps4797\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e4bb6a-9042-4908-9aac-304bb3cc6b29" + "f222239b-76a0-4ed7-aaf8-31d193f7f068" ], "Accept-Language": [ "en-US" @@ -162,13 +162,13 @@ "gateway" ], "x-ms-request-id": [ - "2f0c0e81-ae22-4d31-9040-aef741d3be55" + "5f721dbb-1548-4107-a148-706e7ad03a32" ], "x-ms-correlation-request-id": [ - "2f0c0e81-ae22-4d31-9040-aef741d3be55" + "5f721dbb-1548-4107-a148-706e7ad03a32" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194327Z:2f0c0e81-ae22-4d31-9040-aef741d3be55" + "FRANCESOUTH:20201106T155005Z:5f721dbb-1548-4107-a148-706e7ad03a32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:26 GMT" + "Fri, 06 Nov 2020 15:50:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,12 +189,12 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4997-vnet' under resource group 'ps4997' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps8985-vnet' under resource group 'ps8985' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -213,16 +213,16 @@ "no-cache" ], "ETag": [ - "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + "W/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" ], "x-ms-request-id": [ - "c3959b40-2d9e-4a3d-a627-c36fa93a9e62" + "818ff3e5-00f2-4af6-8798-0002588c95f3" ], "x-ms-correlation-request-id": [ - "5b032242-9996-451d-a329-48a8f723da2f" + "4d00c302-5852-40f6-9570-6b10957a68c6" ], "x-ms-arm-service-request-id": [ - "308994d3-22e5-44d6-b041-335b2e06bd0c" + "2c5e1a11-c0b9-403f-a19b-eebc2a8b936f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,13 +235,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194336Z:5b032242-9996-451d-a329-48a8f723da2f" + "FRANCESOUTH:20201106T155019Z:4d00c302-5852-40f6-9570-6b10957a68c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:35 GMT" + "Fri, 06 Nov 2020 15:50:18 GMT" ], "Content-Length": [ "642" @@ -253,17 +253,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"c3060339-52d2-4ee5-86d3-88da2643f03a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dde27cfe-e48a-41d3-bba5-a3ff885b70ee" + "07cd2651-07ef-4253-8623-135667c9b29d" ], "Accept-Language": [ "en-US" @@ -283,16 +283,16 @@ "no-cache" ], "ETag": [ - "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + "W/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" ], "x-ms-request-id": [ - "7f57f299-235f-4152-8f18-57664f0bb7ff" + "78454710-826b-4f2d-990f-cf01637b7bd9" ], "x-ms-correlation-request-id": [ - "6827286e-59ee-4134-8c2c-cdc93a563a2e" + "40d9abe0-ff77-450f-b33d-66d448755016" ], "x-ms-arm-service-request-id": [ - "76994338-6150-49f5-af77-9bd50d1e8d52" + "344f9a92-30bb-47c5-b43f-57346cc04e35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,13 +305,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194336Z:6827286e-59ee-4134-8c2c-cdc93a563a2e" + "FRANCESOUTH:20201106T155019Z:40d9abe0-ff77-450f-b33d-66d448755016" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:36 GMT" + "Fri, 06 Nov 2020 15:50:18 GMT" ], "Content-Length": [ "642" @@ -323,17 +323,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"c3060339-52d2-4ee5-86d3-88da2643f03a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63a4f390-6b61-40ed-80a7-de97bd518885" + "9fc9ce5b-6977-448e-ba2b-082b4187bf3a" ], "Accept-Language": [ "en-US" @@ -353,16 +353,16 @@ "no-cache" ], "ETag": [ - "W/\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\"" + "W/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" ], "x-ms-request-id": [ - "0ab02d46-b987-4287-8e79-445aa1fbace6" + "6fd74ca4-fa2c-4664-b5b8-43d3768e4b9d" ], "x-ms-correlation-request-id": [ - "b5594d89-3ca9-4694-8a54-397eca19b958" + "d82f8bc1-64eb-4d9d-b452-f0e88b3c6296" ], "x-ms-arm-service-request-id": [ - "6510ac02-f788-459f-be20-b42f94915585" + "cdb2091d-17a3-4555-bc56-a07aa5662cf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,13 +375,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194336Z:b5594d89-3ca9-4694-8a54-397eca19b958" + "FRANCESOUTH:20201106T155019Z:d82f8bc1-64eb-4d9d-b452-f0e88b3c6296" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:36 GMT" + "Fri, 06 Nov 2020 15:50:19 GMT" ], "Content-Length": [ "642" @@ -393,12 +393,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"ffdff2f7-11a8-4b6b-a3f7-9eb8f715c1f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"c3060339-52d2-4ee5-86d3-88da2643f03a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -417,16 +417,16 @@ "no-cache" ], "ETag": [ - "W/\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\"" + "W/\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\"" ], "x-ms-request-id": [ - "97be10a4-7f09-4cce-a540-e8294c2100e2" + "e8a375bd-9365-4135-a097-0f6117b97506" ], "x-ms-correlation-request-id": [ - "919c6f73-df9d-4e3c-9ba9-2f672eff743e" + "e5951c17-91b6-4781-8c98-c6dc908a0dc0" ], "x-ms-arm-service-request-id": [ - "b4f6f150-e749-4500-b00e-2e771ba8206c" + "cda82589-3cb1-465d-b982-82021f3b10ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,13 +439,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194341Z:919c6f73-df9d-4e3c-9ba9-2f672eff743e" + "FRANCESOUTH:20201106T155024Z:e5951c17-91b6-4781-8c98-c6dc908a0dc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:41 GMT" + "Fri, 06 Nov 2020 15:50:23 GMT" ], "Content-Length": [ "2151" @@ -457,17 +457,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c28c7a30-c392-45b8-8e52-ab879dfea54f" + "c1c9fc6b-a3cc-4a69-8016-693cbd500e18" ], "Accept-Language": [ "en-US" @@ -487,16 +487,16 @@ "no-cache" ], "ETag": [ - "W/\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\"" + "W/\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\"" ], "x-ms-request-id": [ - "4d9e24e1-bc9a-40b6-b800-dbe660ba6218" + "31aa8ed4-4ab2-4298-a871-f037a525bb72" ], "x-ms-correlation-request-id": [ - "8116411e-77b1-447d-a954-1e9a661aae80" + "e9166d77-65d7-49a2-8e1d-fd4a231ebc47" ], "x-ms-arm-service-request-id": [ - "b1f135af-96ef-4c4f-bd4c-179eadd5e747" + "652fb883-98ad-425a-aa6b-dd1e7ca37329" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -509,13 +509,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194341Z:8116411e-77b1-447d-a954-1e9a661aae80" + "FRANCESOUTH:20201106T155024Z:e9166d77-65d7-49a2-8e1d-fd4a231ebc47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:41 GMT" + "Fri, 06 Nov 2020 15:50:23 GMT" ], "Content-Length": [ "2151" @@ -527,17 +527,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"15652697-3b97-419a-94c0-1eaf3cbc6ffd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6077673-89a4-468d-aa9f-3124ce5168e9" + "dfd6f432-76cf-46c3-9620-66679f6f951c" ], "Accept-Language": [ "en-US" @@ -566,19 +566,19 @@ "3" ], "x-ms-request-id": [ - "c64ae125-a30d-454b-bfe7-7b23536bdf18" + "ade83573-c149-4b7d-8293-6ec74fc7913d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/c64ae125-a30d-454b-bfe7-7b23536bdf18?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/ade83573-c149-4b7d-8293-6ec74fc7913d?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "ec3df87c-8584-4247-878c-634575ab1fb3" + "ef384130-ecad-477c-b605-1c707c7b158e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "4e81b701-fc87-425b-9cb6-2e06512ef1c5" + "7076e94b-ab4f-406b-8841-53e68733bcd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591,13 +591,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194332Z:ec3df87c-8584-4247-878c-634575ab1fb3" + "FRANCESOUTH:20201106T155015Z:ef384130-ecad-477c-b605-1c707c7b158e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:32 GMT" + "Fri, 06 Nov 2020 15:50:14 GMT" ], "Content-Length": [ "641" @@ -609,17 +609,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"f82e1a5a-e7d5-493c-ad68-514cd259dd97\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"9d2a1f5b-2c6e-46dc-8a3e-71d65cea4c79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDk5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a0bdcac0-0712-488a-af08-2ce67ba95411" + "49f36d07-df63-4ded-b1a5-22d8e3626384" ], "Accept-Language": [ "en-US" @@ -648,16 +648,16 @@ "3" ], "x-ms-request-id": [ - "bb05979f-5bcf-45f0-b31f-f4e1d0e02e65" + "75319b70-21e2-41e5-b551-3ff268739fdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/bb05979f-5bcf-45f0-b31f-f4e1d0e02e65?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/75319b70-21e2-41e5-b551-3ff268739fdc?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "6d34c943-b9bb-4796-aaed-3ef9b0dbfd03" + "6899487b-0658-49ed-bcf5-87f0896876f4" ], "x-ms-arm-service-request-id": [ - "eb5bde9a-a2dd-4b3c-92f9-9e4407b87708" + "390805a5-f4f4-4307-ab77-eff38ad1c2d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,13 +670,13 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194338Z:6d34c943-b9bb-4796-aaed-3ef9b0dbfd03" + "FRANCESOUTH:20201106T155020Z:6899487b-0658-49ed-bcf5-87f0896876f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:37 GMT" + "Fri, 06 Nov 2020 15:50:19 GMT" ], "Content-Length": [ "2149" @@ -688,12 +688,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4997-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"64109628-f107-43ad-88b4-a6a8f0200d02\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"994da740-30ad-4e6a-b429-e9aa80f92521\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8985-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"etag\": \"W/\\\"5a695b19-a0a2-404e-9b96-ba9d9d423a52\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"55976a99-e249-4c6a-be44-ada34c833c13\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"5a695b19-a0a2-404e-9b96-ba9d9d423a52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"5a695b19-a0a2-404e-9b96-ba9d9d423a52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/c64ae125-a30d-454b-bfe7-7b23536bdf18?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M2NGFlMTI1LWEzMGQtNDU0Yi1iZmU3LTdiMjM1MzZiZGYxOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/ade83573-c149-4b7d-8293-6ec74fc7913d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FkZTgzNTczLWMxNDktNGI3ZC04MjkzLTZlYzc0ZmM3OTEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -712,13 +712,13 @@ "no-cache" ], "x-ms-request-id": [ - "aeae3e12-5a77-4bc2-811d-59908bc608fb" + "45dfc13b-bc9d-4d5a-a5d1-3c882ab6b69d" ], "x-ms-correlation-request-id": [ - "15b96736-6393-4bce-aeef-fd70adb25f48" + "ad3cd761-241f-4ea2-9e65-52824b7bc872" ], "x-ms-arm-service-request-id": [ - "b7c97d8f-793c-46e7-bdaa-c88d3a914758" + "ceb6ef2c-fc25-41a3-8ec0-931321bf9073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -731,13 +731,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194336Z:15b96736-6393-4bce-aeef-fd70adb25f48" + "FRANCESOUTH:20201106T155018Z:ad3cd761-241f-4ea2-9e65-52824b7bc872" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:35 GMT" + "Fri, 06 Nov 2020 15:50:18 GMT" ], "Content-Length": [ "29" @@ -753,8 +753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/bb05979f-5bcf-45f0-b31f-f4e1d0e02e65?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2JiMDU5NzlmLTViY2YtNDVmMC1iMzFmLWY0ZTFkMGUwMmU2NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/75319b70-21e2-41e5-b551-3ff268739fdc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzc1MzE5YjcwLTIxZTItNDFlNS1iNTUxLTNmZjI2ODczOWZkYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -773,13 +773,13 @@ "no-cache" ], "x-ms-request-id": [ - "0355681e-6ce5-4705-8e92-aa700c3d4a3e" + "5aba2ac7-59cd-49c3-a91a-5a07c04232c7" ], "x-ms-correlation-request-id": [ - "60b25a76-d9ae-4469-8b9f-1e1c558c414c" + "5a864a1a-7a88-4df9-ab57-b9ae7232860b" ], "x-ms-arm-service-request-id": [ - "6d50ae6c-4cad-495e-98df-afa8ceacbda2" + "f980de92-234d-47a7-a746-12ab21187882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,13 +792,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194341Z:60b25a76-d9ae-4469-8b9f-1e1c558c414c" + "FRANCESOUTH:20201106T155023Z:5a864a1a-7a88-4df9-ab57-b9ae7232860b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:40 GMT" + "Fri, 06 Nov 2020 15:50:23 GMT" ], "Content-Length": [ "29" @@ -814,13 +814,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1dcfe08-0f5d-49b7-9c50-cada11c36282" + "947c54b4-3e4e-43d5-95fb-137e4f3e1afa" ], "Accept-Language": [ "en-US" @@ -843,13 +843,13 @@ "gateway" ], "x-ms-request-id": [ - "4c388e0f-feca-4c8c-beaf-202063736f9c" + "85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" ], "x-ms-correlation-request-id": [ - "4c388e0f-feca-4c8c-beaf-202063736f9c" + "85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194342Z:4c388e0f-feca-4c8c-beaf-202063736f9c" + "FRANCESOUTH:20201106T155025Z:85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,7 +858,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:41 GMT" + "Fri, 06 Nov 2020 15:50:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,12 +870,12 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps2981-vnet' under resource group 'ps2981' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps4797-vnet' under resource group 'ps4797' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -894,16 +894,16 @@ "no-cache" ], "ETag": [ - "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + "W/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" ], "x-ms-request-id": [ - "4dbc300a-5f4d-426b-b5af-582383c4436d" + "56bc43c5-a053-410c-8143-81a85b0ecc4e" ], "x-ms-correlation-request-id": [ - "def0d05f-15fa-4d90-9e98-647eea6b5600" + "e3dd6707-2994-449b-a640-b78f42093bb0" ], "x-ms-arm-service-request-id": [ - "1145886e-4003-4afb-ac6f-fd00c588ec6e" + "d78c8e7a-6017-4b21-bda8-92bbe30524ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,13 +916,13 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194350Z:def0d05f-15fa-4d90-9e98-647eea6b5600" + "FRANCESOUTH:20201106T155034Z:e3dd6707-2994-449b-a640-b78f42093bb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:50 GMT" + "Fri, 06 Nov 2020 15:50:33 GMT" ], "Content-Length": [ "641" @@ -934,17 +934,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68c53860-cd9f-49ae-88fa-f6258eac0bf5" + "cecf56b5-50f0-4352-aea9-495f7b89ea05" ], "Accept-Language": [ "en-US" @@ -964,16 +964,16 @@ "no-cache" ], "ETag": [ - "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + "W/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" ], "x-ms-request-id": [ - "79c56252-97a9-40e5-9ee3-5fc83a318db6" + "35f46c29-4ac5-4ee2-b930-7087b429341a" ], "x-ms-correlation-request-id": [ - "41d50934-e88b-47cc-81c3-64b2c36b5e90" + "1e66862b-fed5-46a0-9139-75de35373525" ], "x-ms-arm-service-request-id": [ - "344fc797-8fee-479d-a871-a945774a2777" + "b4bdb1b0-116e-4700-b471-9afc3ae8e11f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -986,13 +986,13 @@ "11988" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194351Z:41d50934-e88b-47cc-81c3-64b2c36b5e90" + "FRANCESOUTH:20201106T155034Z:1e66862b-fed5-46a0-9139-75de35373525" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:50 GMT" + "Fri, 06 Nov 2020 15:50:33 GMT" ], "Content-Length": [ "641" @@ -1004,17 +1004,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6369739e-0d2f-42e2-bd52-d86a9d5f39c8" + "094db0f2-6ef0-428c-b777-2643cf6c4237" ], "Accept-Language": [ "en-US" @@ -1034,16 +1034,16 @@ "no-cache" ], "ETag": [ - "W/\"52726660-ecff-49e0-a3f1-b5c3f0115f89\"" + "W/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" ], "x-ms-request-id": [ - "ece01216-005e-4169-8714-f7b8b866d25e" + "e372de03-39b2-4071-9d77-8de1f58d3879" ], "x-ms-correlation-request-id": [ - "76123edb-1ee5-43d5-a520-253cdffeaa8d" + "0aa0ad6f-cdf3-4a04-bfbb-7e2a4daafb3a" ], "x-ms-arm-service-request-id": [ - "eab3dc63-7d6b-4eb3-8b83-2bede753c494" + "7d547016-698c-4e1e-b6f5-20821741eb01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,13 +1056,13 @@ "11987" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194351Z:76123edb-1ee5-43d5-a520-253cdffeaa8d" + "FRANCESOUTH:20201106T155034Z:0aa0ad6f-cdf3-4a04-bfbb-7e2a4daafb3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:50 GMT" + "Fri, 06 Nov 2020 15:50:33 GMT" ], "Content-Length": [ "641" @@ -1074,12 +1074,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"52726660-ecff-49e0-a3f1-b5c3f0115f89\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,16 +1098,16 @@ "no-cache" ], "ETag": [ - "W/\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\"" + "W/\"11a5622e-3973-4020-be9b-d8c2b8ec069b\"" ], "x-ms-request-id": [ - "39ebc2d8-8f3f-4941-a96f-ebc1e41699d7" + "7183ed53-6b4e-48da-86ab-e098293ab0f3" ], "x-ms-correlation-request-id": [ - "4dd91a60-a697-4579-aeb3-10e921e4f73d" + "923931d6-168f-44c7-b380-5c082ccf993c" ], "x-ms-arm-service-request-id": [ - "843e0cea-92c9-4116-8eb9-11b9d48e60a1" + "cf2e625a-98d3-4445-b6ad-4294fe84b2e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,13 +1120,13 @@ "11985" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194355Z:4dd91a60-a697-4579-aeb3-10e921e4f73d" + "FRANCESOUTH:20201106T155038Z:923931d6-168f-44c7-b380-5c082ccf993c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:54 GMT" + "Fri, 06 Nov 2020 15:50:37 GMT" ], "Content-Length": [ "2150" @@ -1138,17 +1138,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76fe7ca7-6795-47f7-ac44-9715c85dc1cb" + "b8791b84-3550-4bc6-83f4-8d8c3d10edc0" ], "Accept-Language": [ "en-US" @@ -1168,16 +1168,16 @@ "no-cache" ], "ETag": [ - "W/\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\"" + "W/\"11a5622e-3973-4020-be9b-d8c2b8ec069b\"" ], "x-ms-request-id": [ - "8a1c3fc5-78d7-4542-979f-fd7fdcc7cf36" + "c9e30c91-428a-4e45-9389-ecd868335fee" ], "x-ms-correlation-request-id": [ - "ae692423-7882-47cb-b7d3-8a63edc92089" + "aa1ac337-6038-47d3-b2e6-be5cb948e11e" ], "x-ms-arm-service-request-id": [ - "2752c5aa-3a32-4018-ac2f-b88252427305" + "49f7e1a8-3dd6-4ea7-a71f-4bce3f91bcdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1190,13 +1190,13 @@ "11984" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194355Z:ae692423-7882-47cb-b7d3-8a63edc92089" + "FRANCESOUTH:20201106T155038Z:aa1ac337-6038-47d3-b2e6-be5cb948e11e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:54 GMT" + "Fri, 06 Nov 2020 15:50:38 GMT" ], "Content-Length": [ "2150" @@ -1208,17 +1208,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2dc4e4c9-a3be-4dfa-b3a4-01e3d4b3ab65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"11a5622e-3973-4020-be9b-d8c2b8ec069b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae65abe6-9a02-4801-9b29-bda0073ead13" + "60d0dea1-c052-4c9a-bb6a-0cb25864b509" ], "Accept-Language": [ "en-US" @@ -1247,19 +1247,19 @@ "3" ], "x-ms-request-id": [ - "a59a3372-202e-40b1-a5d1-f84cbe07818e" + "52106542-5081-47e5-b715-5292f6d21070" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a59a3372-202e-40b1-a5d1-f84cbe07818e?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/52106542-5081-47e5-b715-5292f6d21070?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "4731cc9b-a9e6-4471-9a7a-825ad12bbaac" + "9bd56a63-6d0c-41a2-9aaa-28a4f9cc3f16" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "b4b13ee7-b44f-4085-a6c8-9b66920764e9" + "e5fc5017-048e-46bf-8a1f-31a37dd2027c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1272,13 +1272,13 @@ "1197" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194347Z:4731cc9b-a9e6-4471-9a7a-825ad12bbaac" + "FRANCESOUTH:20201106T155030Z:9bd56a63-6d0c-41a2-9aaa-28a4f9cc3f16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:46 GMT" + "Fri, 06 Nov 2020 15:50:29 GMT" ], "Content-Length": [ "640" @@ -1290,17 +1290,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"64e43dc1-42a3-4a52-b1f1-795b92533030\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"1a8ce38d-dc60-421c-abcb-03117eaf8d8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjk4MS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f223aa8-7a8a-4004-87c8-f6a8a7849896" + "86aa42d6-1b97-45b6-a4f5-04fc4b3ea012" ], "Accept-Language": [ "en-US" @@ -1329,16 +1329,16 @@ "3" ], "x-ms-request-id": [ - "7c947a8f-4834-4b87-85bf-226fe9bda48b" + "39d22a79-0c41-469d-be7d-4936b00a8899" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/7c947a8f-4834-4b87-85bf-226fe9bda48b?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/39d22a79-0c41-469d-be7d-4936b00a8899?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "0a84ec18-0d44-4600-b418-ef40d3f201d5" + "2e2d9c79-ac70-4d34-9c07-cbff837da2bb" ], "x-ms-arm-service-request-id": [ - "8c68e948-1bee-4732-b55b-b4ee8d00d86c" + "c22e713c-2f04-4f67-9f03-05c84c50fedc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,13 +1351,13 @@ "1196" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194351Z:0a84ec18-0d44-4600-b418-ef40d3f201d5" + "FRANCESOUTH:20201106T155035Z:2e2d9c79-ac70-4d34-9c07-cbff837da2bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:51 GMT" + "Fri, 06 Nov 2020 15:50:34 GMT" ], "Content-Length": [ "2148" @@ -1369,12 +1369,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2981-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"75209350-7a57-4ef0-bee4-54efa3e11b14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"e4836a21-0d9d-4eaa-9aad-2087c48a8bcc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4797-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"etag\": \"W/\\\"9be752ca-9dc6-4006-b4b8-e33510bb9e28\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f9571f94-4269-4110-abda-a09e1d5cd22a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"9be752ca-9dc6-4006-b4b8-e33510bb9e28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"9be752ca-9dc6-4006-b4b8-e33510bb9e28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/a59a3372-202e-40b1-a5d1-f84cbe07818e?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTU5YTMzNzItMjAyZS00MGIxLWE1ZDEtZjg0Y2JlMDc4MThlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/52106542-5081-47e5-b715-5292f6d21070?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTIxMDY1NDItNTA4MS00N2U1LWI3MTUtNTI5MmY2ZDIxMDcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,13 +1393,13 @@ "no-cache" ], "x-ms-request-id": [ - "06845401-7cf5-48d5-9900-0ba4d945f0fa" + "e935b14e-28ff-4d2f-a908-a17019a1ae8b" ], "x-ms-correlation-request-id": [ - "e3fef42f-e658-402d-9793-32beca6fb369" + "f42b9502-182e-48f7-bb52-18a494b2fb63" ], "x-ms-arm-service-request-id": [ - "f829d2a1-e833-4ff6-975a-e66d82110909" + "5cc84756-166d-456d-8c3e-a5996910497d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1412,13 +1412,13 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194350Z:e3fef42f-e658-402d-9793-32beca6fb369" + "FRANCESOUTH:20201106T155034Z:f42b9502-182e-48f7-bb52-18a494b2fb63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:50 GMT" + "Fri, 06 Nov 2020 15:50:33 GMT" ], "Content-Length": [ "29" @@ -1434,8 +1434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/7c947a8f-4834-4b87-85bf-226fe9bda48b?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2M5NDdhOGYtNDgzNC00Yjg3LTg1YmYtMjI2ZmU5YmRhNDhiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/eastus/operations/39d22a79-0c41-469d-be7d-4936b00a8899?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzlkMjJhNzktMGM0MS00NjlkLWJlN2QtNDkzNmIwMGE4ODk5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1454,13 +1454,13 @@ "no-cache" ], "x-ms-request-id": [ - "17fdb4b4-e76f-409b-8353-0898c6c253e6" + "99c4579f-3f66-47a9-8d17-a2bf50c7513c" ], "x-ms-correlation-request-id": [ - "f2bf0d0b-a9bf-455d-b066-720bf256c6f1" + "7721fc9c-6d09-4c19-ad11-708050b32f7b" ], "x-ms-arm-service-request-id": [ - "8adb0256-1b0a-4946-b2d9-6d3f5354f6d3" + "7faccf12-3a10-4b77-8d72-0b30f794fb77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,13 +1473,13 @@ "11986" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194355Z:f2bf0d0b-a9bf-455d-b066-720bf256c6f1" + "FRANCESOUTH:20201106T155038Z:7721fc9c-6d09-4c19-ad11-708050b32f7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:43:54 GMT" + "Fri, 06 Nov 2020 15:50:37 GMT" ], "Content-Length": [ "29" @@ -1495,13 +1495,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f22ff59-f923-45cc-95af-440c974b6583" + "19be0ddf-d2a8-4aae-aaab-8bbf9b624130" ], "Accept-Language": [ "en-US" @@ -1527,13 +1527,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A44%3A02.0328208Z'\"" + "W/\"datetime'2020-11-06T15%3A50%3A45.7743692Z'\"" ], "x-ms-request-id": [ - "542d41b3-6839-45e1-9ac2-596eafd80f4a" + "bc5c47b5-7291-4faa-b18b-1defabaeaa58" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/86426f33-eadf-4a0b-85c6-241604dee1b2?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1548,13 +1548,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "669c1235-889e-4bf8-9b7f-44a6166c9d91" + "70855878-f2e1-4555-80b1-1365c9db1eef" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194403Z:669c1235-889e-4bf8-9b7f-44a6166c9d91" + "FRANCESOUTH:20201106T155047Z:70855878-f2e1-4555-80b1-1365c9db1eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,7 +1563,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:44:03 GMT" + "Fri, 06 Nov 2020 15:50:46 GMT" ], "Content-Length": [ "313" @@ -1575,12 +1575,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\",\r\n \"name\": \"ps5547\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A02.0328208Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790\",\r\n \"name\": \"ps9790\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A50%3A45.7743692Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmU5YWZjYmMtYjMwMC00YTE4LThjMzktMDBhYjJiZDkxOTIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/86426f33-eadf-4a0b-85c6-241604dee1b2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvODY0MjZmMzMtZWFkZi00YTBiLTg1YzYtMjQxNjA0ZGVlMWIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1599,7 +1599,7 @@ "no-cache" ], "x-ms-request-id": [ - "e40c0a2d-ad5c-463b-ad53-4c50a16f6eb0" + "e53c9dad-10f8-47be-85f6-fb0632b66a14" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1614,13 +1614,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11980" ], "x-ms-correlation-request-id": [ - "1488ac90-4552-4ae8-87fe-15def28995fa" + "0016aac0-f239-4749-969e-5a64a506b9c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194433Z:1488ac90-4552-4ae8-87fe-15def28995fa" + "FRANCESOUTH:20201106T155117Z:0016aac0-f239-4749-969e-5a64a506b9c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,10 +1629,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:44:33 GMT" + "Fri, 06 Nov 2020 15:51:16 GMT" ], "Content-Length": [ - "488" + "489" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,12 +1641,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2e9afcbc-b300-4a18-8c39-00ab2bd91923\",\r\n \"name\": \"2e9afcbc-b300-4a18-8c39-00ab2bd91923\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:44:01.9264303Z\",\r\n \"endTime\": \"2020-10-23T19:44:02.116852Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/86426f33-eadf-4a0b-85c6-241604dee1b2\",\r\n \"name\": \"86426f33-eadf-4a0b-85c6-241604dee1b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:50:45.7049644Z\",\r\n \"endTime\": \"2020-11-06T15:50:45.8612163Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1665,10 +1665,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A44%3A02.1118753Z'\"" + "W/\"datetime'2020-11-06T15%3A50%3A45.8544271Z'\"" ], "x-ms-request-id": [ - "46f4dd60-da96-47d4-9897-ec46addbd637" + "b9264b7d-aa2a-48f4-a9fc-47b77adca8b8" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1683,13 +1683,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-correlation-request-id": [ - "7191d173-90cc-4dcc-b5cd-fc7c93b53db1" + "e0548829-bfb5-44ea-8a21-8be8aebc121d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194434Z:7191d173-90cc-4dcc-b5cd-fc7c93b53db1" + "FRANCESOUTH:20201106T155117Z:e0548829-bfb5-44ea-8a21-8be8aebc121d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,7 +1698,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:44:33 GMT" + "Fri, 06 Nov 2020 15:51:17 GMT" ], "Content-Length": [ "314" @@ -1710,17 +1710,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547\",\r\n \"name\": \"ps5547\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A02.1118753Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790\",\r\n \"name\": \"ps9790\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A50%3A45.8544271Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "166d386c-2843-4d14-b0af-b340865893b1" + "5c92642d-2197-48e3-90c2-9ce9dae61477" ], "Accept-Language": [ "en-US" @@ -1746,13 +1746,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A44%3A38.9640141Z'\"" + "W/\"datetime'2020-11-06T15%3A51%3A22.3850765Z'\"" ], "x-ms-request-id": [ - "9ec1b3b8-ccdc-4ecc-8d68-dcc061c13c01" + "83fffbca-1221-46bb-8129-9c21d873d690" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/c927abd8-2969-46a9-9b49-85b3f24da815?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1767,13 +1767,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "68935918-3853-4c0b-91a8-6ccee27d10a8" + "f7cd9b5d-e54d-44f4-bf3e-4793b945176f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194440Z:68935918-3853-4c0b-91a8-6ccee27d10a8" + "FRANCESOUTH:20201106T155123Z:f7cd9b5d-e54d-44f4-bf3e-4793b945176f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1782,7 +1782,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:44:39 GMT" + "Fri, 06 Nov 2020 15:51:23 GMT" ], "Content-Length": [ "312" @@ -1794,12 +1794,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\",\r\n \"name\": \"ps7560\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A38.9640141Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228\",\r\n \"name\": \"ps6228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A51%3A22.3850765Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8yMzYwYzBlMC1mNjNkLTQ5ZGItOGQ2Yy0zMGVlZjlkNzIyOGM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/c927abd8-2969-46a9-9b49-85b3f24da815?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jOTI3YWJkOC0yOTY5LTQ2YTktOWI0OS04NWIzZjI0ZGE4MTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1818,7 +1818,7 @@ "no-cache" ], "x-ms-request-id": [ - "bff4c096-9bbc-45a0-bf2b-9dea7a14fdd2" + "bce4c9fe-bcf6-4cf2-ad31-6ffd287f80be" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1833,13 +1833,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11978" ], "x-ms-correlation-request-id": [ - "efd5b689-0204-4226-aee6-15ec0047376d" + "8b4c964d-a1e3-42a1-9d60-7e0e51c2097c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194510Z:efd5b689-0204-4226-aee6-15ec0047376d" + "FRANCESOUTH:20201106T155154Z:8b4c964d-a1e3-42a1-9d60-7e0e51c2097c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1848,10 +1848,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:10 GMT" + "Fri, 06 Nov 2020 15:51:53 GMT" ], "Content-Length": [ - "488" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1860,12 +1860,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/2360c0e0-f63d-49db-8d6c-30eef9d7228c\",\r\n \"name\": \"2360c0e0-f63d-49db-8d6c-30eef9d7228c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:44:38.9036642Z\",\r\n \"endTime\": \"2020-10-23T19:44:39.0286555Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/c927abd8-2969-46a9-9b49-85b3f24da815\",\r\n \"name\": \"c927abd8-2969-46a9-9b49-85b3f24da815\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:51:22.3301515Z\",\r\n \"endTime\": \"2020-11-06T15:51:22.455235Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1884,10 +1884,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A44%3A39.0330632Z'\"" + "W/\"datetime'2020-11-06T15%3A51%3A22.4581287Z'\"" ], "x-ms-request-id": [ - "cbe7dec7-e932-4314-8eb8-26be05591a5e" + "de51a7c1-2d1a-4e6d-807f-67d2c83a76c7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1902,13 +1902,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11977" ], "x-ms-correlation-request-id": [ - "2c436818-6c73-497f-b3a5-5561c71c27ce" + "3284f032-a1c0-4fd6-99f0-3ca338049ee8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194510Z:2c436818-6c73-497f-b3a5-5561c71c27ce" + "FRANCESOUTH:20201106T155154Z:3284f032-a1c0-4fd6-99f0-3ca338049ee8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,7 +1917,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:10 GMT" + "Fri, 06 Nov 2020 15:51:53 GMT" ], "Content-Length": [ "313" @@ -1929,17 +1929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560\",\r\n \"name\": \"ps7560\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A44%3A39.0330632Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228\",\r\n \"name\": \"ps6228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A51%3A22.4581287Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7f14625-ece6-4f37-957e-b2e0cc5be798" + "0dee1d5e-ad36-4c7d-a98f-65c164596292" ], "Accept-Language": [ "en-US" @@ -1965,13 +1965,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A45%3A14.9077574Z'\"" + "W/\"datetime'2020-11-06T15%3A51%3A57.9934086Z'\"" ], "x-ms-request-id": [ - "aad38a41-fe80-4912-905c-4dc13eeebd01" + "97cc99d7-919f-458c-9098-979ad9d51863" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ddc4e809-39f3-4956-99b6-2185dbda9c2a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1986,13 +1986,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "da5adab7-8fce-44c8-86bb-077ce4839086" + "085ad500-ad71-46f2-b7a8-9f08e340e511" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194516Z:da5adab7-8fce-44c8-86bb-077ce4839086" + "FRANCESOUTH:20201106T155159Z:085ad500-ad71-46f2-b7a8-9f08e340e511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,7 +2001,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:15 GMT" + "Fri, 06 Nov 2020 15:51:59 GMT" ], "Content-Length": [ "458" @@ -2013,12 +2013,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\",\r\n \"name\": \"ps5547/ps2914\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A14.9077574Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997\",\r\n \"name\": \"ps9790/ps7997\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A51%3A57.9934086Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDExZjFkZGMtNmYwMi00MzU3LTkzYjUtZGE4OWU2NWRlYTc1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ddc4e809-39f3-4956-99b6-2185dbda9c2a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGRjNGU4MDktMzlmMy00OTU2LTk5YjYtMjE4NWRiZGE5YzJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2037,7 +2037,7 @@ "no-cache" ], "x-ms-request-id": [ - "b3e669af-7010-46af-b831-54849333a3cc" + "fcbd1d4f-4e1d-420a-a3f2-fd8bfb5d4576" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2052,13 +2052,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11976" ], "x-ms-correlation-request-id": [ - "5d89189d-de35-4127-b9b5-a7895a4c4227" + "ed2ead4a-5f43-421d-aa49-ec14ddfaaeaa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194546Z:5d89189d-de35-4127-b9b5-a7895a4c4227" + "FRANCESOUTH:20201106T155229Z:ed2ead4a-5f43-421d-aa49-ec14ddfaaeaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2067,7 +2067,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:45 GMT" + "Fri, 06 Nov 2020 15:52:28 GMT" ], "Content-Length": [ "510" @@ -2079,12 +2079,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/011f1ddc-6f02-4357-93b5-da89e65dea75\",\r\n \"name\": \"011f1ddc-6f02-4357-93b5-da89e65dea75\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:45:14.8532949Z\",\r\n \"endTime\": \"2020-10-23T19:45:15.1504778Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ddc4e809-39f3-4956-99b6-2185dbda9c2a\",\r\n \"name\": \"ddc4e809-39f3-4956-99b6-2185dbda9c2a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:51:57.9170668Z\",\r\n \"endTime\": \"2020-11-06T15:51:58.1565658Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2103,10 +2103,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A45%3A15.1479223Z'\"" + "W/\"datetime'2020-11-06T15%3A51%3A58.1565266Z'\"" ], "x-ms-request-id": [ - "9ca5adc3-287c-4087-bdf7-5e069361d579" + "f0fa5410-cc51-459a-be56-972162aa390a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2121,13 +2121,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11975" ], "x-ms-correlation-request-id": [ - "fe9e2ae5-405e-49fe-ba6e-af44518bd1af" + "86643ef8-7351-4c1f-be85-b79cf31a7d6c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194546Z:fe9e2ae5-405e-49fe-ba6e-af44518bd1af" + "FRANCESOUTH:20201106T155230Z:86643ef8-7351-4c1f-be85-b79cf31a7d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,7 +2136,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:46 GMT" + "Fri, 06 Nov 2020 15:52:30 GMT" ], "Content-Length": [ "528" @@ -2148,17 +2148,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914\",\r\n \"name\": \"ps5547/ps2914\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A15.1479223Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"aacde4f6-2cb1-42aa-c50c-e6ede6dafa5a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997\",\r\n \"name\": \"ps9790/ps7997\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A51%3A58.1565266Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"b9ad3fcc-b6af-c84b-f6fa-7ef96e492009\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22521cc9-1d3c-452c-8206-64926adbf3f0" + "6c889e84-9a00-4ae1-bc04-b5cd3a84b6ef" ], "Accept-Language": [ "en-US" @@ -2184,13 +2184,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A45%3A49.9327139Z'\"" + "W/\"datetime'2020-11-06T15%3A52%3A33.8213634Z'\"" ], "x-ms-request-id": [ - "71b32d7c-9364-4801-8f17-8eb4819e3b02" + "78b5a5c3-0900-49c9-951f-104789cebf81" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/0f926aae-d02c-4441-b347-af9f6ca78d75?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2205,13 +2205,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "b03c8e99-90fd-4089-8e67-0cf90917df1d" + "31ec2223-34e0-43bd-87cc-4c92409d22d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194551Z:b03c8e99-90fd-4089-8e67-0cf90917df1d" + "FRANCESOUTH:20201106T155234Z:31ec2223-34e0-43bd-87cc-4c92409d22d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2220,7 +2220,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:45:50 GMT" + "Fri, 06 Nov 2020 15:52:34 GMT" ], "Content-Length": [ "457" @@ -2232,12 +2232,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\",\r\n \"name\": \"ps7560/ps3683\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A49.9327139Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769\",\r\n \"name\": \"ps6228/ps6769\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A52%3A33.8213634Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9mNzE0Mzg3YS1lM2M5LTRjZDgtYjVhNC00NzM4NWFhY2NiOTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/0f926aae-d02c-4441-b347-af9f6ca78d75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8wZjkyNmFhZS1kMDJjLTQ0NDEtYjM0Ny1hZjlmNmNhNzhkNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2256,7 +2256,7 @@ "no-cache" ], "x-ms-request-id": [ - "af5e020b-763b-435d-859c-789b3b0f1c2c" + "0f00eb9b-fba1-47d6-98c2-ce713f360b44" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2271,13 +2271,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11974" ], "x-ms-correlation-request-id": [ - "e2999549-f3f3-485a-945b-403e51cafb1c" + "2846b90a-48e1-4dfc-9f21-60cc3f9bbdc0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194621Z:e2999549-f3f3-485a-945b-403e51cafb1c" + "FRANCESOUTH:20201106T155305Z:2846b90a-48e1-4dfc-9f21-60cc3f9bbdc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2286,7 +2286,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:46:20 GMT" + "Fri, 06 Nov 2020 15:53:05 GMT" ], "Content-Length": [ "509" @@ -2298,12 +2298,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/f714387a-e3c9-4cd8-b5a4-47385aaccb96\",\r\n \"name\": \"f714387a-e3c9-4cd8-b5a4-47385aaccb96\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:45:49.8901122Z\",\r\n \"endTime\": \"2020-10-23T19:45:50.1870637Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/0f926aae-d02c-4441-b347-af9f6ca78d75\",\r\n \"name\": \"0f926aae-d02c-4441-b347-af9f6ca78d75\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:52:33.7632484Z\",\r\n \"endTime\": \"2020-11-06T15:52:34.1058728Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2322,10 +2322,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A45%3A50.1918978Z'\"" + "W/\"datetime'2020-11-06T15%3A52%3A34.1005641Z'\"" ], "x-ms-request-id": [ - "f948f966-2612-4679-b56e-a00cd5da818f" + "c0acde8f-7a4c-40d5-8ded-0c70e8f1da0d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2340,13 +2340,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11973" ], "x-ms-correlation-request-id": [ - "8c474eeb-989f-47c5-b128-2f2622e79f28" + "e5a748ee-4255-420e-bb6d-ba473815a178" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194621Z:8c474eeb-989f-47c5-b128-2f2622e79f28" + "FRANCESOUTH:20201106T155305Z:e5a748ee-4255-420e-bb6d-ba473815a178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,7 +2355,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:46:21 GMT" + "Fri, 06 Nov 2020 15:53:05 GMT" ], "Content-Length": [ "527" @@ -2367,17 +2367,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683\",\r\n \"name\": \"ps7560/ps3683\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A45%3A50.1918978Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769\",\r\n \"name\": \"ps6228/ps6769\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A52%3A34.1005641Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"poolId\": \"7a07ed89-b122-415a-06aa-2a39183eee8e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00fd2395-3811-4768-893a-061aea61d6fa" + "09069ad2-070e-4483-8c21-bb4fbc8af8b7" ], "Accept-Language": [ "en-US" @@ -2403,13 +2403,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A46%3A25.3652557Z'\"" + "W/\"datetime'2020-11-06T15%3A53%3A09.0936463Z'\"" ], "x-ms-request-id": [ - "7a6aaee0-a747-450e-ad87-eae61667d9d4" + "797219fc-8833-4641-8412-868c8c563464" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2424,13 +2424,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "142e4f45-adfc-4693-a176-2b90cb51021a" + "650ba4c7-552d-4071-88a9-3f26ebf658f5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194626Z:142e4f45-adfc-4693-a176-2b90cb51021a" + "FRANCESOUTH:20201106T155310Z:650ba4c7-552d-4071-88a9-3f26ebf658f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2439,7 +2439,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:46:25 GMT" + "Fri, 06 Nov 2020 15:53:10 GMT" ], "Content-Length": [ "681" @@ -2451,12 +2451,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A46%3A25.3652557Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A53%3A09.0936463Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,7 +2475,7 @@ "no-cache" ], "x-ms-request-id": [ - "2aae31a0-09ee-4afd-9210-3229af80bc36" + "c90b89be-24e6-4f9e-be7a-09bccae26cdc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2490,13 +2490,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11972" ], "x-ms-correlation-request-id": [ - "22e973ed-76d5-4cfa-9549-5993622bcf38" + "7b1090c0-eaec-49ba-9472-2b07da40aae7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194656Z:22e973ed-76d5-4cfa-9549-5993622bcf38" + "FRANCESOUTH:20201106T155340Z:7b1090c0-eaec-49ba-9472-2b07da40aae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,7 +2505,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:46:55 GMT" + "Fri, 06 Nov 2020 15:53:40 GMT" ], "Content-Length": [ "513" @@ -2517,12 +2517,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2541,7 +2541,7 @@ "no-cache" ], "x-ms-request-id": [ - "afeaed35-3011-483c-83bc-50af0002a458" + "32cb16ee-cbc7-4213-ab32-f99ed1eae7a5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2556,13 +2556,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11971" ], "x-ms-correlation-request-id": [ - "2f19dd86-9e81-48d6-b44f-1361fe0ce31a" + "d25298b5-9ec8-48bc-a227-a3016766d1d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194726Z:2f19dd86-9e81-48d6-b44f-1361fe0ce31a" + "FRANCESOUTH:20201106T155410Z:d25298b5-9ec8-48bc-a227-a3016766d1d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,7 +2571,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:47:26 GMT" + "Fri, 06 Nov 2020 15:54:10 GMT" ], "Content-Length": [ "513" @@ -2583,12 +2583,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2607,7 +2607,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ae0428e-323a-4eb7-9f8e-a4b40ac17955" + "b902452b-8b6e-4665-ad2a-390f57ff2d95" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2622,13 +2622,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11970" ], "x-ms-correlation-request-id": [ - "875c19bd-f362-49aa-b63d-1c4fdafef87d" + "f2502c12-c20e-491b-bec9-236bad925fb4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194757Z:875c19bd-f362-49aa-b63d-1c4fdafef87d" + "FRANCESOUTH:20201106T155441Z:f2502c12-c20e-491b-bec9-236bad925fb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2637,7 +2637,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:47:56 GMT" + "Fri, 06 Nov 2020 15:54:40 GMT" ], "Content-Length": [ "513" @@ -2649,12 +2649,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2673,7 +2673,7 @@ "no-cache" ], "x-ms-request-id": [ - "a8292b3f-6228-4dd6-bac9-c9078422c624" + "71f5272e-455a-4f64-b00a-ebb575feab03" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2688,13 +2688,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11969" ], "x-ms-correlation-request-id": [ - "e6846b86-b6c2-4002-b6e3-98ccefa8c019" + "78044213-ff9f-47eb-b08c-4922f302a095" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194827Z:e6846b86-b6c2-4002-b6e3-98ccefa8c019" + "FRANCESOUTH:20201106T155511Z:78044213-ff9f-47eb-b08c-4922f302a095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2703,7 +2703,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:48:26 GMT" + "Fri, 06 Nov 2020 15:55:10 GMT" ], "Content-Length": [ "513" @@ -2715,12 +2715,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2739,7 +2739,7 @@ "no-cache" ], "x-ms-request-id": [ - "e8e4d15b-61ef-4119-9406-aeade491a5c4" + "20a1f4cb-6705-4b8d-873d-41179f346a22" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2747,20 +2747,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], "x-ms-correlation-request-id": [ - "c28ab928-e97d-4587-939a-ac420066a477" + "6ea0e2eb-ebc8-4fc8-8854-a4369629730e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194857Z:c28ab928-e97d-4587-939a-ac420066a477" + "FRANCESOUTH:20201106T155541Z:6ea0e2eb-ebc8-4fc8-8854-a4369629730e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,7 +2769,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:48:57 GMT" + "Fri, 06 Nov 2020 15:55:40 GMT" ], "Content-Length": [ "513" @@ -2781,12 +2781,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,7 +2805,7 @@ "no-cache" ], "x-ms-request-id": [ - "df0787bc-cd34-4cbb-a4e4-8ad23aab33d3" + "1cea876c-ce26-478c-87c1-6f9bf824151e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2820,13 +2820,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11967" ], "x-ms-correlation-request-id": [ - "8eeb4d90-c3c1-48a0-b5b7-30720918cfc4" + "9c07017a-4ddf-47b1-91fa-1e556d43027c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194927Z:8eeb4d90-c3c1-48a0-b5b7-30720918cfc4" + "FRANCESOUTH:20201106T155612Z:9c07017a-4ddf-47b1-91fa-1e556d43027c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2835,7 +2835,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:49:27 GMT" + "Fri, 06 Nov 2020 15:56:12 GMT" ], "Content-Length": [ "513" @@ -2847,12 +2847,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDMxNTdiZWUtZTllMy00Y2E1LThmZDgtYWFiMzhiOTY3MzgzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2871,7 +2871,7 @@ "no-cache" ], "x-ms-request-id": [ - "ca953f7d-7b94-403a-9f89-191157adba95" + "89ce71ee-f378-4f6c-a184-117e52f60417" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2879,20 +2879,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], "x-ms-correlation-request-id": [ - "846f95c5-b2b6-4525-b008-783e515cfd10" + "e8c92ef2-e721-44bb-a780-d7e1098e625e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194958Z:846f95c5-b2b6-4525-b008-783e515cfd10" + "FRANCESOUTH:20201106T155643Z:e8c92ef2-e721-44bb-a780-d7e1098e625e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,10 +2901,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:49:57 GMT" + "Fri, 06 Nov 2020 15:56:42 GMT" ], "Content-Length": [ - "524" + "523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2913,12 +2913,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"name\": \"03157bee-e9e3-4ca5-8fd8-aab38b967383\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:46:25.303822Z\",\r\n \"endTime\": \"2020-10-23T19:49:38.7824944Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"name\": \"f9ff82d3-9af7-451e-bfab-b44fbf49d8a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:53:09.026423Z\",\r\n \"endTime\": \"2020-11-06T15:56:28.910928Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2937,10 +2937,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + "W/\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\"" ], "x-ms-request-id": [ - "22d43afd-7f7d-4ab6-84cf-93d7bfd1fd3b" + "62c42744-a5c5-4a7b-bfc0-b8b70e6e2c60" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2955,13 +2955,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11965" ], "x-ms-correlation-request-id": [ - "442ea5ca-076a-4741-9840-7d64cd4c35dc" + "8b366170-e6df-46e1-b776-8a61dc83c8dd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194959Z:442ea5ca-076a-4741-9840-7d64cd4c35dc" + "FRANCESOUTH:20201106T155643Z:8b366170-e6df-46e1-b776-8a61dc83c8dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2970,7 +2970,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:49:58 GMT" + "Fri, 06 Nov 2020 15:56:43 GMT" ], "Content-Length": [ "1501" @@ -2982,17 +2982,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd52cc7f-2de1-4a19-b2ec-4fb183401373" + "81fee53a-b983-4d3a-9738-accbe5a762a2" ], "Accept-Language": [ "en-US" @@ -3012,10 +3012,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + "W/\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\"" ], "x-ms-request-id": [ - "0283c625-d1b2-4ce3-b1ac-f4f28545b5b0" + "02aef142-9ffd-4c0c-975a-c85dd84f24ab" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3030,13 +3030,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11964" ], "x-ms-correlation-request-id": [ - "b95ae56d-f279-4def-85fc-5eed042839b1" + "2baf9d2d-febd-4620-9d30-1552be22f2b3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T194959Z:b95ae56d-f279-4def-85fc-5eed042839b1" + "FRANCESOUTH:20201106T155643Z:2baf9d2d-febd-4620-9d30-1552be22f2b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3045,7 +3045,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:49:59 GMT" + "Fri, 06 Nov 2020 15:56:43 GMT" ], "Content-Length": [ "1501" @@ -3057,17 +3057,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aaa5be4-691a-4bef-b038-71914a5aab4c" + "8d188996-0d7e-4140-99cf-1d3d1a76b6b4" ], "Accept-Language": [ "en-US" @@ -3087,10 +3087,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\"" + "W/\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\"" ], "x-ms-request-id": [ - "d596c81a-695a-46c4-9615-405a7d8d3236" + "c217abce-f306-4f4a-9ca8-0679f311266f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3105,13 +3105,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11957" ], "x-ms-correlation-request-id": [ - "9c05fd1c-91aa-4f25-8b63-253a5366065a" + "fcbeb665-877c-48f1-be2e-445196b67206" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195408Z:9c05fd1c-91aa-4f25-8b63-253a5366065a" + "FRANCESOUTH:20201106T160153Z:fcbeb665-877c-48f1-be2e-445196b67206" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3120,7 +3120,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:07 GMT" + "Fri, 06 Nov 2020 16:01:53 GMT" ], "Content-Length": [ "1501" @@ -3132,17 +3132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A49%3A38.7807946Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A56%3A28.9136311Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7d265c7-85d3-4bb5-b867-279c37be73e7" + "4dd7caa7-a7c8-47fa-8ad6-08da62996e8e" ], "Accept-Language": [ "en-US" @@ -3162,10 +3162,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "066d0808-2cc6-402d-bb46-b27173160120" + "8986d727-3296-485e-93f9-2c04b3c3eb6c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3180,13 +3180,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11952" ], "x-ms-correlation-request-id": [ - "4471bd3d-0026-43ee-ae82-31a47910cc16" + "fe64faf9-2f35-47e4-9e58-414f3027e8d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195513Z:4471bd3d-0026-43ee-ae82-31a47910cc16" + "FRANCESOUTH:20201106T160327Z:fe64faf9-2f35-47e4-9e58-414f3027e8d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3195,7 +3195,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:13 GMT" + "Fri, 06 Nov 2020 16:03:27 GMT" ], "Content-Length": [ "1773" @@ -3207,17 +3207,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05193a22-a345-467f-b5ba-35eb0a2d9994" + "9d13a01e-9608-477f-a208-98f0463cb654" ], "Accept-Language": [ "en-US" @@ -3237,10 +3237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "809da387-34e3-46de-ac6d-55ccaaa9d254" + "3e9e97e2-86b3-4dde-a5d1-c280b84f936c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3255,13 +3255,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11950" ], "x-ms-correlation-request-id": [ - "cebfd4ea-778f-476e-8f1a-48d1c10c33a9" + "c930f63a-ae1a-4b93-8dba-aa07a627450b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195808Z:cebfd4ea-778f-476e-8f1a-48d1c10c33a9" + "FRANCESOUTH:20201106T160329Z:c930f63a-ae1a-4b93-8dba-aa07a627450b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3270,7 +3270,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:08 GMT" + "Fri, 06 Nov 2020 16:03:29 GMT" ], "Content-Length": [ "1773" @@ -3282,17 +3282,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A03.7747854Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endpointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9ff2f1-8861-4ecd-955f-0be57c3b3ffa" + "bbea36c9-e062-4fdf-ace2-c56121316532" ], "Accept-Language": [ "en-US" @@ -3302,12 +3302,6 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "768" ] }, "ResponseHeaders": { @@ -3318,13 +3312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A50%3A03.1806294Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "a198bf7f-5a43-421f-a878-273273d5dc07" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01" + "a9e6234e-9da3-4cc9-8c54-6f57a1516343" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3338,14 +3329,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" ], "x-ms-correlation-request-id": [ - "47c0c279-0d8f-4a89-901c-d1df26483b92" + "fbccf4ba-d4f2-48fb-9318-93b94b31de99" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195004Z:47c0c279-0d8f-4a89-901c-d1df26483b92" + "FRANCESOUTH:20201106T160331Z:fbccf4ba-d4f2-48fb-9318-93b94b31de99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3354,10 +3345,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:50:03 GMT" + "Fri, 06 Nov 2020 16:03:30 GMT" ], "Content-Length": [ - "988" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3366,15 +3357,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A50%3A03.1806294Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "97e70d13-f6f9-4f6a-9e05-f348d945b86f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3389,8 +3386,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "9ef4b5c8-c7ba-4287-b509-503bc8204b0e" + "4cbd7318-707b-4bbe-81f1-4a6efbc6c900" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3405,13 +3405,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11946" ], "x-ms-correlation-request-id": [ - "2759ff32-18a7-4b35-871e-f63b1e86e4ab" + "99ec9807-c33d-48fd-b6a4-ab506e1304b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195034Z:2759ff32-18a7-4b35-871e-f63b1e86e4ab" + "FRANCESOUTH:20201106T160332Z:99ec9807-c33d-48fd-b6a4-ab506e1304b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,10 +3420,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:50:33 GMT" + "Fri, 06 Nov 2020 16:03:32 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3432,15 +3432,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d3578950-efdb-4411-9897-e3e460faa755" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3455,8 +3461,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "7584391e-6f29-472c-8cf9-b9366e055c6b" + "13baa45a-079a-420a-b77c-5dffb6640805" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3471,13 +3480,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11944" ], "x-ms-correlation-request-id": [ - "696ee1b2-68ef-4497-a448-373919980071" + "83841ea6-4db4-45eb-8534-95040d327e60" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195104Z:696ee1b2-68ef-4497-a448-373919980071" + "FRANCESOUTH:20201106T160334Z:83841ea6-4db4-45eb-8534-95040d327e60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3486,10 +3495,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:51:04 GMT" + "Fri, 06 Nov 2020 16:03:33 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3498,15 +3507,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a07e599f-0d1f-4aff-837b-d3ecb7f5afe7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3521,8 +3536,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "c362ed40-5598-45c7-89c6-37b0d31ff786" + "00e79916-8f9e-4ba7-922a-fa6f95e257a0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3537,13 +3555,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11942" ], "x-ms-correlation-request-id": [ - "1804feae-ae2d-4f0d-b9df-930005b28fe0" + "0f29dbb3-7dc3-49a3-8aa8-146c0df1b1f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195135Z:1804feae-ae2d-4f0d-b9df-930005b28fe0" + "FRANCESOUTH:20201106T160336Z:0f29dbb3-7dc3-49a3-8aa8-146c0df1b1f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3552,10 +3570,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:51:34 GMT" + "Fri, 06 Nov 2020 16:03:35 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3564,15 +3582,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "602499c7-0501-449b-83a5-b4de2f9aa394" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3587,8 +3611,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "f3acee7d-4b74-4581-88e1-4a19aad03fd4" + "aae67529-7e7f-4b7b-855d-73da5250ecd7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3603,13 +3630,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11940" ], "x-ms-correlation-request-id": [ - "594d8367-e00d-48b6-a7a2-9c26f085705a" + "ddb55a9c-8478-4c1b-a2e2-0cebc16168a7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195205Z:594d8367-e00d-48b6-a7a2-9c26f085705a" + "FRANCESOUTH:20201106T160337Z:ddb55a9c-8478-4c1b-a2e2-0cebc16168a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3618,10 +3645,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:52:04 GMT" + "Fri, 06 Nov 2020 16:03:37 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3630,15 +3657,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a0d915da-2be0-4c7d-8f86-f1271aca1b02" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3653,8 +3686,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "3f405d6b-5996-4ad8-ba27-05562030260c" + "6b52e700-e3b0-44d8-9e08-d1a6151a79bb" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3669,13 +3705,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11938" ], "x-ms-correlation-request-id": [ - "66a99591-e83a-4585-9435-83398879d6ef" + "1c5fcf5e-cec4-4c2b-8157-13af68ccf167" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195235Z:66a99591-e83a-4585-9435-83398879d6ef" + "FRANCESOUTH:20201106T160339Z:1c5fcf5e-cec4-4c2b-8157-13af68ccf167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3684,10 +3720,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:52:34 GMT" + "Fri, 06 Nov 2020 16:03:38 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3696,15 +3732,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9798ad1e-f2e8-473b-9381-5762cffa3822" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3719,8 +3761,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "6fb553d2-eae4-40b8-9552-091c27c8608f" + "26fa1979-dcea-4014-bc3a-b3406c7b50d6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3735,13 +3780,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11936" ], "x-ms-correlation-request-id": [ - "93f0665a-5098-4990-88c5-c94d47dd9ec2" + "6d588612-1409-415f-ad05-a04c45f842a4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195305Z:93f0665a-5098-4990-88c5-c94d47dd9ec2" + "FRANCESOUTH:20201106T160341Z:6d588612-1409-415f-ad05-a04c45f842a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3750,10 +3795,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:53:05 GMT" + "Fri, 06 Nov 2020 16:03:40 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3762,15 +3807,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87c62afe-1448-4912-a2f6-dcd08f1be9d1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3785,8 +3836,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "106fe4ec-5d3a-4a60-9731-c3f1c47b8fee" + "05f031a3-a96d-44a6-8d7d-37d51f92e21a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3801,13 +3855,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11934" ], "x-ms-correlation-request-id": [ - "77239b45-9155-4e93-b8c9-3c8aaecae5a4" + "4690b070-9442-4842-8932-1652f403355d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195335Z:77239b45-9155-4e93-b8c9-3c8aaecae5a4" + "FRANCESOUTH:20201106T160342Z:4690b070-9442-4842-8932-1652f403355d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3816,10 +3870,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:53:35 GMT" + "Fri, 06 Nov 2020 16:03:41 GMT" ], "Content-Length": [ - "513" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3828,15 +3882,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9hZTAyM2EwMi0zYTc4LTQ4YWItOTdmZi1lNjdjYTkxMWQ3OTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fc56a091-855b-44ad-b18c-755fe641f99a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3851,8 +3911,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "73f9d9fb-c910-4871-8dcc-05756de21a1a" + "af309cd7-3743-4ca8-864e-3e6126009c61" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3867,13 +3930,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11932" ], "x-ms-correlation-request-id": [ - "b0fc03b5-aadd-4b96-9edb-864d03f90b86" + "ebb13f38-af31-4fd0-915e-bf9357a704eb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195406Z:b0fc03b5-aadd-4b96-9edb-864d03f90b86" + "FRANCESOUTH:20201106T160344Z:ebb13f38-af31-4fd0-915e-bf9357a704eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3882,10 +3945,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:05 GMT" + "Fri, 06 Nov 2020 16:03:43 GMT" ], "Content-Length": [ - "523" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3894,15 +3957,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"name\": \"ae023a02-3a78-48ab-97ff-e67ca911d798\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:50:03.1380768Z\",\r\n \"endTime\": \"2020-10-23T19:53:56.870084Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "de878a16-2361-463b-912c-fee7a9eddcc4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -3918,10 +3987,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "7e958859-88e2-4d7e-93d1-e4e866a89bc7" + "218fadad-ef03-4c98-8880-9db13db685b3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3936,13 +4005,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11930" ], "x-ms-correlation-request-id": [ - "e77b385c-5a36-4614-ad28-d5c74b271a0e" + "91d39210-9eb4-40ed-b274-a5482f5fa313" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195406Z:e77b385c-5a36-4614-ad28-d5c74b271a0e" + "FRANCESOUTH:20201106T160345Z:91d39210-9eb4-40ed-b274-a5482f5fa313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3951,10 +4020,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:06 GMT" + "Fri, 06 Nov 2020 16:03:45 GMT" ], "Content-Length": [ - "1774" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3963,17 +4032,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5861019e-3fbd-4d9f-8c41-cdca8ff9f3ca" + "785d1787-81c7-4a5b-be19-3e3fd37ef032" ], "Accept-Language": [ "en-US" @@ -3993,10 +4062,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "a9a32c56-2ecd-45ae-8324-34cbd3993059" + "c8d57d6a-0860-408f-8ff0-3b1e67388ab4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4011,13 +4080,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11928" ], "x-ms-correlation-request-id": [ - "eeda8b2f-c8fb-428c-87f3-224a299e99e0" + "2aad85d6-ce20-4136-a7ad-e88b3de35c29" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195406Z:eeda8b2f-c8fb-428c-87f3-224a299e99e0" + "FRANCESOUTH:20201106T160347Z:2aad85d6-ce20-4136-a7ad-e88b3de35c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4026,10 +4095,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:06 GMT" + "Fri, 06 Nov 2020 16:03:46 GMT" ], "Content-Length": [ - "1774" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4038,17 +4107,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2649477-eca5-4091-a21e-4213e2aaf48c" + "c030222c-961a-45de-ace3-0ce4f338c430" ], "Accept-Language": [ "en-US" @@ -4068,10 +4137,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A53%3A56.871805Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "b6188f39-4292-42cc-8b5b-f4fc357757b5" + "b7f44bad-f815-43bd-a06c-141f145e920a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4086,13 +4155,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11926" ], "x-ms-correlation-request-id": [ - "0151450a-74fe-488b-8c32-bc5e5d125570" + "9597269d-3494-4ad6-a29c-e758215384aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195408Z:0151450a-74fe-488b-8c32-bc5e5d125570" + "FRANCESOUTH:20201106T160349Z:9597269d-3494-4ad6-a29c-e758215384aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4101,10 +4170,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:08 GMT" + "Fri, 06 Nov 2020 16:03:48 GMT" ], "Content-Length": [ - "1774" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4113,17 +4182,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A53%3A56.871805Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a50272a5-e6e8-4998-99b3-8fce72482aec" + "cad82174-a4ae-49de-bb69-b538605bd597" ], "Accept-Language": [ "en-US" @@ -4143,10 +4212,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A55%3A01.5580064Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "d45ae554-4089-49f7-83ac-55a9ef757ac5" + "2239cb35-a5ed-42ac-a645-5a79423b9364" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4161,13 +4230,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11924" ], "x-ms-correlation-request-id": [ - "51a77a53-3c27-4965-a572-eef5123424e9" + "bf5e622a-678f-4be1-a39a-85d6a1b06cf7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195513Z:51a77a53-3c27-4965-a572-eef5123424e9" + "FRANCESOUTH:20201106T160350Z:bf5e622a-678f-4be1-a39a-85d6a1b06cf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4176,10 +4245,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:13 GMT" + "Fri, 06 Nov 2020 16:03:49 GMT" ], "Content-Length": [ - "1861" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4188,17 +4257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A55%3A01.5580064Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eac8620-893b-45ef-bb24-f77beea30ab1" + "89c9bc2e-e8cc-44d9-8d91-9a90c2dbec17" ], "Accept-Language": [ "en-US" @@ -4218,10 +4287,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-10-23T19%3A57%3A12.679654Z'\"" + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], "x-ms-request-id": [ - "9b6e26f0-a0c2-4752-a2a7-b1d8e0fda1fa" + "7c7acd4a-1b67-421d-9ad0-6ee95202e580" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4236,13 +4305,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11922" ], "x-ms-correlation-request-id": [ - "90ead0a4-67db-4176-a72e-cb550bde5c80" + "e34e68df-5ebf-4777-bba5-0b971886a65b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195808Z:90ead0a4-67db-4176-a72e-cb550bde5c80" + "FRANCESOUTH:20201106T160352Z:e34e68df-5ebf-4777-bba5-0b971886a65b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4251,10 +4320,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:08 GMT" + "Fri, 06 Nov 2020 16:03:51 GMT" ], "Content-Length": [ - "1846" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4263,17 +4332,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A57%3A12.679654Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085/authorizeReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDk5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU1NDcvY2FwYWNpdHlQb29scy9wczI5MTQvdm9sdW1lcy9wczMwODUvYXV0aG9yaXplUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n}", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7876f482-bfe6-4565-bd52-f2c17c4983e7" + "b5f1a864-b05d-4a05-8794-1dfb40c92393" ], "Accept-Language": [ "en-US" @@ -4283,12 +4352,6 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "194" ] }, "ResponseHeaders": { @@ -4298,11 +4361,11 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01&operationResultResponseType=Location" + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01" + "x-ms-request-id": [ + "d593e699-b512-4325-a314-6c7eeee53485" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4316,17 +4379,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" ], "x-ms-correlation-request-id": [ - "a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + "7b3f6ec9-a367-4755-b16f-e08e945bbbc6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195442Z:a3d57bbe-813f-4ef4-ae8c-c8aac44e9168" + "FRANCESOUTH:20201106T160354Z:7b3f6ec9-a367-4755-b16f-e08e945bbbc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4335,24 +4395,33 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:54:41 GMT" + "Fri, 06 Nov 2020 16:03:53 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY0NTAwYTgtMmQ4Ny00YWU4LWE4ODYtZGU1NTQ2MWNkYTk1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50459244-7931-43f9-85dc-f63e4cd1cecf" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -4367,8 +4436,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "f57dc02d-2d3b-4962-8cce-3223ca6fbe1c" + "545e97bf-b198-46e7-9d86-d162efe893e7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4383,13 +4455,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11918" ], "x-ms-correlation-request-id": [ - "41b527fe-8071-4a62-a06f-69bbf0c047cc" + "ed7bc1fb-8d87-49f1-b3c1-15936a22aa1f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195512Z:41b527fe-8071-4a62-a06f-69bbf0c047cc" + "FRANCESOUTH:20201106T160355Z:ed7bc1fb-8d87-49f1-b3c1-15936a22aa1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4398,10 +4470,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:12 GMT" + "Fri, 06 Nov 2020 16:03:54 GMT" ], "Content-Length": [ - "525" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4410,15 +4482,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95\",\r\n \"name\": \"0f4500a8-2d87-4ae8-a886-de55461cda95\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:54:41.8746563Z\",\r\n \"endTime\": \"2020-10-23T19:55:03.7678635Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/0f4500a8-2d87-4ae8-a886-de55461cda95?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGY0NTAwYTgtMmQ4Ny00YWU4LWE4ODYtZGU1NTQ2MWNkYTk1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d3e16c1a-cb4b-4105-b567-8c6c9effa5b7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -4433,8 +4511,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "3b43fff3-ffca-43ac-afd1-4070480a6908" + "97ae40fc-4230-4eb7-913d-bea9ed8303e6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4449,13 +4530,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11916" ], "x-ms-correlation-request-id": [ - "b0d16ee7-d2c5-4b47-950a-672c43764a97" + "751e2c63-6f3e-4441-95bc-db2ec2c3fd06" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195512Z:b0d16ee7-d2c5-4b47-950a-672c43764a97" + "FRANCESOUTH:20201106T160357Z:751e2c63-6f3e-4441-95bc-db2ec2c3fd06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4464,10 +4545,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:12 GMT" + "Fri, 06 Nov 2020 16:03:56 GMT" ], "Content-Length": [ - "2259" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4476,17 +4557,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"name\": \"ps5547/ps2914/ps3085\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A54%3A42.0208094Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"replicationStatus\": \"\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"name\": \"ps3085\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps3085\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_240a443b\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.Network/virtualNetworks/ps4997-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"poolId\": \"aacde4f6-2cb1-42aa-c50c-e6ede6dafa5a\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"fileSystemId\": \"18922aa7-d8bf-1ea7-d6b9-67bcdfc14bbf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce4b950a-5ed4-4fee-b031-c036d81168c2" + "a6a44e0c-420a-49c2-8df6-ac9ee57193e5" ], "Accept-Language": [ "en-US" @@ -4505,8 +4586,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "741eca79-3aae-457b-bd04-2e942aa6dda3" + "23908bf3-4874-4b9c-b608-9f11e08a5781" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4521,13 +4605,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11914" ], "x-ms-correlation-request-id": [ - "0eb50e0c-d40d-45e4-9e00-7c5aab671dbd" + "ffddb49f-e0e8-4a97-8241-17f2fa7f2876" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195515Z:0eb50e0c-d40d-45e4-9e00-7c5aab671dbd" + "FRANCESOUTH:20201106T160358Z:ffddb49f-e0e8-4a97-8241-17f2fa7f2876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4536,10 +4620,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:15 GMT" + "Fri, 06 Nov 2020 16:03:57 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4548,17 +4632,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "575af77d-4547-4bb4-ba47-5e7a096b982f" + "ee892c7c-d57f-4fb5-b05f-80a2103c717a" ], "Accept-Language": [ "en-US" @@ -4577,8 +4661,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "f0063f12-1d55-4bae-94ef-eb4f6aac6dad" + "ef87602e-c017-48ba-9462-17864663f650" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4593,13 +4680,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11912" ], "x-ms-correlation-request-id": [ - "ae71da60-aeae-4678-83cc-e1a69512d373" + "ea8acea4-e6dc-4d15-833d-f4fdf313b04d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195516Z:ae71da60-aeae-4678-83cc-e1a69512d373" + "FRANCESOUTH:20201106T160400Z:ea8acea4-e6dc-4d15-833d-f4fdf313b04d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4608,10 +4695,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:16 GMT" + "Fri, 06 Nov 2020 16:04:00 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4620,17 +4707,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02d0535b-9b6b-433e-81cd-29e24248c33b" + "5f9867cb-9ded-4cf9-a04f-1661ed7ab5b6" ], "Accept-Language": [ "en-US" @@ -4649,8 +4736,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "e39bdf57-6b08-480e-8d4b-700dd9349d5f" + "caa733dc-4c36-4307-9f55-bf395a19bfa6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4665,13 +4755,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11910" ], "x-ms-correlation-request-id": [ - "535440f9-103b-4d13-9ad9-a0f576db31b4" + "31387c9a-7ee7-49a7-a04a-17771f68a245" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195518Z:535440f9-103b-4d13-9ad9-a0f576db31b4" + "FRANCESOUTH:20201106T160402Z:31387c9a-7ee7-49a7-a04a-17771f68a245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4680,10 +4770,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:17 GMT" + "Fri, 06 Nov 2020 16:04:02 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4692,17 +4782,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d495c1c-0bea-42e5-9324-e8312818acea" + "81a64f40-9d21-4941-9d8b-ffd3a662716d" ], "Accept-Language": [ "en-US" @@ -4721,8 +4811,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "5e63c637-40e6-4948-9bf7-298b05b2157f" + "a45f1f94-2698-4ff9-8eeb-319934d1fe75" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4737,13 +4830,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11908" ], "x-ms-correlation-request-id": [ - "e3195f03-5c4d-481b-bf56-fb3ed8eed88b" + "1727b175-6c08-4d94-b4f3-f6ee46e831c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195519Z:e3195f03-5c4d-481b-bf56-fb3ed8eed88b" + "FRANCESOUTH:20201106T160403Z:1727b175-6c08-4d94-b4f3-f6ee46e831c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4752,10 +4845,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:19 GMT" + "Fri, 06 Nov 2020 16:04:03 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4764,17 +4857,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b389aef-b0ae-4bd2-a074-694d346cb8c7" + "f246a83f-9007-4d7a-8bc7-6fcdb580eb6b" ], "Accept-Language": [ "en-US" @@ -4793,8 +4886,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "9d3585cc-94ed-4e5e-b2ca-2c956381598b" + "7bb5fa35-c391-4404-8690-02456a83c59d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4809,13 +4905,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11906" ], "x-ms-correlation-request-id": [ - "a891836f-b241-4451-8977-a55275be156a" + "c3e67d7c-14db-42ec-82f7-8e379ad8c7fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195520Z:a891836f-b241-4451-8977-a55275be156a" + "FRANCESOUTH:20201106T160405Z:c3e67d7c-14db-42ec-82f7-8e379ad8c7fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4824,10 +4920,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:20 GMT" + "Fri, 06 Nov 2020 16:04:05 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4836,17 +4932,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6237167-65fa-46ef-bea5-13a4166e3948" + "77897659-6ed5-4dc2-9552-2ab79c0a3174" ], "Accept-Language": [ "en-US" @@ -4865,8 +4961,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "44e38dd9-71fb-48a7-af01-fca8aec31afb" + "1b6734cd-0c95-4d32-b78f-3d41b744e58f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4881,13 +4980,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11904" ], "x-ms-correlation-request-id": [ - "1d7c9042-7b0e-4e46-a290-7279f79e6dc8" + "54cd4573-d250-474d-83c0-b1db32ceeeba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195522Z:1d7c9042-7b0e-4e46-a290-7279f79e6dc8" + "FRANCESOUTH:20201106T160407Z:54cd4573-d250-474d-83c0-b1db32ceeeba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4896,10 +4995,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:21 GMT" + "Fri, 06 Nov 2020 16:04:07 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4908,17 +5007,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc3c9751-7433-4f8f-ad9b-d9785ee5beb9" + "d0294ca6-8d75-490d-bf81-7f0ba8c3493d" ], "Accept-Language": [ "en-US" @@ -4937,8 +5036,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "6cbfe6a9-500a-4c77-8b5a-e92aa82a2696" + "bf40f58e-b1e3-47ba-b4a3-f5747a9d9eca" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4953,13 +5055,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11902" ], "x-ms-correlation-request-id": [ - "b377b38e-60dd-44e2-9e1e-d7ff256eca79" + "b37e23c1-aaf0-4d8c-bc16-2e7f553039a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195523Z:b377b38e-60dd-44e2-9e1e-d7ff256eca79" + "FRANCESOUTH:20201106T160408Z:b37e23c1-aaf0-4d8c-bc16-2e7f553039a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4968,10 +5070,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:23 GMT" + "Fri, 06 Nov 2020 16:04:08 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4980,17 +5082,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a461890a-3d03-4589-bdfe-97d37e274efc" + "72fdcf72-2a54-45c9-a69a-125684438c59" ], "Accept-Language": [ "en-US" @@ -5009,8 +5111,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "0ea295b7-ddbc-4bde-b18c-1e950899a724" + "d0c3a7b6-da73-47b8-9e3c-834bfa4e5088" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5025,13 +5130,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11900" ], "x-ms-correlation-request-id": [ - "763dbcc3-4ca1-4077-b416-5b36be22fa80" + "dbe4ba7c-0ec2-4b97-9530-418d37dd6de8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195524Z:763dbcc3-4ca1-4077-b416-5b36be22fa80" + "FRANCESOUTH:20201106T160410Z:dbe4ba7c-0ec2-4b97-9530-418d37dd6de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,10 +5145,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:24 GMT" + "Fri, 06 Nov 2020 16:04:10 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5052,17 +5157,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66735363-e84f-4443-8b61-e66dbcc6a315" + "cc8b8ea7-80f3-4258-a294-c8a84d1bc2ca" ], "Accept-Language": [ "en-US" @@ -5081,8 +5186,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "f84195e4-ab39-4b59-915d-4fd9a57fddd9" + "7afa11c6-cb0b-4598-afac-421512bbb448" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5097,13 +5205,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11898" ], "x-ms-correlation-request-id": [ - "4f8bec5c-4550-4b19-9bff-cfced1355b6a" + "c410540b-f459-4ebe-bdbc-52ddfe0510d6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195526Z:4f8bec5c-4550-4b19-9bff-cfced1355b6a" + "FRANCESOUTH:20201106T160411Z:c410540b-f459-4ebe-bdbc-52ddfe0510d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5112,10 +5220,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:25 GMT" + "Fri, 06 Nov 2020 16:04:11 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5124,17 +5232,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4b59e66-520c-4e44-b2a9-1bcd9b0e8d53" + "81bc1f9a-4c98-4930-88fa-51e65ab56f1d" ], "Accept-Language": [ "en-US" @@ -5153,8 +5261,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "77cce293-4566-4619-ac94-d412d0812850" + "d7df544e-40cb-42da-bfa4-73df83a3a55d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5169,13 +5280,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11896" ], "x-ms-correlation-request-id": [ - "8b51504b-d57d-4582-a343-a134e78494e3" + "f097d38a-4105-4883-a663-309c380823b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195527Z:8b51504b-d57d-4582-a343-a134e78494e3" + "FRANCESOUTH:20201106T160413Z:f097d38a-4105-4883-a663-309c380823b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5184,10 +5295,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:27 GMT" + "Fri, 06 Nov 2020 16:04:13 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5196,17 +5307,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "332d28d1-4ef4-4a3d-a71d-3e9ea7d575ce" + "23b39ebd-aeae-4808-9d60-97919ea0c3d7" ], "Accept-Language": [ "en-US" @@ -5225,8 +5336,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "4ba9b975-d7f4-40b8-8edb-ec7fdb0b4364" + "ab86899f-57bf-4215-a695-1b3b062a0704" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5241,13 +5355,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11894" ], "x-ms-correlation-request-id": [ - "4b2a4999-61be-4fc8-a810-88f8e639af23" + "73d2574d-a6ae-4915-8dcf-d2bb31f30488" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195528Z:4b2a4999-61be-4fc8-a810-88f8e639af23" + "FRANCESOUTH:20201106T160415Z:73d2574d-a6ae-4915-8dcf-d2bb31f30488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5256,10 +5370,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:28 GMT" + "Fri, 06 Nov 2020 16:04:15 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5268,17 +5382,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c31d9153-b18d-4232-abc5-06d90ad01ac9" + "bf9c6420-9e47-40a0-be8b-d53eb062807d" ], "Accept-Language": [ "en-US" @@ -5297,8 +5411,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "d682f271-e86d-4dc3-b7ed-03efe6e66a41" + "c0dc66c2-6974-46ed-9531-693114620f0f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5313,13 +5430,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11892" ], "x-ms-correlation-request-id": [ - "1b18fba9-f3a4-4795-bd0a-33ffd8cb9ec4" + "0061f3dd-f3c2-47d6-a9ba-a45bea1ba4c7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195530Z:1b18fba9-f3a4-4795-bd0a-33ffd8cb9ec4" + "FRANCESOUTH:20201106T160417Z:0061f3dd-f3c2-47d6-a9ba-a45bea1ba4c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5328,10 +5445,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:29 GMT" + "Fri, 06 Nov 2020 16:04:16 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5340,17 +5457,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f5c3204-a42c-4c82-ab01-f6eb5db8f966" + "bc98401c-a455-48f7-9866-1f626a2cd6c7" ], "Accept-Language": [ "en-US" @@ -5369,8 +5486,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "153f7d55-45ba-4289-90af-ad2d2de7aebe" + "c2940fc5-06e1-4aaf-9061-2b1a4219aaf9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5385,13 +5505,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11890" ], "x-ms-correlation-request-id": [ - "ea34b47e-75b9-425b-b5e8-e26284131380" + "c0e8eedb-eb9d-4380-a1d9-e460ec38500f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195531Z:ea34b47e-75b9-425b-b5e8-e26284131380" + "FRANCESOUTH:20201106T160418Z:c0e8eedb-eb9d-4380-a1d9-e460ec38500f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5400,10 +5520,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:31 GMT" + "Fri, 06 Nov 2020 16:04:18 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5412,17 +5532,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7b229da-bf88-4b45-b5d4-f565083ce3b4" + "c8ffa601-4e88-4c9a-b717-f056e020594d" ], "Accept-Language": [ "en-US" @@ -5441,8 +5561,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "12ad8885-c51e-4317-8e18-97586df911b9" + "23eb260a-e0ce-442f-bdd7-ac2306f44867" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5457,13 +5580,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11888" ], "x-ms-correlation-request-id": [ - "8694b1ca-7884-4516-91dc-fb3507cc37ee" + "476d1c80-3d4b-4912-83c5-e2bb18ba1c50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195532Z:8694b1ca-7884-4516-91dc-fb3507cc37ee" + "FRANCESOUTH:20201106T160420Z:476d1c80-3d4b-4912-83c5-e2bb18ba1c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5472,10 +5595,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:32 GMT" + "Fri, 06 Nov 2020 16:04:20 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5484,17 +5607,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f09d7c6-f579-432e-bab7-1263852d2be1" + "9da5363c-abf1-4f1f-8b14-76bb7e18b64b" ], "Accept-Language": [ "en-US" @@ -5513,8 +5636,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\"" + ], "x-ms-request-id": [ - "6d8161dd-6315-433e-88b0-2eb6494938e4" + "96fb74e3-e8a0-45d4-94cd-b647c8c58d2f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5529,13 +5655,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11807" ], "x-ms-correlation-request-id": [ - "4da66c8c-63d2-4ece-959e-14c887b602b0" + "bd8fe7dd-bc3a-42e6-9fb4-18648a52135c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195534Z:4da66c8c-63d2-4ece-959e-14c887b602b0" + "FRANCESOUTH:20201106T160805Z:bd8fe7dd-bc3a-42e6-9fb4-18648a52135c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5544,10 +5670,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:33 GMT" + "Fri, 06 Nov 2020 16:08:04 GMT" ], "Content-Length": [ - "111" + "1773" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5556,17 +5682,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A07.1415927Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endpointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ef13f11-7c07-4fd5-80e4-70dfe75ba19a" + "52217e58-b5e0-4a69-8b73-21d5212768b6" ], "Accept-Language": [ "en-US" @@ -5576,6 +5702,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "768" ] }, "ResponseHeaders": { @@ -5585,8 +5717,14 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T15%3A56%3A47.9874291Z'\"" + ], "x-ms-request-id": [ - "7941dcd9-b4be-42b1-b2f6-6aef9c3b73e2" + "7d7cdbba-5648-42f5-bcd1-c02f0aa8a65b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5600,14 +5738,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" ], "x-ms-correlation-request-id": [ - "7ed2be56-feac-4c1f-99fd-84d2b76647b4" + "39ca4b6b-282a-458c-b386-8d33bfb26e04" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195535Z:7ed2be56-feac-4c1f-99fd-84d2b76647b4" + "FRANCESOUTH:20201106T155649Z:39ca4b6b-282a-458c-b386-8d33bfb26e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5616,10 +5754,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:35 GMT" + "Fri, 06 Nov 2020 15:56:48 GMT" ], "Content-Length": [ - "111" + "988" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5628,21 +5766,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T15%3A56%3A47.9874291Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fc5fa3f9-db42-4ef6-ac7c-9f342786c329" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -5658,7 +5790,7 @@ "no-cache" ], "x-ms-request-id": [ - "55d93754-f02e-4dbd-9261-bc9fcc2b05af" + "bbfe1b5a-7a1d-47ed-84d7-9647db1e3b21" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5673,13 +5805,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11963" ], "x-ms-correlation-request-id": [ - "8a3d0f1c-505a-4c86-9e42-e5696f90d13b" + "5f87ce5b-823e-4c9c-b1a3-4bb878791753" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195536Z:8a3d0f1c-505a-4c86-9e42-e5696f90d13b" + "FRANCESOUTH:20201106T155719Z:5f87ce5b-823e-4c9c-b1a3-4bb878791753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5688,10 +5820,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:36 GMT" + "Fri, 06 Nov 2020 15:57:19 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5700,21 +5832,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "43d5ded1-4fb6-4b41-b19e-bd2a357b70d7" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -5730,7 +5856,7 @@ "no-cache" ], "x-ms-request-id": [ - "2cb14cb7-9278-4e6a-bdd5-f31060e73e11" + "f5b0c1af-7b07-4336-a630-f428ecf4f2b4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5745,13 +5871,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11962" ], "x-ms-correlation-request-id": [ - "919a4ad7-b7da-410b-a20f-4b4bf02a396f" + "81b362cc-3b90-432a-a67e-4cd1eb0921c3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195538Z:919a4ad7-b7da-410b-a20f-4b4bf02a396f" + "FRANCESOUTH:20201106T155749Z:81b362cc-3b90-432a-a67e-4cd1eb0921c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5760,10 +5886,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:38 GMT" + "Fri, 06 Nov 2020 15:57:49 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5772,21 +5898,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2dcedccf-5929-4507-ba45-5e56d5c336ac" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -5802,7 +5922,7 @@ "no-cache" ], "x-ms-request-id": [ - "c4287ced-62f0-4d54-a9d0-b15074ce833e" + "0fc31adf-9366-4cb9-86f8-d8b642c53f05" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5817,13 +5937,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11961" ], "x-ms-correlation-request-id": [ - "0e661c2d-521a-4757-8720-0027b0b52052" + "c79cdc1f-8d10-403b-ad13-e77840d1c9e8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195539Z:0e661c2d-521a-4757-8720-0027b0b52052" + "FRANCESOUTH:20201106T155819Z:c79cdc1f-8d10-403b-ad13-e77840d1c9e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5832,10 +5952,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:39 GMT" + "Fri, 06 Nov 2020 15:58:19 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5844,21 +5964,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b2860dd9-8959-4905-a518-863ebfdaa09d" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -5874,7 +5988,7 @@ "no-cache" ], "x-ms-request-id": [ - "1914b786-b7e6-4a4d-a675-a611f5081f4b" + "dc27ddba-8e54-4af2-82b5-712eef2fb775" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5889,13 +6003,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11960" ], "x-ms-correlation-request-id": [ - "de52f2a9-7165-4a7e-afa9-7326a85ce0d0" + "dbd53ca8-0f79-477d-8d7c-7e4a4bb8b297" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195541Z:de52f2a9-7165-4a7e-afa9-7326a85ce0d0" + "FRANCESOUTH:20201106T155850Z:dbd53ca8-0f79-477d-8d7c-7e4a4bb8b297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5904,10 +6018,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:41 GMT" + "Fri, 06 Nov 2020 15:58:49 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5916,21 +6030,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9aef5ca2-fa55-4634-adc8-35bf6a843671" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -5946,7 +6054,7 @@ "no-cache" ], "x-ms-request-id": [ - "ade3731f-1d20-4795-9577-15526e27fc1e" + "5db3b732-8054-4473-aab1-349245592a3c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -5961,13 +6069,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11959" ], "x-ms-correlation-request-id": [ - "17ba8f29-1260-4b32-9ca3-06e4942ac9f7" + "bfb9756a-6351-480c-84ee-5c3a91bdc31d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195542Z:17ba8f29-1260-4b32-9ca3-06e4942ac9f7" + "FRANCESOUTH:20201106T155920Z:bfb9756a-6351-480c-84ee-5c3a91bdc31d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5976,10 +6084,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:42 GMT" + "Fri, 06 Nov 2020 15:59:20 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5988,21 +6096,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5940dc00-f143-4b74-bebf-a69eb8f60874" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6018,7 +6120,7 @@ "no-cache" ], "x-ms-request-id": [ - "d987b93a-dc39-49df-a8f5-88f16634a96b" + "92ef1c31-1365-42b0-880a-6a36200d3893" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6033,13 +6135,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11958" ], "x-ms-correlation-request-id": [ - "6b6e7ff3-ec17-432f-be7b-77e8c4714f6b" + "cbe2fa75-2537-4645-8bbc-2c51811689cb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195544Z:6b6e7ff3-ec17-432f-be7b-77e8c4714f6b" + "FRANCESOUTH:20201106T155950Z:cbe2fa75-2537-4645-8bbc-2c51811689cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6048,10 +6150,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:43 GMT" + "Fri, 06 Nov 2020 15:59:50 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6060,21 +6162,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ec4d6323-4c80-486a-b509-9b01132674ab" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6090,7 +6186,7 @@ "no-cache" ], "x-ms-request-id": [ - "92c949c0-5e40-4a5a-ad84-1c5aebefec07" + "8cece765-a5ae-43ff-a7b0-6a21545a2ccf" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6105,13 +6201,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11963" ], "x-ms-correlation-request-id": [ - "a773d2f3-adff-42f9-8857-2f11e5bdfae0" + "d1ef612c-7057-421b-bf76-819bd89e7c30" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195545Z:a773d2f3-adff-42f9-8857-2f11e5bdfae0" + "FRANCESOUTH:20201106T160020Z:d1ef612c-7057-421b-bf76-819bd89e7c30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6120,10 +6216,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:44 GMT" + "Fri, 06 Nov 2020 16:00:20 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6132,21 +6228,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "531061e6-bc16-4a60-ab6b-543bb3ebf2b7" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6162,7 +6252,7 @@ "no-cache" ], "x-ms-request-id": [ - "3391b5f7-00f8-4982-b2c4-435da60a964f" + "e7a44ca5-12bc-4fbe-bb53-ff15c3f56081" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6170,20 +6260,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], "x-ms-correlation-request-id": [ - "86aa9296-89de-4e3a-97d4-4516faf3fe37" + "2ef20487-e375-461f-9e90-5b42273f6c2b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195546Z:86aa9296-89de-4e3a-97d4-4516faf3fe37" + "FRANCESOUTH:20201106T160050Z:2ef20487-e375-461f-9e90-5b42273f6c2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6192,10 +6282,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:46 GMT" + "Fri, 06 Nov 2020 16:00:50 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6204,21 +6294,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ae3860e3-fff2-4648-b0a3-15255f1be36e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6234,7 +6318,7 @@ "no-cache" ], "x-ms-request-id": [ - "98cdea38-2c6b-459b-938a-b48c0f2f717e" + "c86b2e10-e9a7-4177-86e3-9e99a4fd3cbe" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6249,13 +6333,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11961" ], "x-ms-correlation-request-id": [ - "5c246dc7-aed8-4a4c-9267-67829cffd34a" + "cdc25f42-0606-42a6-ab48-420abb4868a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195548Z:5c246dc7-aed8-4a4c-9267-67829cffd34a" + "FRANCESOUTH:20201106T160121Z:cdc25f42-0606-42a6-ab48-420abb4868a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6264,10 +6348,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:47 GMT" + "Fri, 06 Nov 2020 16:01:21 GMT" ], "Content-Length": [ - "111" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6276,21 +6360,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c81d4db3-01b1-48f7-b27e-71553fc01d3e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6306,7 +6384,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4fc05b7-8ec7-4bc8-a507-e4e4bb4957d6" + "efb3ae0e-65b2-4eb1-a037-000d90d6d5ea" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6321,13 +6399,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11960" ], "x-ms-correlation-request-id": [ - "2c11a75a-dce5-4a63-a99c-7295af2bbe92" + "12853deb-3070-41e8-8101-1a07363de0b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195549Z:2c11a75a-dce5-4a63-a99c-7295af2bbe92" + "FRANCESOUTH:20201106T160151Z:12853deb-3070-41e8-8101-1a07363de0b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6336,10 +6414,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:49 GMT" + "Fri, 06 Nov 2020 16:01:51 GMT" ], "Content-Length": [ - "111" + "523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6348,21 +6426,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"name\": \"6f09b7bb-ab40-4027-8888-f0f001628a80\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T15:56:47.9320603Z\",\r\n \"endTime\": \"2020-11-06T16:01:22.476032Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1b34891f-5a9c-4250-b1f1-dd3c225a20ba" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -6377,8 +6449,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\"" + ], "x-ms-request-id": [ - "bbd68960-83e1-42a5-aa76-55984684bfd3" + "41fb63ce-1a69-430b-8fad-612ebda69d40" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6393,13 +6468,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11959" ], "x-ms-correlation-request-id": [ - "45c69326-ced4-479d-9abb-b42c8abc98bc" + "145b7193-c6e1-4840-a082-031278e0ce41" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195550Z:45c69326-ced4-479d-9abb-b42c8abc98bc" + "FRANCESOUTH:20201106T160152Z:145b7193-c6e1-4840-a082-031278e0ce41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6408,10 +6483,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:50 GMT" + "Fri, 06 Nov 2020 16:01:51 GMT" ], "Content-Length": [ - "111" + "1775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6420,17 +6495,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1b8e67a-38e3-4f7a-b018-e56d3970b6d7" + "74f14df0-8e5b-456a-9b4e-9e712e7c189d" ], "Accept-Language": [ "en-US" @@ -6449,8 +6524,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\"" + ], "x-ms-request-id": [ - "a81de117-344b-400f-8009-3e6e905ba542" + "e45ae610-172d-40b5-a593-5e52af30f96b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6465,13 +6543,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11958" ], "x-ms-correlation-request-id": [ - "4f5a8e5d-4586-4f8a-9f3f-4b1174b316a0" + "a52fcc2a-373d-48f8-bf17-9ba026805e57" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195552Z:4f5a8e5d-4586-4f8a-9f3f-4b1174b316a0" + "FRANCESOUTH:20201106T160152Z:a52fcc2a-373d-48f8-bf17-9ba026805e57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6480,10 +6558,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:52 GMT" + "Fri, 06 Nov 2020 16:01:52 GMT" ], "Content-Length": [ - "111" + "1775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6492,17 +6570,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a0e73fd-2284-4764-9b05-18a5313ea7ff" + "122d8d52-3ee1-49fa-b82a-c986a5dc63c1" ], "Accept-Language": [ "en-US" @@ -6521,8 +6599,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\"" + ], "x-ms-request-id": [ - "918b9d11-03e2-44de-a7a3-91f0642d831a" + "d89b2663-68c4-4eca-b277-7feb7bd3c686" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6537,13 +6618,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11956" ], "x-ms-correlation-request-id": [ - "9a014094-4dc6-4215-9ad4-ea1e95af4cc3" + "08cbf60b-718b-4801-b1d7-47ea8d39c2d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195553Z:9a014094-4dc6-4215-9ad4-ea1e95af4cc3" + "FRANCESOUTH:20201106T160154Z:08cbf60b-718b-4801-b1d7-47ea8d39c2d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6552,10 +6633,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:53 GMT" + "Fri, 06 Nov 2020 16:01:53 GMT" ], "Content-Length": [ - "111" + "1775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6564,17 +6645,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A01%3A22.4747889Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "953f40b3-3895-4b5b-a0ab-d2f008aeb5ee" + "b14f7b2e-f2f8-4776-8bae-31cb20655039" ], "Accept-Language": [ "en-US" @@ -6593,8 +6674,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "236a7fad-8156-4adf-bf0e-f426131bc2a4" + "2e3f534e-1217-4f99-bd89-61a185bb6d96" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6609,13 +6693,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11951" ], "x-ms-correlation-request-id": [ - "93c4caa4-0e3d-4feb-b25d-dd92b401a4f5" + "4445a7dd-60ab-4be3-a28f-ac6be3288250" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195555Z:93c4caa4-0e3d-4feb-b25d-dd92b401a4f5" + "FRANCESOUTH:20201106T160328Z:4445a7dd-60ab-4be3-a28f-ac6be3288250" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6624,10 +6708,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:55 GMT" + "Fri, 06 Nov 2020 16:03:27 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6636,17 +6720,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe0b0aa9-877d-4d72-bba8-1f6e9f89491f" + "29df352b-931e-491e-a096-2eaaf4f67254" ], "Accept-Language": [ "en-US" @@ -6665,8 +6749,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "59752201-80c4-4f2f-90be-821d908aba3f" + "045f3a0b-dcf3-40f7-8013-6e491a8fffb6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6681,13 +6768,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11949" ], "x-ms-correlation-request-id": [ - "61fe8398-734f-424b-87ed-e50814e36d9b" + "622e2189-b956-4fa4-8dc0-1ba56ae2a1bf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195557Z:61fe8398-734f-424b-87ed-e50814e36d9b" + "FRANCESOUTH:20201106T160329Z:622e2189-b956-4fa4-8dc0-1ba56ae2a1bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6696,10 +6783,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:56 GMT" + "Fri, 06 Nov 2020 16:03:29 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6708,17 +6795,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62208054-93c5-40b3-b8f2-b0064ae63225" + "7ee3ac5b-2413-4625-8e3e-e8401bd057a8" ], "Accept-Language": [ "en-US" @@ -6737,8 +6824,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "1f54c234-619f-4963-a670-b29908a168f7" + "9f763c55-e706-4431-a73a-a1318f481a34" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6753,13 +6843,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11947" ], "x-ms-correlation-request-id": [ - "dbf3f567-9225-4604-9d7b-0b8ddb2d3c8a" + "079379e0-6c92-43ab-bb70-17d285363dd7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195558Z:dbf3f567-9225-4604-9d7b-0b8ddb2d3c8a" + "FRANCESOUTH:20201106T160331Z:079379e0-6c92-43ab-bb70-17d285363dd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6768,10 +6858,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:57 GMT" + "Fri, 06 Nov 2020 16:03:30 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6780,17 +6870,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "751014fc-21ee-4478-8775-21468f73dd4d" + "4d6b110b-05e4-4831-9981-17c2c407bbb7" ], "Accept-Language": [ "en-US" @@ -6809,8 +6899,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "fef466ba-b96d-4c29-81a0-6250b1561e37" + "da42c970-5da5-4ff2-bb5b-81ebb99d608e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6825,13 +6918,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11945" ], "x-ms-correlation-request-id": [ - "8b8e0db8-0792-4b11-95e0-f71ebe2fae88" + "26c43ed2-4fce-466b-ba94-4ce382716452" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195559Z:8b8e0db8-0792-4b11-95e0-f71ebe2fae88" + "FRANCESOUTH:20201106T160333Z:26c43ed2-4fce-466b-ba94-4ce382716452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6840,10 +6933,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:55:59 GMT" + "Fri, 06 Nov 2020 16:03:32 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6852,17 +6945,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "970111ac-66d6-4a60-b3ad-864450d53c02" + "9fcdd5df-f900-40be-8751-3eadc21ba9b5" ], "Accept-Language": [ "en-US" @@ -6881,8 +6974,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "e4f11b01-97f5-4bf0-a5dd-3fc717ab094a" + "8e09e466-51fb-433f-b9ea-987370e4469b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6897,13 +6993,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11943" ], "x-ms-correlation-request-id": [ - "87ed2bec-e65c-40f8-80ce-68d1bdb44f39" + "be470993-68aa-4e3a-8b21-9ac80b01e22f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195601Z:87ed2bec-e65c-40f8-80ce-68d1bdb44f39" + "FRANCESOUTH:20201106T160334Z:be470993-68aa-4e3a-8b21-9ac80b01e22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6912,10 +7008,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:00 GMT" + "Fri, 06 Nov 2020 16:03:34 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6924,17 +7020,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92cf496a-cd49-4bed-bd2f-28e194a1d068" + "9a5de13f-d1d9-44da-8fc8-60a9bf04792f" ], "Accept-Language": [ "en-US" @@ -6953,8 +7049,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "36638e81-dc7d-4677-8202-732b94c2cdda" + "b0c6827d-3c19-499a-969e-cb2f4ccebafc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -6969,13 +7068,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11941" ], "x-ms-correlation-request-id": [ - "edaf2154-cff6-4336-b63d-0cebed261e08" + "d86f9e93-5dd2-40a8-97a3-7356f79e7649" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195602Z:edaf2154-cff6-4336-b63d-0cebed261e08" + "FRANCESOUTH:20201106T160336Z:d86f9e93-5dd2-40a8-97a3-7356f79e7649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6984,10 +7083,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:02 GMT" + "Fri, 06 Nov 2020 16:03:35 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6996,17 +7095,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "944b62eb-1631-450f-93b5-96c3b0d8a2f8" + "4e660997-cd6c-413f-ac4d-b1dda8604aad" ], "Accept-Language": [ "en-US" @@ -7025,8 +7124,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "eaba01fc-02d7-4966-ae92-e69a15b20b4b" + "41c8be6e-fb41-4fdc-bfe3-a2c6a2edfd02" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7041,13 +7143,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11939" ], "x-ms-correlation-request-id": [ - "fe1f501e-2e07-4b86-8939-4627b8e6b5bb" + "4b0aab18-dacc-412b-8a65-b7e3bfb21958" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195604Z:fe1f501e-2e07-4b86-8939-4627b8e6b5bb" + "FRANCESOUTH:20201106T160338Z:4b0aab18-dacc-412b-8a65-b7e3bfb21958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7056,10 +7158,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:03 GMT" + "Fri, 06 Nov 2020 16:03:37 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7068,17 +7170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aebff81b-6241-4b82-918c-9b85b3d6163b" + "967140cb-2810-4f67-a4d8-8ad6d8d9179f" ], "Accept-Language": [ "en-US" @@ -7097,8 +7199,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "53d79da4-0ac5-4029-abb0-eb849e56a06c" + "912f1401-d668-45b0-be94-5a5fbdfc570d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7113,13 +7218,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11937" ], "x-ms-correlation-request-id": [ - "475294aa-bd88-4632-82d1-e65d8e02fc3e" + "f9896ee9-0bd6-42f5-9e44-78b1f442f4d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195605Z:475294aa-bd88-4632-82d1-e65d8e02fc3e" + "FRANCESOUTH:20201106T160339Z:f9896ee9-0bd6-42f5-9e44-78b1f442f4d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7128,10 +7233,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:05 GMT" + "Fri, 06 Nov 2020 16:03:39 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7140,17 +7245,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec8e0d97-3d03-4dbb-92d5-6290cf26f4ad" + "3f98efdb-f8a8-4ba7-8707-276e284edd6e" ], "Accept-Language": [ "en-US" @@ -7169,8 +7274,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "aaaabc76-2dba-4578-ad68-38435e03e67b" + "ba03fe64-812b-41bb-b97f-d0e141acd440" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7185,13 +7293,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11935" ], "x-ms-correlation-request-id": [ - "8547fdcb-e939-4021-824a-027ab3a901dd" + "f8d9ac58-c947-4a1d-8979-4a23083a9cb2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195607Z:8547fdcb-e939-4021-824a-027ab3a901dd" + "FRANCESOUTH:20201106T160341Z:f8d9ac58-c947-4a1d-8979-4a23083a9cb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7200,10 +7308,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:06 GMT" + "Fri, 06 Nov 2020 16:03:40 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7212,17 +7320,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20ef8a70-bf9e-4703-bfbb-b005d10a4f7b" + "cc4211b4-71ad-42a8-ba18-6a59fedc2875" ], "Accept-Language": [ "en-US" @@ -7241,8 +7349,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "886109ed-af42-463e-8393-245ab5ae9df1" + "2d0d4546-0ad5-4a20-9696-6264991dba30" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7257,13 +7368,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11933" ], "x-ms-correlation-request-id": [ - "2b404e61-3c91-4891-8ffb-92f22100f6ab" + "b5e96dc7-6841-4cbc-bcbc-9e1eed6e0b81" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195608Z:2b404e61-3c91-4891-8ffb-92f22100f6ab" + "FRANCESOUTH:20201106T160342Z:b5e96dc7-6841-4cbc-bcbc-9e1eed6e0b81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7272,10 +7383,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:08 GMT" + "Fri, 06 Nov 2020 16:03:42 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7284,17 +7395,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d4f51f6-fee5-4bd0-a958-cb15b435cc58" + "f84d529b-10b8-4848-93bd-77370c39c58e" ], "Accept-Language": [ "en-US" @@ -7313,8 +7424,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "a10fa48d-2e7c-477d-b447-afbe972979df" + "daee8237-5408-47cf-937f-156e18b4343e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7329,13 +7443,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11931" ], "x-ms-correlation-request-id": [ - "8b18caf7-8f69-45d1-a100-5dbeb1ccd882" + "0e97a986-d777-452d-a3df-9ae3a6b8ea8c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195610Z:8b18caf7-8f69-45d1-a100-5dbeb1ccd882" + "FRANCESOUTH:20201106T160344Z:0e97a986-d777-452d-a3df-9ae3a6b8ea8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7344,10 +7458,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:09 GMT" + "Fri, 06 Nov 2020 16:03:43 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7356,17 +7470,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fab5f90-c1cc-4e09-b10c-467d4aacdf30" + "ef5db403-8af0-4877-9072-63b6d215ce1c" ], "Accept-Language": [ "en-US" @@ -7385,8 +7499,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "2af51038-5879-4a17-b004-ed7f1756d681" + "14d6074e-c74a-474f-87a8-3f256b410d17" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7401,13 +7518,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11929" ], "x-ms-correlation-request-id": [ - "d92374b5-65d6-4a7f-8bc0-845cb5df18f7" + "65c30e18-aa56-4e25-8553-859737749c8b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195611Z:d92374b5-65d6-4a7f-8bc0-845cb5df18f7" + "FRANCESOUTH:20201106T160346Z:65c30e18-aa56-4e25-8553-859737749c8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7416,10 +7533,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:11 GMT" + "Fri, 06 Nov 2020 16:03:45 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7428,17 +7545,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e61836-325d-4eb2-b8f6-828896022cb5" + "a4bb0c75-ef8c-4c80-a1a2-412a0abc2632" ], "Accept-Language": [ "en-US" @@ -7457,8 +7574,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "433b5822-d47a-4ded-99f5-cef532b9d25d" + "3aeef92e-5a6b-4b26-95f5-e6bb7bcd77d8" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7473,13 +7593,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11927" ], "x-ms-correlation-request-id": [ - "76b309ff-9f9b-4cfb-8421-8db27080a158" + "87c3b116-412f-456e-911a-e9d3eed49bab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195613Z:76b309ff-9f9b-4cfb-8421-8db27080a158" + "FRANCESOUTH:20201106T160347Z:87c3b116-412f-456e-911a-e9d3eed49bab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7488,10 +7608,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:12 GMT" + "Fri, 06 Nov 2020 16:03:46 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7500,17 +7620,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df2053d7-0f34-4a17-897a-d9986828604f" + "5e1bf3bc-64bf-4f44-940c-4165679b33b2" ], "Accept-Language": [ "en-US" @@ -7529,8 +7649,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "7934e7aa-09e7-45bd-8968-e04060db7bb3" + "aa6f52dc-aee0-4a34-baea-af004cb99ca6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7545,13 +7668,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11925" ], "x-ms-correlation-request-id": [ - "4cdbbfbd-c3c5-4dfb-a8e6-5a629260f050" + "903e5bb0-e3c7-45bc-9c18-fa364997692c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195614Z:4cdbbfbd-c3c5-4dfb-a8e6-5a629260f050" + "FRANCESOUTH:20201106T160349Z:903e5bb0-e3c7-45bc-9c18-fa364997692c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7560,10 +7683,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:13 GMT" + "Fri, 06 Nov 2020 16:03:48 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7572,17 +7695,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5024e0ae-c682-449a-93d0-d47bd0c5a288" + "5c052c74-460c-44bb-94eb-2e5c17611182" ], "Accept-Language": [ "en-US" @@ -7601,8 +7724,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "2c418bf0-9cf1-48f3-95d4-a820a0b2ee80" + "3f40ff70-0a10-4db3-a4fa-2652b009820c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7620,10 +7746,10 @@ "11923" ], "x-ms-correlation-request-id": [ - "a53a1ad8-feff-4b18-a864-2d937e599c1c" + "42540e76-641d-46fb-8e97-5871033bdea6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195615Z:a53a1ad8-feff-4b18-a864-2d937e599c1c" + "FRANCESOUTH:20201106T160351Z:42540e76-641d-46fb-8e97-5871033bdea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7632,10 +7758,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:15 GMT" + "Fri, 06 Nov 2020 16:03:50 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7644,17 +7770,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8541857-97d1-4499-90da-cb8d07d07177" + "1868a293-62eb-4c27-b9a7-8717862036d3" ], "Accept-Language": [ "en-US" @@ -7673,8 +7799,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "9d53660c-3a30-40fa-b932-d598fafea819" + "bd9b1197-ed39-492b-a81e-cfc6faca3090" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7689,13 +7818,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11921" ], "x-ms-correlation-request-id": [ - "48e2ee79-7f66-4c22-81f9-100044b6fbeb" + "66106324-186d-4f60-91be-9992bce7f7e6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195617Z:48e2ee79-7f66-4c22-81f9-100044b6fbeb" + "FRANCESOUTH:20201106T160352Z:66106324-186d-4f60-91be-9992bce7f7e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7704,10 +7833,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:16 GMT" + "Fri, 06 Nov 2020 16:03:51 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7716,17 +7845,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37fbbe5c-6fd8-4206-b44e-bbf5c5f3b644" + "3f9f647f-544c-4d4a-bb01-385256b7689e" ], "Accept-Language": [ "en-US" @@ -7745,8 +7874,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "dcc0abae-ec61-4de2-8c7d-5115602edb98" + "21759da6-418c-4c16-83d2-5a5ceea97b16" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7761,13 +7893,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11919" ], "x-ms-correlation-request-id": [ - "af713f41-b441-45f8-9833-9aef44745cc3" + "7a0e21da-72f3-46c5-bd3d-e780a6a016fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195618Z:af713f41-b441-45f8-9833-9aef44745cc3" + "FRANCESOUTH:20201106T160354Z:7a0e21da-72f3-46c5-bd3d-e780a6a016fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7776,10 +7908,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:18 GMT" + "Fri, 06 Nov 2020 16:03:53 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7788,17 +7920,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "105d871c-fb1e-4b93-9f97-bd4741db2eb1" + "5b9f2a7c-504a-4d9c-ab92-7ab6ce859bc3" ], "Accept-Language": [ "en-US" @@ -7817,8 +7949,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "b6ffc3af-ef6e-423e-b2c3-635d06f5903b" + "25839ee2-5da0-4702-ab78-a48466704199" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7833,13 +7968,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11917" ], "x-ms-correlation-request-id": [ - "df2cee22-0f76-461a-93b3-f72248de84fb" + "bf0f7930-5bf0-49ed-bde7-2dea51b8ddfd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195620Z:df2cee22-0f76-461a-93b3-f72248de84fb" + "FRANCESOUTH:20201106T160355Z:bf0f7930-5bf0-49ed-bde7-2dea51b8ddfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7848,10 +7983,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:19 GMT" + "Fri, 06 Nov 2020 16:03:55 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7860,17 +7995,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a0e1591-0eb9-4f4f-bb6c-783d47fdf544" + "ffa0980e-0078-4923-bdb0-dcbe0e4f1352" ], "Accept-Language": [ "en-US" @@ -7889,8 +8024,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "2ff6f34d-ba4d-4217-bfa3-8f8c8f40f9df" + "fd6b8051-c706-4996-8ac6-83f7b5924c93" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7905,13 +8043,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11915" ], "x-ms-correlation-request-id": [ - "9890161e-fe97-4a39-af7e-7580ac207b38" + "283b5c13-0ff3-489e-af2f-7629a4d582df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195621Z:9890161e-fe97-4a39-af7e-7580ac207b38" + "FRANCESOUTH:20201106T160357Z:283b5c13-0ff3-489e-af2f-7629a4d582df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7920,10 +8058,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:20 GMT" + "Fri, 06 Nov 2020 16:03:56 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7932,17 +8070,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9518bda-4319-445d-8d85-931db0eb3d62" + "55541adf-0fac-40c1-9bf9-e8df8fd4b170" ], "Accept-Language": [ "en-US" @@ -7961,8 +8099,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "82ba4ed3-b263-48da-bf2b-cc6f9219ff26" + "d5b25fd0-9169-454a-ab88-c6b8d6279bdd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -7977,13 +8118,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11913" ], "x-ms-correlation-request-id": [ - "ba3f7798-399d-4b81-b20b-1d498eda5dd7" + "b97ee4c9-c14e-41fc-847c-f61771a6bb5e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195622Z:ba3f7798-399d-4b81-b20b-1d498eda5dd7" + "FRANCESOUTH:20201106T160359Z:b97ee4c9-c14e-41fc-847c-f61771a6bb5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7992,10 +8133,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:22 GMT" + "Fri, 06 Nov 2020 16:03:59 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8004,17 +8145,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5d39e69-6ce9-49d2-953f-6c5e9e8bea42" + "9314d531-ecc1-4d17-a785-0fd23b81fb86" ], "Accept-Language": [ "en-US" @@ -8033,8 +8174,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "c94d7b91-395b-4040-86d5-56bb6b79cd5c" + "646f2d3b-f20e-4504-8fb6-cdab0aff8882" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8049,13 +8193,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11911" ], "x-ms-correlation-request-id": [ - "fa638a71-e0d9-4833-9e39-92fb093401d9" + "47e33e58-807d-4ff6-b0f9-663828b95733" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195624Z:fa638a71-e0d9-4833-9e39-92fb093401d9" + "FRANCESOUTH:20201106T160400Z:47e33e58-807d-4ff6-b0f9-663828b95733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8064,10 +8208,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:23 GMT" + "Fri, 06 Nov 2020 16:04:00 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8076,17 +8220,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147fc044-53bc-42d1-b346-9e1769b4d443" + "7082cb7f-55bb-4470-99fb-07faaa563416" ], "Accept-Language": [ "en-US" @@ -8105,8 +8249,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "300c40cc-505e-4c5e-bd12-46b6227a479d" + "bfc32c0e-e95c-4a50-8e5b-66a7c12c2b7c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8121,13 +8268,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11909" ], "x-ms-correlation-request-id": [ - "f4bc1e13-5d37-4a48-af65-e94e4cda812a" + "58d19e05-1452-442d-ba67-c9c8e4e92648" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195625Z:f4bc1e13-5d37-4a48-af65-e94e4cda812a" + "FRANCESOUTH:20201106T160402Z:58d19e05-1452-442d-ba67-c9c8e4e92648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8136,10 +8283,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:25 GMT" + "Fri, 06 Nov 2020 16:04:02 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8148,17 +8295,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7d1ba-3285-4a44-b67e-3672e1f14009" + "badfd744-de37-4cc6-982f-9e9e53fc227f" ], "Accept-Language": [ "en-US" @@ -8177,8 +8324,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "df5c87e6-0f97-4560-8a7f-33aead7cfc8a" + "f893f16d-ad4c-469f-a244-d5248cc743c9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8193,13 +8343,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11907" ], "x-ms-correlation-request-id": [ - "c16ed2e6-3270-4e64-a400-55ad9a34594d" + "d998da34-cbee-46a0-9dc9-ec0b6523ef05" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195627Z:c16ed2e6-3270-4e64-a400-55ad9a34594d" + "FRANCESOUTH:20201106T160403Z:d998da34-cbee-46a0-9dc9-ec0b6523ef05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8208,10 +8358,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:26 GMT" + "Fri, 06 Nov 2020 16:04:03 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8220,17 +8370,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "049557a5-6ef7-4179-ac75-9dcd6ddba32a" + "5afa4d11-f7d7-4781-8e48-518f1ff1d705" ], "Accept-Language": [ "en-US" @@ -8249,8 +8399,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "02235e8b-8c2e-4a18-adfb-12bfa7b1d306" + "b6119f1b-7019-44e7-9c94-aa9a0d75dcc0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8265,13 +8418,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11905" ], "x-ms-correlation-request-id": [ - "12c261b9-2115-48e3-a6c9-b6e705aa8a41" + "adbb6b52-7bc2-4ed0-b1fc-78449ebc8beb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195628Z:12c261b9-2115-48e3-a6c9-b6e705aa8a41" + "FRANCESOUTH:20201106T160405Z:adbb6b52-7bc2-4ed0-b1fc-78449ebc8beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8280,10 +8433,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:27 GMT" + "Fri, 06 Nov 2020 16:04:05 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8292,17 +8445,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "780cd9db-8c91-4f67-80d5-2e273b24941b" + "d0da36f8-a484-459f-bd7d-6632cd4c2c9b" ], "Accept-Language": [ "en-US" @@ -8321,8 +8474,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "4ba8546a-00fc-4f6a-866c-89e5a8fd111d" + "0d820d1b-ec51-41f1-985f-8a6cbf9ddcc1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8337,13 +8493,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11903" ], "x-ms-correlation-request-id": [ - "62bdd789-b8fd-428c-a173-4474d81bad0a" + "a26c5e2a-6dd5-4206-bece-034a25a4bf0f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195629Z:62bdd789-b8fd-428c-a173-4474d81bad0a" + "FRANCESOUTH:20201106T160407Z:a26c5e2a-6dd5-4206-bece-034a25a4bf0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8352,10 +8508,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:29 GMT" + "Fri, 06 Nov 2020 16:04:07 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8364,17 +8520,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aea7e099-3eeb-471a-ba26-1c78808f2252" + "aab98372-630d-4ec0-aeba-4b06f7c2fd84" ], "Accept-Language": [ "en-US" @@ -8393,8 +8549,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "410d8996-daba-4e06-b2a2-5f5304e90bd0" + "8078e027-f0dc-485f-8410-6b1ea668cbd2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8409,13 +8568,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11901" ], "x-ms-correlation-request-id": [ - "d470ecba-b46e-42f8-b190-ae0db634c05f" + "e2aeb8cd-df94-46ca-b63e-9b85bda89fd4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195631Z:d470ecba-b46e-42f8-b190-ae0db634c05f" + "FRANCESOUTH:20201106T160408Z:e2aeb8cd-df94-46ca-b63e-9b85bda89fd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8424,10 +8583,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:30 GMT" + "Fri, 06 Nov 2020 16:04:08 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8436,17 +8595,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18db9eab-e5de-4d45-b8a0-2d4b0dada620" + "8e0464d5-0523-4600-98e9-47723af02626" ], "Accept-Language": [ "en-US" @@ -8465,8 +8624,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "ecc6c616-7caa-4802-80d1-6b7552a19dc0" + "b7d96f41-0667-4be5-8c48-f5297ac39f1f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8481,13 +8643,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11899" ], "x-ms-correlation-request-id": [ - "2a246b09-a2c9-4805-855c-3ac3fc1e1204" + "9864348d-a8d2-4621-b971-38d8d451da9c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195632Z:2a246b09-a2c9-4805-855c-3ac3fc1e1204" + "FRANCESOUTH:20201106T160410Z:9864348d-a8d2-4621-b971-38d8d451da9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8496,10 +8658,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:31 GMT" + "Fri, 06 Nov 2020 16:04:10 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8508,17 +8670,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72f5c72e-8bd1-4535-9b41-c57c35dc7045" + "11553727-47f4-45de-9a05-8dd84d49548a" ], "Accept-Language": [ "en-US" @@ -8537,8 +8699,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "5d288522-8570-4872-a81d-617c5649fad1" + "fc4569d0-d86d-47da-9bee-434117c59e5f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8553,13 +8718,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11897" ], "x-ms-correlation-request-id": [ - "78cb58f6-2fb3-4ba8-8105-c80caa87469a" + "8f65064a-71ea-4776-bf3d-58a8d9d638f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195634Z:78cb58f6-2fb3-4ba8-8105-c80caa87469a" + "FRANCESOUTH:20201106T160412Z:8f65064a-71ea-4776-bf3d-58a8d9d638f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8568,10 +8733,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:33 GMT" + "Fri, 06 Nov 2020 16:04:11 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8580,17 +8745,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50ef56ee-2360-4538-b8dc-8683b2d600d2" + "a5e5abd1-a4d1-44c5-b701-76f4a5594f21" ], "Accept-Language": [ "en-US" @@ -8609,8 +8774,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "41845620-15bf-4c2a-b4a2-4d6d341ed9f3" + "1830f529-f5bb-4d4b-bdaf-b6f5c92be07a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8625,13 +8793,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11895" ], "x-ms-correlation-request-id": [ - "ab7b48fc-fd90-4289-a9df-64af942428d5" + "f8fb45ef-4ca2-4489-8e46-31d6effa8931" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195635Z:ab7b48fc-fd90-4289-a9df-64af942428d5" + "FRANCESOUTH:20201106T160414Z:f8fb45ef-4ca2-4489-8e46-31d6effa8931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8640,10 +8808,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:34 GMT" + "Fri, 06 Nov 2020 16:04:13 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8652,17 +8820,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3773e94-6f27-431e-80de-0dd4de934c88" + "cd1b241a-c5f9-4dca-bdec-b8c97f57778d" ], "Accept-Language": [ "en-US" @@ -8681,8 +8849,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "6a673145-b184-4c1d-a3bc-08ad46a05328" + "d5f8bbc9-9e60-4ec1-b46e-0ca72cda612d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8697,13 +8868,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11893" ], "x-ms-correlation-request-id": [ - "60d89bfe-03ef-47bd-98d6-da36308fff78" + "6d92667f-e43f-4a0e-8734-06da3b9e7016" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195636Z:60d89bfe-03ef-47bd-98d6-da36308fff78" + "FRANCESOUTH:20201106T160415Z:6d92667f-e43f-4a0e-8734-06da3b9e7016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8712,10 +8883,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:36 GMT" + "Fri, 06 Nov 2020 16:04:15 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8724,17 +8895,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8a0aee7-b921-4b0e-9431-cab495e1680e" + "90c5d3b4-8f0b-44d2-b431-6c15671020db" ], "Accept-Language": [ "en-US" @@ -8753,8 +8924,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "a8cc6637-d7dd-4c78-a3cf-56b21134284b" + "b91f75d9-32c5-4e3c-96a9-2d7d024aa39b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8769,13 +8943,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11891" ], "x-ms-correlation-request-id": [ - "1ee0ed55-92b5-4c63-8c34-c2859baabc9b" + "5d6310f0-bb1b-4b3e-b380-b4294836a1f6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195638Z:1ee0ed55-92b5-4c63-8c34-c2859baabc9b" + "FRANCESOUTH:20201106T160417Z:5d6310f0-bb1b-4b3e-b380-b4294836a1f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8784,10 +8958,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:37 GMT" + "Fri, 06 Nov 2020 16:04:17 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8796,17 +8970,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d795bb9-246f-4e24-a74f-0340e2b7a8c5" + "85cb90df-16e9-421c-95c4-92f9e4474428" ], "Accept-Language": [ "en-US" @@ -8825,8 +8999,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\"" + ], "x-ms-request-id": [ - "95eb4cda-3395-48f4-9a61-de1a236ae60e" + "218855c1-b34c-4c60-8b43-46e624f346e2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8841,13 +9018,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11889" ], "x-ms-correlation-request-id": [ - "77a47bb3-fd8f-469b-b657-cf50607a6427" + "8a07e24e-bb0a-45af-8908-a54fe782dfe4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195639Z:77a47bb3-fd8f-469b-b657-cf50607a6427" + "FRANCESOUTH:20201106T160418Z:8a07e24e-bb0a-45af-8908-a54fe782dfe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8856,10 +9033,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:38 GMT" + "Fri, 06 Nov 2020 16:04:18 GMT" ], "Content-Length": [ - "111" + "1785" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8868,17 +9045,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A03%3A05.8975283Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"ActivateReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b82e1db-a905-4108-9a47-1de452ae8e17" + "87930da6-dec0-4d36-9e47-52cccca1e873" ], "Accept-Language": [ "en-US" @@ -8897,8 +9074,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A04%3A19.3896365Z'\"" + ], "x-ms-request-id": [ - "490e8c7d-16c3-4069-8cbd-b03ec05d0600" + "fefa9e4c-fb9c-490a-ae5c-c652d0524bd4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8913,13 +9093,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11887" ], "x-ms-correlation-request-id": [ - "ed058972-6dff-4913-a450-88659ec23bb8" + "fb140749-76be-4994-8788-1008a7daebf0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195641Z:ed058972-6dff-4913-a450-88659ec23bb8" + "FRANCESOUTH:20201106T160422Z:fb140749-76be-4994-8788-1008a7daebf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8928,10 +9108,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:40 GMT" + "Fri, 06 Nov 2020 16:04:22 GMT" ], "Content-Length": [ - "111" + "1861" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8940,17 +9120,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A04%3A19.3896365Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"13b5b59a-082e-28e3-6a36-9d197f02cbec\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b044a298-f024-4d3c-8db5-f55034aa430d" + "3b347be7-56a9-40c0-b682-4e51618844be" ], "Accept-Language": [ "en-US" @@ -8969,8 +9149,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-06T16%3A07%3A08.7087072Z'\"" + ], "x-ms-request-id": [ - "2154c80f-83cd-490c-8e84-adff5522e00d" + "42a022ab-647e-4912-960b-bccd12523c6f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -8985,13 +9168,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11806" ], "x-ms-correlation-request-id": [ - "a64a2e04-0050-49cb-9fb9-5a34bb88c95a" + "8ced0dfe-124f-4809-8bf6-d22ecce32408" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195642Z:a64a2e04-0050-49cb-9fb9-5a34bb88c95a" + "FRANCESOUTH:20201106T160805Z:8ced0dfe-124f-4809-8bf6-d22ecce32408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9000,10 +9183,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:41 GMT" + "Fri, 06 Nov 2020 16:08:04 GMT" ], "Content-Length": [ - "111" + "1847" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9012,17 +9195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A07%3A08.7087072Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"13b5b59a-082e-28e3-6a36-9d197f02cbec\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174/authorizeReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQvYXV0aG9yaXplUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4b4bcb5-c474-4ebc-b5e8-7944a3ee1df1" + "69d41938-50d6-4f74-a5cb-f936775f90e7" ], "Accept-Language": [ "en-US" @@ -9032,6 +9215,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "194" ] }, "ResponseHeaders": { @@ -9041,8 +9230,11 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6f11817c-28d6-4338-a37e-45a5e8ff0014" + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9056,14 +9248,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "aadf55ea-1b23-4ca5-ada1-e1957c5859cc" ], "x-ms-correlation-request-id": [ - "3bea1000-4bd5-4341-871d-fe72764ca1be" + "aadf55ea-1b23-4ca5-ada1-e1957c5859cc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195643Z:3bea1000-4bd5-4341-871d-fe72764ca1be" + "FRANCESOUTH:20201106T160226Z:aadf55ea-1b23-4ca5-ada1-e1957c5859cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9072,33 +9267,24 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:43 GMT" - ], - "Content-Length": [ - "111" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 06 Nov 2020 16:02:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjVlZjYyNjItNDU5Ni00ODYyLWIyNjYtZTRmYWQ2NGQ4ZjEyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f8299c14-aabb-4eba-89e3-f70187880afd" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -9114,7 +9300,7 @@ "no-cache" ], "x-ms-request-id": [ - "d11d8d0d-43cb-45bf-89e9-6d2c097ee6c2" + "4609917c-2f70-45d1-bc12-9680f1eddc60" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9129,13 +9315,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11955" ], "x-ms-correlation-request-id": [ - "95c3ba0d-fbd5-4752-a0d8-91e9bc73066a" + "5e363e01-4f88-4b73-98ba-23fbb4e6c406" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195645Z:95c3ba0d-fbd5-4752-a0d8-91e9bc73066a" + "FRANCESOUTH:20201106T160256Z:5e363e01-4f88-4b73-98ba-23fbb4e6c406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9144,10 +9330,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:44 GMT" + "Fri, 06 Nov 2020 16:02:55 GMT" ], "Content-Length": [ - "111" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9156,21 +9342,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12\",\r\n \"name\": \"b5ef6262-4596-4862-b266-e4fad64d8f12\",\r\n \"status\": \"AuthorizeReplication\",\r\n \"startTime\": \"2020-11-06T16:02:26.0761287Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjVlZjYyNjItNDU5Ni00ODYyLWIyNjYtZTRmYWQ2NGQ4ZjEyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "125def2e-22a7-4af0-ab33-0111f8a04029" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -9186,7 +9366,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab953063-ea63-42ed-b740-11122bfedecd" + "b4d8763e-b8de-4577-9195-e5169b7aab22" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9201,13 +9381,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11954" ], "x-ms-correlation-request-id": [ - "31dc9cc0-af76-4735-b8bd-c28cf6d9cfa6" + "d2b55eae-135c-41ff-8219-3e0ce29b1db2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195646Z:31dc9cc0-af76-4735-b8bd-c28cf6d9cfa6" + "FRANCESOUTH:20201106T160326Z:d2b55eae-135c-41ff-8219-3e0ce29b1db2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9216,10 +9396,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:45 GMT" + "Fri, 06 Nov 2020 16:03:26 GMT" ], "Content-Length": [ - "111" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9228,21 +9408,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12\",\r\n \"name\": \"b5ef6262-4596-4862-b266-e4fad64d8f12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T16:02:26.0761287Z\",\r\n \"endTime\": \"2020-11-06T16:03:07.1481202Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjVlZjYyNjItNDU5Ni00ODYyLWIyNjYtZTRmYWQ2NGQ4ZjEyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f119b70-d67a-470c-ac95-0f72f7434475" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -9258,7 +9432,7 @@ "no-cache" ], "x-ms-request-id": [ - "466eb705-2d37-4aca-b131-2e607083da83" + "d4f67c71-a510-4a95-90af-4d42ca1d8558" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9273,13 +9447,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11953" ], "x-ms-correlation-request-id": [ - "4d034d84-532b-4c9b-a3aa-301b5bd54850" + "3a878618-f816-4e6a-8758-505f2be5501e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195647Z:4d034d84-532b-4c9b-a3aa-301b5bd54850" + "FRANCESOUTH:20201106T160327Z:3a878618-f816-4e6a-8758-505f2be5501e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9288,10 +9462,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:47 GMT" + "Fri, 06 Nov 2020 16:03:26 GMT" ], "Content-Length": [ - "111" + "2265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9300,17 +9474,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"name\": \"ps9790/ps7997/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A02%3A26.1270395Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"endPointType\": \"Src\",\r\n \"replicationStatus\": \"\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-bl22-f02c35-bp420-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"volumeName\": \"vol_ps5850_6c2be8\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"remoteVolumeRegion\": \"eastus\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"name\": \"ps4174\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4174\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c668d5a1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"poolId\": \"b9ad3fcc-b6af-c84b-f6fa-7ef96e492009\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"fileSystemId\": \"5b67c79f-1bf3-6c18-bcc4-79b6925bc6ae\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1cc1b07-e3e1-4588-b109-b0840f33161d" + "0890091f-0364-43a8-901e-14632d385af7" ], "Accept-Language": [ "en-US" @@ -9330,7 +9504,7 @@ "no-cache" ], "x-ms-request-id": [ - "64d02a5e-78ba-4f0d-959d-f3f0a227f128" + "14aa2688-e8b1-49b8-9527-33024452972a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9345,13 +9519,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11886" ], "x-ms-correlation-request-id": [ - "257bc9cb-10da-4c32-be12-a0f57cf6f521" + "4bd28777-f6f5-4148-bcf0-5c80230120ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195649Z:257bc9cb-10da-4c32-be12-a0f57cf6f521" + "FRANCESOUTH:20201106T160427Z:4bd28777-f6f5-4148-bcf0-5c80230120ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9360,7 +9534,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:48 GMT" + "Fri, 06 Nov 2020 16:04:26 GMT" ], "Content-Length": [ "111" @@ -9376,13 +9550,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d6fa38e-9d80-4b04-82b8-7c49a5aad55a" + "35f59800-f564-455d-b2c0-7ed85b78f8a0" ], "Accept-Language": [ "en-US" @@ -9402,7 +9576,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e76c163-4fba-4a9f-8a39-8cb6cb0840e6" + "2d94847f-3abd-467d-9ac9-857768fa8539" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9417,13 +9591,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11885" ], "x-ms-correlation-request-id": [ - "cb2c58bc-e9ff-4aa3-abd3-9fcb3b073ecb" + "3262f4c0-62fa-482f-9642-250309e91959" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195650Z:cb2c58bc-e9ff-4aa3-abd3-9fcb3b073ecb" + "FRANCESOUTH:20201106T160432Z:3262f4c0-62fa-482f-9642-250309e91959" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9432,7 +9606,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:49 GMT" + "Fri, 06 Nov 2020 16:04:31 GMT" ], "Content-Length": [ "111" @@ -9448,13 +9622,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad8bfa4b-e2ed-4670-8a6a-669c73b8cdb9" + "600333a3-4cb4-4fa5-8b0b-82176fd50317" ], "Accept-Language": [ "en-US" @@ -9474,7 +9648,7 @@ "no-cache" ], "x-ms-request-id": [ - "709590c1-566e-4a61-8217-cad369a57eba" + "8913ed25-65a1-41ff-8332-094457eb8728" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9489,13 +9663,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11884" ], "x-ms-correlation-request-id": [ - "9b70a1fe-94eb-41bc-ab76-3c5c54f7b2f8" + "bf4b0083-c727-4490-a3d2-509ea54ec1fe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195651Z:9b70a1fe-94eb-41bc-ab76-3c5c54f7b2f8" + "FRANCESOUTH:20201106T160433Z:bf4b0083-c727-4490-a3d2-509ea54ec1fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9504,7 +9678,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:51 GMT" + "Fri, 06 Nov 2020 16:04:33 GMT" ], "Content-Length": [ "111" @@ -9520,13 +9694,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3cfe450-eee0-402f-8e4b-c9dfec6d8b6c" + "1a7ba942-4274-468d-b78b-29be8764a8f3" ], "Accept-Language": [ "en-US" @@ -9546,7 +9720,7 @@ "no-cache" ], "x-ms-request-id": [ - "b1069cec-3b17-4638-8772-027a7fb5c8c4" + "613ac3c0-dbee-4cbb-b1c8-aa56b421bb52" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9561,13 +9735,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11883" ], "x-ms-correlation-request-id": [ - "f5502b78-b47d-4f8f-96b0-b790c718e0c5" + "3835416d-d8cb-4b00-9974-c39ca6d078d9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195653Z:f5502b78-b47d-4f8f-96b0-b790c718e0c5" + "FRANCESOUTH:20201106T160435Z:3835416d-d8cb-4b00-9974-c39ca6d078d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9576,7 +9750,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:52 GMT" + "Fri, 06 Nov 2020 16:04:34 GMT" ], "Content-Length": [ "111" @@ -9592,13 +9766,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7629fed0-42ed-4b4c-b527-5080bb7af1da" + "0b007c6e-4ee7-4809-881a-c02cefab84ac" ], "Accept-Language": [ "en-US" @@ -9618,7 +9792,7 @@ "no-cache" ], "x-ms-request-id": [ - "6f28bc2c-e3f9-45c2-a3c8-b5527717e303" + "a8d5fbf6-3cba-4b76-9d84-a63b80ff9f5a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9633,13 +9807,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11882" ], "x-ms-correlation-request-id": [ - "a3a3df8b-8f4e-4183-9ff0-9f147d9799fd" + "cbd9479a-b292-4c0c-86a3-31e7c95f19d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195656Z:a3a3df8b-8f4e-4183-9ff0-9f147d9799fd" + "FRANCESOUTH:20201106T160436Z:cbd9479a-b292-4c0c-86a3-31e7c95f19d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9648,7 +9822,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:55 GMT" + "Fri, 06 Nov 2020 16:04:35 GMT" ], "Content-Length": [ "111" @@ -9664,13 +9838,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eccb1dbd-569a-43be-8d75-79dd27d0cf10" + "a0d8a97e-0838-45e9-9a62-85a167661155" ], "Accept-Language": [ "en-US" @@ -9690,7 +9864,7 @@ "no-cache" ], "x-ms-request-id": [ - "4afdaeba-349d-4dcf-9197-7c9d124f4160" + "969b866e-ddde-446f-a6ec-67331e6f0324" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9705,13 +9879,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11881" ], "x-ms-correlation-request-id": [ - "5639006c-4e15-4691-a110-e586b229ef90" + "90a35183-0532-407c-8ecd-7a4b325af5ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195658Z:5639006c-4e15-4691-a110-e586b229ef90" + "FRANCESOUTH:20201106T160438Z:90a35183-0532-407c-8ecd-7a4b325af5ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9720,7 +9894,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:57 GMT" + "Fri, 06 Nov 2020 16:04:37 GMT" ], "Content-Length": [ "111" @@ -9736,13 +9910,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5821a2e7-939a-4b30-b2d8-f0f3973c962e" + "09515c36-f2aa-46b3-9cb9-c6f7d32f4675" ], "Accept-Language": [ "en-US" @@ -9762,7 +9936,7 @@ "no-cache" ], "x-ms-request-id": [ - "2bdaa178-4a36-4974-aaa1-aa4e126122b6" + "f959acc2-a034-4f87-86ca-d57b93413eb5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9777,13 +9951,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11880" ], "x-ms-correlation-request-id": [ - "972711be-74fc-4aee-9e42-e4893534ae9c" + "23b3085b-7752-4574-8f9b-035b49479f6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195700Z:972711be-74fc-4aee-9e42-e4893534ae9c" + "FRANCESOUTH:20201106T160439Z:23b3085b-7752-4574-8f9b-035b49479f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9792,7 +9966,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:56:59 GMT" + "Fri, 06 Nov 2020 16:04:38 GMT" ], "Content-Length": [ "111" @@ -9808,13 +9982,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b10a4b5-2b3d-45e7-a1e6-a146d72a78c5" + "13585774-525c-4b1b-a5c1-787c94f0d6d5" ], "Accept-Language": [ "en-US" @@ -9834,7 +10008,7 @@ "no-cache" ], "x-ms-request-id": [ - "2d7bd5cf-164b-46f9-abf2-4b1676e850e6" + "404f5b89-7e65-4450-ba2d-abcdc8b42dde" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9849,13 +10023,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11879" ], "x-ms-correlation-request-id": [ - "ecd6931d-7e26-45a9-b4b1-bc0a8ce1ba8d" + "4ab74c69-b414-4b4f-b2e0-28ed0e339c13" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195701Z:ecd6931d-7e26-45a9-b4b1-bc0a8ce1ba8d" + "FRANCESOUTH:20201106T160440Z:4ab74c69-b414-4b4f-b2e0-28ed0e339c13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9864,7 +10038,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:00 GMT" + "Fri, 06 Nov 2020 16:04:40 GMT" ], "Content-Length": [ "111" @@ -9880,13 +10054,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e118d9a4-7e6c-4e35-a6f4-5812d2433cc6" + "f70fbc11-f5b7-4014-bc91-0a3429d60ddd" ], "Accept-Language": [ "en-US" @@ -9906,7 +10080,7 @@ "no-cache" ], "x-ms-request-id": [ - "f9e37166-a0a4-4bad-8bb6-d3090593eea4" + "58fd3b70-86dd-4403-84ee-dd04e653f308" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9921,13 +10095,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11878" ], "x-ms-correlation-request-id": [ - "7afdeda2-68d1-4b79-8386-cbf6b620c1c5" + "4f035fc4-9a58-46cc-b4b3-19f22d2fcd1d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195702Z:7afdeda2-68d1-4b79-8386-cbf6b620c1c5" + "FRANCESOUTH:20201106T160442Z:4f035fc4-9a58-46cc-b4b3-19f22d2fcd1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9936,7 +10110,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:01 GMT" + "Fri, 06 Nov 2020 16:04:41 GMT" ], "Content-Length": [ "111" @@ -9952,13 +10126,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b76859d-43c2-4dab-ac0e-f554d2709847" + "59ab755e-242b-441e-b0cf-0aa2a8a2bea6" ], "Accept-Language": [ "en-US" @@ -9978,7 +10152,7 @@ "no-cache" ], "x-ms-request-id": [ - "0ca6638a-f4e7-4b97-819a-5a55a63ddcac" + "2c33ffca-f285-43a5-81a8-c76222267487" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -9993,13 +10167,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11877" ], "x-ms-correlation-request-id": [ - "9fd8cfc6-9625-4320-846e-2fba2ac7a60a" + "065e93f4-eb11-4496-a1bd-fb1a32e13661" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195704Z:9fd8cfc6-9625-4320-846e-2fba2ac7a60a" + "FRANCESOUTH:20201106T160443Z:065e93f4-eb11-4496-a1bd-fb1a32e13661" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10008,7 +10182,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:03 GMT" + "Fri, 06 Nov 2020 16:04:42 GMT" ], "Content-Length": [ "111" @@ -10020,17 +10194,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "350b731f-010d-4035-b26e-cea515d6483b" + "61bbb815-1d90-4355-bc6d-4367f13173d9" ], "Accept-Language": [ "en-US" @@ -10050,7 +10224,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a51b744-e7cd-4784-bbff-613369bb5157" + "a7764353-c226-4842-a5be-8c4a54dc9eb3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10065,13 +10239,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11876" ], "x-ms-correlation-request-id": [ - "36cddb10-5f2e-4d95-8dd9-572449602429" + "7035040c-824e-4c1d-ba36-8985614f3d36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195736Z:36cddb10-5f2e-4d95-8dd9-572449602429" + "FRANCESOUTH:20201106T160444Z:7035040c-824e-4c1d-ba36-8985614f3d36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10080,10 +10254,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:36 GMT" + "Fri, 06 Nov 2020 16:04:44 GMT" ], "Content-Length": [ - "109" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10092,17 +10266,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "182a6dc5-73a9-4100-8b06-dc151926d5c2" + "39e31ba3-c834-4cec-bc2c-779b0f0a8e26" ], "Accept-Language": [ "en-US" @@ -10122,7 +10296,7 @@ "no-cache" ], "x-ms-request-id": [ - "aa4ae88d-a9c0-4e4c-b68e-bbc011a5cc5c" + "40103ade-8a9e-4fe6-a9fb-8361dd1cdf07" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10137,13 +10311,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11875" ], "x-ms-correlation-request-id": [ - "6d72ae71-2311-4450-a50a-faa3bff9a872" + "8a527c49-eca1-4567-9f49-1245077f0187" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195841Z:6d72ae71-2311-4450-a50a-faa3bff9a872" + "FRANCESOUTH:20201106T160446Z:8a527c49-eca1-4567-9f49-1245077f0187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10152,10 +10326,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:40 GMT" + "Fri, 06 Nov 2020 16:04:45 GMT" ], "Content-Length": [ - "119" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10164,17 +10338,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Transferring\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/replicationStatus?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2708cf84-ed7e-4e8b-97b1-53f5ae1b7151" + "dd7a8ebf-75f6-47f7-b3ed-8a87010c1bdb" ], "Accept-Language": [ "en-US" @@ -10194,7 +10368,7 @@ "no-cache" ], "x-ms-request-id": [ - "a295a295-2aed-4a14-986c-6d658d7379cc" + "66dcaa41-b4dd-4284-8b09-238176652d1d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10209,13 +10383,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11874" ], "x-ms-correlation-request-id": [ - "bfd0fbaa-a98b-43c2-bd79-f1a09d3271c3" + "23b98728-15d7-4976-80f4-1878710ee322" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195944Z:bfd0fbaa-a98b-43c2-bd79-f1a09d3271c3" + "FRANCESOUTH:20201106T160447Z:23b98728-15d7-4976-80f4-1878710ee322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10224,10 +10398,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:59:44 GMT" + "Fri, 06 Nov 2020 16:04:46 GMT" ], "Content-Length": [ - "109" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10236,17 +10410,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"20352\",\r\n \"errorMessage\": \"\"\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/breakReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68ca47d8-2256-4081-87d3-2b3a48434076" + "db80f03f-b630-49b8-bb87-2509f09eb077" ], "Accept-Language": [ "en-US" @@ -10265,11 +10439,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01" + "x-ms-request-id": [ + "4a7d960a-a09c-49c9-8303-2c288169cbf7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10283,17 +10454,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" ], "x-ms-correlation-request-id": [ - "fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + "5608ec15-805c-49eb-8a7e-c62ecca8ae90" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195705Z:fbc79471-ab55-49ec-a7b7-da38bcc0a9fd" + "FRANCESOUTH:20201106T160448Z:5608ec15-805c-49eb-8a7e-c62ecca8ae90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10302,26 +10470,29 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:04 GMT" + "Fri, 06 Nov 2020 16:04:47 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/breakReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"forceBreakReplication\": true\r\n}", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b7329ab-d833-438d-8acf-eb3000f91df0" + "943ccc54-8dfd-4138-a0c8-ba35da076c1b" ], "Accept-Language": [ "en-US" @@ -10331,12 +10502,78 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb04280a-1cb1-4baf-b83b-80d33fce8113" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-correlation-request-id": [ + "37918ea3-74d6-4396-9f74-0489ec1d46b8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160450Z:37918ea3-74d6-4396-9f74-0489ec1d46b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:49 GMT" + ], + "Content-Length": [ + "111" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "37" + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46c065db-3b5e-48ad-8890-b9f503af674e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -10346,11 +10583,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01" + "x-ms-request-id": [ + "7d5a8553-9bd2-4c21-9d60-9bd4de7ab7fa" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10364,17 +10598,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "9370c96f-042c-4480-8def-9e62c2a2b45b" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" ], "x-ms-correlation-request-id": [ - "9370c96f-042c-4480-8def-9e62c2a2b45b" + "a58d131a-fbbc-4a52-bcf4-69d11ad58186" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195912Z:9370c96f-042c-4480-8def-9e62c2a2b45b" + "FRANCESOUTH:20201106T160451Z:a58d131a-fbbc-4a52-bcf4-69d11ad58186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10383,24 +10614,33 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:59:11 GMT" + "Fri, 06 Nov 2020 16:04:51 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iM2Y3MzI1My01Y2RhLTQ2YjctOTMzNy1lNjIzZDgxMzEyNGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fcc6d9e7-e177-4421-b069-15768acb013c" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10416,7 +10656,7 @@ "no-cache" ], "x-ms-request-id": [ - "491ee76c-6a33-45a7-803d-04e2f645dc6e" + "340b45c1-42e6-40a4-9969-ef511c58f6df" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10431,13 +10671,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11870" ], "x-ms-correlation-request-id": [ - "f2d869fb-463a-4aba-bf67-a0709fed5372" + "334de97e-1e14-48c0-a0eb-d05b7c63f9f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195735Z:f2d869fb-463a-4aba-bf67-a0709fed5372" + "FRANCESOUTH:20201106T160452Z:334de97e-1e14-48c0-a0eb-d05b7c63f9f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10446,10 +10686,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:35 GMT" + "Fri, 06 Nov 2020 16:04:52 GMT" ], "Content-Length": [ - "524" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10458,15 +10698,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d\",\r\n \"name\": \"b3f73253-5cda-46b7-9337-e623d813124d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:57:05.5147445Z\",\r\n \"endTime\": \"2020-10-23T19:57:12.6827981Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/b3f73253-5cda-46b7-9337-e623d813124d?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9iM2Y3MzI1My01Y2RhLTQ2YjctOTMzNy1lNjIzZDgxMzEyNGQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ee1f2b57-59b7-4cba-af46-24f8486c1a92" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10482,7 +10728,7 @@ "no-cache" ], "x-ms-request-id": [ - "c731f280-c827-4d90-b411-101b5bef371a" + "f5fed38a-26e0-436d-b0b3-c3561aa3ecc1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10497,13 +10743,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11869" ], "x-ms-correlation-request-id": [ - "9ae62363-e163-48b7-b6b4-9ef72266a0b0" + "22f6a71c-0719-4b2b-9929-be7614ea8ab1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195735Z:9ae62363-e163-48b7-b6b4-9ef72266a0b0" + "FRANCESOUTH:20201106T160454Z:22f6a71c-0719-4b2b-9929-be7614ea8ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10512,10 +10758,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:57:35 GMT" + "Fri, 06 Nov 2020 16:04:54 GMT" ], "Content-Length": [ - "2361" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10524,17 +10770,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A57%3A05.5515615Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/resyncReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvcmVzeW5jUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21fa18b5-886f-4d45-9a0d-93e8cfca6900" + "9f3700b5-99eb-47cc-98b6-4ea0bb2322ec" ], "Accept-Language": [ "en-US" @@ -10553,11 +10799,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01" + "x-ms-request-id": [ + "605b1c76-caad-4abd-9888-3ad68b767a97" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10571,17 +10814,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "b28f7baf-32e3-4b85-adf5-66517b28dece" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" ], "x-ms-correlation-request-id": [ - "b28f7baf-32e3-4b85-adf5-66517b28dece" + "55f8965f-654f-4d6e-b413-3a030b066007" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195810Z:b28f7baf-32e3-4b85-adf5-66517b28dece" + "FRANCESOUTH:20201106T160455Z:55f8965f-654f-4d6e-b413-3a030b066007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10590,24 +10830,33 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:10 GMT" + "Fri, 06 Nov 2020 16:04:55 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8xN2E1NmFjOC05YTA5LTQ1MDYtOWE3OC1lMzdjZmI4MzQxMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ab99ea09-fd2f-48fc-b8c2-e519926bfbf5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10623,7 +10872,7 @@ "no-cache" ], "x-ms-request-id": [ - "df32a820-9fa5-4014-bfbc-1f3bb05f6645" + "9960a923-f59f-44c9-860e-a0bd6ae0d71f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10638,13 +10887,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11867" ], "x-ms-correlation-request-id": [ - "024c086c-fe5e-42af-8383-5c7f8749e1f3" + "2cee85f8-9d65-4498-91a5-a0e8435635d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195840Z:024c086c-fe5e-42af-8383-5c7f8749e1f3" + "FRANCESOUTH:20201106T160457Z:2cee85f8-9d65-4498-91a5-a0e8435635d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10653,10 +10902,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:39 GMT" + "Fri, 06 Nov 2020 16:04:57 GMT" ], "Content-Length": [ - "523" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10665,15 +10914,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104\",\r\n \"name\": \"17a56ac8-9a09-4506-9a78-e37cfb834104\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:58:10.312434Z\",\r\n \"endTime\": \"2020-10-23T19:58:18.5267153Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/17a56ac8-9a09-4506-9a78-e37cfb834104?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8xN2E1NmFjOC05YTA5LTQ1MDYtOWE3OC1lMzdjZmI4MzQxMDQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ad082894-0cab-410b-9650-c504c0fd1091" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10689,7 +10944,7 @@ "no-cache" ], "x-ms-request-id": [ - "a8b155b8-0da2-48ef-b841-a0b28addb88d" + "c594401a-4a61-432b-8ebb-43e991a562dc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10704,13 +10959,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11866" ], "x-ms-correlation-request-id": [ - "e75beb14-70bc-40c2-856f-a0ee765f1017" + "1c92f7c5-1491-46fe-a3cc-7022ba0f3772" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195840Z:e75beb14-70bc-40c2-856f-a0ee765f1017" + "FRANCESOUTH:20201106T160458Z:1c92f7c5-1491-46fe-a3cc-7022ba0f3772" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10719,10 +10974,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:58:40 GMT" + "Fri, 06 Nov 2020 16:04:58 GMT" ], "Content-Length": [ - "2396" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10731,15 +10986,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A58%3A10.3578492Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Mirrored\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zOGNjYWQyNy1iMWZlLTQ4MDgtYjY5NC0zZGZlMTQ4YjYwNjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "996012a9-f6d9-4bb5-b1b4-c689c0f251d3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10755,7 +11016,7 @@ "no-cache" ], "x-ms-request-id": [ - "5831b838-968a-4f6c-a31e-82ae0e3adfd4" + "8229d5aa-dd71-45c5-9701-6883bb4dab74" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10770,13 +11031,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11865" ], "x-ms-correlation-request-id": [ - "78fb48c4-1b30-4bd2-9139-9d6a1812120b" + "0e85d58e-aebe-4e05-82b6-3c99286afd46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195942Z:78fb48c4-1b30-4bd2-9139-9d6a1812120b" + "FRANCESOUTH:20201106T160459Z:0e85d58e-aebe-4e05-82b6-3c99286afd46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10785,10 +11046,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:59:42 GMT" + "Fri, 06 Nov 2020 16:04:59 GMT" ], "Content-Length": [ - "523" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10797,15 +11058,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069\",\r\n \"name\": \"38ccad27-b1fe-4808-b694-3dfe148b6069\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T19:59:12.4078995Z\",\r\n \"endTime\": \"2020-10-23T19:59:28.242899Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/38ccad27-b1fe-4808-b694-3dfe148b6069?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zOGNjYWQyNy1iMWZlLTQ4MDgtYjY5NC0zZGZlMTQ4YjYwNjk/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cb748607-9ae1-43be-aca4-5661abc39f1d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10821,7 +11088,7 @@ "no-cache" ], "x-ms-request-id": [ - "590ce682-c85f-4fb1-8eb6-5e9f58a5d9a5" + "984716ee-01f9-45a4-900c-cea79674246e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10836,13 +11103,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11877" ], "x-ms-correlation-request-id": [ - "ea078a0f-9240-479a-8d45-e7becaa447b4" + "f65993cd-f53a-4464-8148-42b0359e8f72" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T195943Z:ea078a0f-9240-479a-8d45-e7becaa447b4" + "FRANCESOUTH:20201106T160501Z:f65993cd-f53a-4464-8148-42b0359e8f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10851,10 +11118,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 19:59:43 GMT" + "Fri, 06 Nov 2020 16:05:01 GMT" ], "Content-Length": [ - "2361" + "111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10863,17 +11130,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T19%3A59%3A12.4722106Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"279d711f-75fd-03b0-61fd-2b6ba9e2a696\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-mnz20-as308-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"volumeName\": \"vol_ps8882_bf4748\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4997/providers/Microsoft.NetApp/netAppAccounts/ps5547/capacityPools/ps2914/volumes/ps3085\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882/deleteReplication?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc1NjAvY2FwYWNpdHlQb29scy9wczM2ODMvdm9sdW1lcy9wczg4ODIvZGVsZXRlUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "620c7c99-1293-4f2b-a0fb-077044818bf9" + "34288b62-6876-4911-8710-f1ab2b432fcc" ], "Accept-Language": [ "en-US" @@ -10892,11 +11159,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01" + "x-ms-request-id": [ + "a54512dc-3ff6-45f6-a72e-a08833162268" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10910,17 +11174,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "40483e12-b4b2-4ae9-b62b-45d0522378d5" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" ], "x-ms-correlation-request-id": [ - "40483e12-b4b2-4ae9-b62b-45d0522378d5" + "865e48f6-fe5a-4b16-bb16-5c29fc5b7bd8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200015Z:40483e12-b4b2-4ae9-b62b-45d0522378d5" + "FRANCESOUTH:20201106T160503Z:865e48f6-fe5a-4b16-bb16-5c29fc5b7bd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10929,24 +11190,33 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:00:15 GMT" + "Fri, 06 Nov 2020 16:05:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jZmY5MmUyYS03MzNmLTRjZjgtYjNlZi00NmRjYTZmMzdkYzk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1d97e76d-6408-4cae-bcb9-97ff93d8afac" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -10962,7 +11232,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd359dcc-b67c-45cf-a783-99e6cb30de0e" + "01815a30-b1a9-47cb-be8c-4cdd6aad70b7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -10977,13 +11247,8074 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11875" + ], + "x-ms-correlation-request-id": [ + "3eaa4fe7-616b-41db-bb56-d6d54360dffe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160504Z:3eaa4fe7-616b-41db-bb56-d6d54360dffe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:04 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b7c304e-31a3-4604-9498-4519caf5d37d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3931b965-90ef-4ea5-af02-00373c38842c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-correlation-request-id": [ + "229f95d3-5bed-49c3-b13a-896d21eeb64b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160506Z:229f95d3-5bed-49c3-b13a-896d21eeb64b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e31b665-3df0-4088-a234-41ee9a5085ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1c56403f-a384-4311-919e-753aff6c62ca" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-correlation-request-id": [ + "12234d0d-443e-45b8-8dad-768df58ad774" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160507Z:12234d0d-443e-45b8-8dad-768df58ad774" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:07 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc3812c3-f22a-41c8-b3e8-66a0d6c34401" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40acbb7a-057d-44f4-aa45-69c72f6b684f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-correlation-request-id": [ + "f09cd37b-cee2-4a56-b6ec-0a79c3a01196" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160510Z:f09cd37b-cee2-4a56-b6ec-0a79c3a01196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:10 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d129c579-79da-4769-96c9-13486fb739b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9914d5da-e421-420a-ae93-f55ce61813ae" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-correlation-request-id": [ + "93545f7f-d613-4a78-864f-aaa1b428ee8b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160512Z:93545f7f-d613-4a78-864f-aaa1b428ee8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e7e07c0-ceaa-432b-9fb9-702055371b22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8af775e-8aca-434f-b906-fcb642d8596a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-correlation-request-id": [ + "865ce30d-12b8-46c1-8e0c-bea9b934cc92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160517Z:865ce30d-12b8-46c1-8e0c-bea9b934cc92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:17 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "467378fc-adb2-40ef-97e9-1d6ead5cf56f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47b99c0f-2596-492f-8a83-194a4bf0d438" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-correlation-request-id": [ + "652da49d-f190-41f8-b6f5-74b7ca93439f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160521Z:652da49d-f190-41f8-b6f5-74b7ca93439f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:21 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0128fefc-53ae-42ab-9c45-677aa783b046" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff920a4a-c97a-4f07-ad62-398b3e35d920" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-correlation-request-id": [ + "8c7660e8-362d-4549-a29b-7bcab215f941" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160523Z:8c7660e8-362d-4549-a29b-7bcab215f941" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ae3ae55-a75f-4352-8968-e6b4164aadc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d6bb232b-ebe2-46f2-9b1c-6f337ecfecb9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-correlation-request-id": [ + "768a1b55-a8c5-45c9-bad7-99f34a234c69" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160525Z:768a1b55-a8c5-45c9-bad7-99f34a234c69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:24 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a45d50e2-2d2b-48f1-972b-1faca34aee5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b2264e83-6b81-484c-934c-ac281b13283f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-correlation-request-id": [ + "900e9410-3677-40b3-a6d2-aa740b2e1291" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160526Z:900e9410-3677-40b3-a6d2-aa740b2e1291" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:26 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bfad434-9197-4e54-bdf8-ceae2ae41650" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d96cb11d-47cf-4216-b274-0eab4d684eb4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-correlation-request-id": [ + "28068520-63c2-47a9-a6df-4f4c6a3c5b17" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160527Z:28068520-63c2-47a9-a6df-4f4c6a3c5b17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:27 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69a4120b-c863-4c0b-a241-0bdb1c88a214" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "77e245ff-aadc-41f1-9eaf-1ef9dff3b24e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-correlation-request-id": [ + "b3e57467-ff46-4db8-9012-f867b7f2e57e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160529Z:b3e57467-ff46-4db8-9012-f867b7f2e57e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:28 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dc3b75c-ae65-4f3e-9ca2-61abe5cf59c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f2e5bb1-3387-4ea2-9ff9-01ba0fdac75f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-correlation-request-id": [ + "501ded58-91d5-42f4-ba31-e0c35d2b1935" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160530Z:501ded58-91d5-42f4-ba31-e0c35d2b1935" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c52b4823-1f74-4f52-98c5-3bec57a5e15b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce66f07d-9b1f-46bb-bf48-6afaddffeaab" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-correlation-request-id": [ + "052e3a8c-5a7a-4b45-93ef-9af0d024b606" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160532Z:052e3a8c-5a7a-4b45-93ef-9af0d024b606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24b846e1-7d72-400f-a81d-4660995aceed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "714f9afe-55c0-4cec-ac2f-f7f99d186e1f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-correlation-request-id": [ + "af9e9283-f9ff-4129-944a-d32f2da793e4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160534Z:af9e9283-f9ff-4129-944a-d32f2da793e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:33 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "894474ea-0cc1-4671-8e83-49ec3b56f120" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98583949-1e97-49b8-8bd5-0ea7181aa300" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-correlation-request-id": [ + "f87724cb-79bc-4684-9796-9ee83876d18a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160535Z:f87724cb-79bc-4684-9796-9ee83876d18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:35 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e393b100-5c35-4f45-a144-8a140a61859b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79f2da4b-e3e5-4241-9f5c-769bd119f1fc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-correlation-request-id": [ + "e687ced5-cefa-4c16-98a6-e3c63d7d919a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160538Z:e687ced5-cefa-4c16-98a6-e3c63d7d919a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:37 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caa51743-a711-4c46-a1eb-0cb81105d862" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "951f8532-46e7-4fd6-8940-c28654be1b1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-correlation-request-id": [ + "5139edd8-1dfa-4747-893a-d284c18bd915" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160540Z:5139edd8-1dfa-4747-893a-d284c18bd915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:39 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea27bb33-ab53-4c6f-a31b-22e161e8a787" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c15a3be6-5c74-4fa9-9fdb-39a401339833" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-correlation-request-id": [ + "046244c7-8a4f-4208-91cf-989491b54f13" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160541Z:046244c7-8a4f-4208-91cf-989491b54f13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61314b1d-e938-4a3b-af6a-8f77b43d6850" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aaa2ecc2-b017-452f-b024-994ab28f9ff9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-correlation-request-id": [ + "d6593ba9-fd52-4f34-beea-6f9f7d0d8d00" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160542Z:d6593ba9-fd52-4f34-beea-6f9f7d0d8d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:42 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51c73296-ffb6-4cac-9e83-7a455d378745" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2c97a0b-6692-4984-9aaa-b7b7b6fa9cf1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-correlation-request-id": [ + "9fb0c3a8-5e71-4a90-810c-86ffb8c07bf9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160544Z:9fb0c3a8-5e71-4a90-810c-86ffb8c07bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:43 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1e917eb-fd3c-4e3b-b9b6-bf1d53ad1e5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "315ad9be-796d-4e7c-a72c-cbf078d5cd99" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-correlation-request-id": [ + "bea950de-73d0-4c8b-bcfe-65df1f27edc1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160545Z:bea950de-73d0-4c8b-bcfe-65df1f27edc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:45 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b278112-2c29-4ea3-a065-88b3b3ad8e3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "28512ea5-0dad-4355-8f9e-41a03a976584" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-correlation-request-id": [ + "b568bc52-7f03-4b47-ad68-a0b46009a3a9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160547Z:b568bc52-7f03-4b47-ad68-a0b46009a3a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "683c6a0f-f6c7-4f15-9f80-54ddbaa108e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e8c9f6e6-7299-4157-bf1c-2a630031f921" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-correlation-request-id": [ + "da846736-95fd-4bd8-993c-27438c230934" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160548Z:da846736-95fd-4bd8-993c-27438c230934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:48 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10cfe0f6-9761-4a09-b09c-37396ed9d4db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3030357f-403c-479e-9814-5813c4add29b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-correlation-request-id": [ + "83cc2ec3-2cd8-48ad-b413-9c8fdece71d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160550Z:83cc2ec3-2cd8-48ad-b413-9c8fdece71d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:49 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bab5356-0766-45e2-8b3d-2ff774597e2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56e4e800-3199-416f-92fd-e88becc754ba" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-correlation-request-id": [ + "fb94e2f8-6b03-4db9-a6cc-57553d73ee05" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160551Z:fb94e2f8-6b03-4db9-a6cc-57553d73ee05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9394c88-1ea2-4500-b958-20f3adba858f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef5abdcb-f02a-4931-88b8-a4e3449d37a8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "x-ms-correlation-request-id": [ + "dfd3089f-50b7-4edb-b69d-038bd093b03c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160552Z:dfd3089f-50b7-4edb-b69d-038bd093b03c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c02e97e-f33a-4242-8c4e-b102fd3f30ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "38d5825e-fa36-44d3-a888-a93cd34637a1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "x-ms-correlation-request-id": [ + "d9c0a7d0-c01f-4f7a-a0a5-faf1d7f1313a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160555Z:d9c0a7d0-c01f-4f7a-a0a5-faf1d7f1313a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:54 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "743253e8-2806-4bbd-acba-2d6b59ef914e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58730a9b-1e77-433f-831c-7a54c11fa5e9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "x-ms-correlation-request-id": [ + "0e8266ee-d9c2-4a8e-b655-a142df7c76ec" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160558Z:0e8266ee-d9c2-4a8e-b655-a142df7c76ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c9e7f1-b86d-4a70-a84e-76f4cab7e34a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d10cc7fc-0e1f-4fdb-803c-3ad9cbff5de1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "x-ms-correlation-request-id": [ + "0840f32d-faa5-416e-ab80-0a88e8eee6d9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160600Z:0840f32d-faa5-416e-ab80-0a88e8eee6d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05:59 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ad160cb-d46d-4d2b-8256-2cc59da3ac0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ed2e7262-59be-4e63-9fc7-752194490d64" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-correlation-request-id": [ + "c4f1599c-1dc8-40b7-87ca-50a061035958" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160601Z:c4f1599c-1dc8-40b7-87ca-50a061035958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6f8fad1-1188-48e3-b4ea-94398fa76e62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f92c679a-7241-4406-b0ff-dc7ffd70d3bc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "x-ms-correlation-request-id": [ + "53d58467-5b0a-4ecb-b8f3-4874c7ac1be6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160603Z:53d58467-5b0a-4ecb-b8f3-4874c7ac1be6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:02 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5c9f302-3bdb-4714-8f2c-49d84dacdf56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71b4b082-a3d9-4ad9-b478-25b03f6d3f7c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "x-ms-correlation-request-id": [ + "2f5c6d6a-b023-4df0-a789-846dbdd6ee63" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160604Z:2f5c6d6a-b023-4df0-a789-846dbdd6ee63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:03 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27a6bf46-a46f-435e-91ac-db0242367c6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "84d84473-9017-4e01-9aae-5c0ba856455a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "x-ms-correlation-request-id": [ + "d7601ad5-6aaf-4e56-926f-64a09ec270fb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160606Z:d7601ad5-6aaf-4e56-926f-64a09ec270fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:05 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a7dbbcb-93b5-4d63-a61c-ef6b4ba759b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6c52c06c-8d24-4f4e-abd2-2a3b465b56f8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "x-ms-correlation-request-id": [ + "815c44ac-0aec-4a36-b88f-07d32c18f581" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160607Z:815c44ac-0aec-4a36-b88f-07d32c18f581" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:06 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98de18bf-bbe2-4b71-a107-c3104da08fc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9db3827-9fba-47c0-a916-dfab43eeb494" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "x-ms-correlation-request-id": [ + "4da9d1e8-2791-4aff-b3c7-ef4f5e854995" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160608Z:4da9d1e8-2791-4aff-b3c7-ef4f5e854995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:08 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e12dd7a-7a7c-4bbc-acff-8469593efcdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50cd2f0e-685f-4592-b3c3-2781e41d767f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "x-ms-correlation-request-id": [ + "106bfa21-c658-4b7c-a19f-520b7c02afd3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160610Z:106bfa21-c658-4b7c-a19f-520b7c02afd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:10 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f4285ee-5540-4988-9178-8fa36b1b1e1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2cc8d928-403c-4678-a41b-4fda4011f4c4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-correlation-request-id": [ + "a88f695d-b7b9-4e93-9ff2-796e03ffcd1f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160611Z:a88f695d-b7b9-4e93-9ff2-796e03ffcd1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:11 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751064aa-5b3c-432d-ac0d-cbdaa2634e83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f07a691c-a4c1-48eb-ba03-83a786c6e8d7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "x-ms-correlation-request-id": [ + "924bd5dc-3d2e-4196-a567-b2e6868d94f7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160612Z:924bd5dc-3d2e-4196-a567-b2e6868d94f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:12 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae77a717-e387-4a5b-b969-b23142bfdea3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e6837c6-2293-4564-9c2a-d1882df0981c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "x-ms-correlation-request-id": [ + "7cde79fb-5e2c-47d1-a4d2-9099d20f8ff1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160614Z:7cde79fb-5e2c-47d1-a4d2-9099d20f8ff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:14 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751d4aba-e4b5-43b0-a875-0868a9db20d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e91bf846-6a45-4d89-9ed8-8fe4e9041449" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "x-ms-correlation-request-id": [ + "8578a50c-a0a2-4c72-b02e-080c57d737ad" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160615Z:8578a50c-a0a2-4c72-b02e-080c57d737ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:15 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385eeec8-979d-4bba-ae82-9de39774806e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30e62967-8817-4074-a0b4-a7322c81974c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "x-ms-correlation-request-id": [ + "f9c72e09-ccc8-4b9c-9c5f-8b53ed7b0ba9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160616Z:f9c72e09-ccc8-4b9c-9c5f-8b53ed7b0ba9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:16 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ea60194-5a04-40b4-921b-6a8e891fddf0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fab411a-ce4f-4dac-a549-c14e2fcfbc4e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "x-ms-correlation-request-id": [ + "cc171871-9136-408d-8c64-7b4f8deb7c46" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160618Z:cc171871-9136-408d-8c64-7b4f8deb7c46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:18 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0ed1f89-1457-45b7-8979-4594ac321c63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "43bd51e7-8b4b-49cb-b281-c034ab475443" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "x-ms-correlation-request-id": [ + "4afdd3af-83ef-4ed7-a44d-c775b2c7f443" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160619Z:4afdd3af-83ef-4ed7-a44d-c775b2c7f443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:19 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c59db35d-e5db-48e7-885e-33372f8d023d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "330c530a-eacb-4e1a-9b02-75eddc12e040" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "x-ms-correlation-request-id": [ + "4fbca2b0-0134-4ccc-887e-8d5a331f272c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160620Z:4fbca2b0-0134-4ccc-887e-8d5a331f272c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:20 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "182b7585-8a49-4e69-b2d7-bf9d5ce005ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "745d6c23-a7e7-45e0-a33e-f7203b328d4a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "x-ms-correlation-request-id": [ + "adef7f3f-b1f0-4e80-95b3-569133caaad6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160622Z:adef7f3f-b1f0-4e80-95b3-569133caaad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:22 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8569a740-603f-4870-9574-799c3a1b26f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71fd49fe-2948-4d88-8d49-61259166d325" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "x-ms-correlation-request-id": [ + "6e2bf2a3-eaf9-49dc-994f-2247f30ee043" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160623Z:6e2bf2a3-eaf9-49dc-994f-2247f30ee043" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:23 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a41ad28-4aaa-4099-bd00-03275d6ea67d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b033e1b1-aa86-4351-ab94-ab7a1edf66ab" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "x-ms-correlation-request-id": [ + "5c0bdd8a-7685-4690-b339-6a39b85191e2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160625Z:5c0bdd8a-7685-4690-b339-6a39b85191e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:25 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90407c1a-f218-48dc-9fe2-4104a6dfe238" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1d4efa74-eb19-4100-9457-b1ce43d4ed18" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11827" + ], + "x-ms-correlation-request-id": [ + "0ce0d397-14fb-4515-9b44-3315ae3016cb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160628Z:0ce0d397-14fb-4515-9b44-3315ae3016cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:28 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b535b722-d4c1-40d3-8811-57b6e1c23e8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f112889a-0b7b-4180-9d9c-c0c1d595c74e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], + "x-ms-correlation-request-id": [ + "5a31dd0e-b9e3-4b38-b404-1f5a7d02f118" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160630Z:5a31dd0e-b9e3-4b38-b404-1f5a7d02f118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:30 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b07da20f-e8f7-4f09-9284-55d2ef15bfba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fd01d5e7-435c-4e61-aa9b-475ca819fcee" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11825" + ], + "x-ms-correlation-request-id": [ + "441b6043-e5e3-4fa5-a5ce-eb1560134f31" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160631Z:441b6043-e5e3-4fa5-a5ce-eb1560134f31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:31 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2496b9a9-46c1-473b-b2f6-c9d1d7889552" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6b3c8472-9974-4f49-bb2c-a26a13fb9c82" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11824" + ], + "x-ms-correlation-request-id": [ + "9697c92c-4c5d-4af6-bc9c-1bdcdd437f21" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160633Z:9697c92c-4c5d-4af6-bc9c-1bdcdd437f21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:32 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf8fe62e-8658-4165-a6f7-c7353d0724c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b4c48d5-02d0-4966-b4bc-f005447e6231" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], + "x-ms-correlation-request-id": [ + "5a7d6bf5-9633-40df-aa51-8a5448461667" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160635Z:5a7d6bf5-9633-40df-aa51-8a5448461667" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:35 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e81ad02a-fc06-461d-b217-91dc62209f14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "315f82b7-c427-4503-ac5a-a17434721fce" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], + "x-ms-correlation-request-id": [ + "b68ae091-89a3-4959-8e24-17271925adee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160636Z:b68ae091-89a3-4959-8e24-17271925adee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:36 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62649451-a0fe-41c3-9316-b838e75c087d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b31ea82-fd5f-4f5b-a75a-cf0ab2ab6d86" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11821" + ], + "x-ms-correlation-request-id": [ + "915ba26d-6d13-4355-9a54-12969d563e2c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160638Z:915ba26d-6d13-4355-9a54-12969d563e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78b23522-5544-49a7-a07c-d0db83eb5671" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3322166b-e414-4894-ba90-45918483c670" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], + "x-ms-correlation-request-id": [ + "d8e6b732-ee2b-4adb-ae75-f718bb26ee4e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160640Z:d8e6b732-ee2b-4adb-ae75-f718bb26ee4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:40 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b80c0505-e309-4346-abea-9b151e9ccb62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "78920300-aa26-403c-a2f7-2a390a5e45f5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11819" + ], + "x-ms-correlation-request-id": [ + "006f5556-6618-48fd-b960-0b481fd41f97" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160642Z:006f5556-6618-48fd-b960-0b481fd41f97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:41 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1afa797c-8490-4093-aa5e-5383c93050e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2775e4c8-3a8f-4a90-bceb-678b8e8c4bfa" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11818" + ], + "x-ms-correlation-request-id": [ + "6d01742a-115d-4470-bec2-755b44321acf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160644Z:6d01742a-115d-4470-bec2-755b44321acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:44 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "669d0dea-77ef-4b15-946d-809f0237ab61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d07952f-8f5d-4494-b4df-e3a6580ceb08" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11817" + ], + "x-ms-correlation-request-id": [ + "c1aa6dce-061a-478e-a687-022ddeb99592" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160646Z:c1aa6dce-061a-478e-a687-022ddeb99592" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:46 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4ecbf30-1cd0-495c-ae1f-58888719fabd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d0923e7-7946-4092-93f1-ebfede72cf81" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], + "x-ms-correlation-request-id": [ + "98fba344-653c-4785-a9ef-3842c31c8ab7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160651Z:98fba344-653c-4785-a9ef-3842c31c8ab7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:50 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a46946c-ee16-4754-812a-c510a4233d1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f6f9782-0b92-4794-a362-5693f528e4d8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], + "x-ms-correlation-request-id": [ + "6871205d-b1cb-428e-8c55-cb0aa8be6a2b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160653Z:6871205d-b1cb-428e-8c55-cb0aa8be6a2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:52 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91da6f00-6e0f-4a06-89b7-baba03557b66" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0a250cc-cb91-474c-bdc6-fbeeb407764d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11814" + ], + "x-ms-correlation-request-id": [ + "75df96ba-876d-4393-a0b5-a96e3ea55e3e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160655Z:75df96ba-876d-4393-a0b5-a96e3ea55e3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:54 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccd725d7-2113-4063-8f0a-6a46c1b8b3d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac3e34db-c899-45a1-a412-6f2f4ce0915a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11813" + ], + "x-ms-correlation-request-id": [ + "17a2a29a-f6b4-48cf-88c7-65cd04fb545d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160657Z:17a2a29a-f6b4-48cf-88c7-65cd04fb545d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:57 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e70843a3-c571-4bdb-8ab3-c7904606a69b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "14f21ef9-e584-4355-8c1a-92a9bf6fb2fa" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11812" + ], + "x-ms-correlation-request-id": [ + "c75435f5-9d6e-413d-9cc0-f89161ed30a4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160658Z:c75435f5-9d6e-413d-9cc0-f89161ed30a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:06:58 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Uninitialized\",\r\n \"totalProgress\": \"\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ad96667-8e45-4fb2-966f-92fbef53f29d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fa3a9c09-59e4-4aca-8fba-a4e4c81d11c5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11811" + ], + "x-ms-correlation-request-id": [ + "7d780681-18e9-4b31-bd38-f1889aa6d257" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160700Z:7d780681-18e9-4b31-bd38-f1889aa6d257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:07:00 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c416e28c-8782-4fc6-b6c7-23f8554f8cc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e48111c-8874-49e9-a4e7-0aa66df94e5c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], + "x-ms-correlation-request-id": [ + "3dbd05ed-548a-4ca1-8f5b-18f79ad1d120" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160733Z:3dbd05ed-548a-4ca1-8f5b-18f79ad1d120" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:07:33 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa15af13-261e-4032-bd7f-b0df884fddbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7a51544-57ee-4bc8-9925-54149aff3673" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], + "x-ms-correlation-request-id": [ + "e488a2ff-4191-441c-b0a7-930addcbd791" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160839Z:e488a2ff-4191-441c-b0a7-930addcbd791" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:38 GMT" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Mirrored\",\r\n \"totalProgress\": \"17312\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/replicationStatus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVwbGljYXRpb25TdGF0dXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ad99537-82c4-41bc-9c9b-bdb7c65804db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbd0b8ba-0880-4f1f-abad-741b1f070159" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11800" + ], + "x-ms-correlation-request-id": [ + "438c86b6-8e2b-4844-81cc-61940dbeb7da" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160943Z:438c86b6-8e2b-4844-81cc-61940dbeb7da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:09:43 GMT" + ], + "Content-Length": [ + "109" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"relationshipStatus\": \"Idle\",\r\n \"mirrorState\": \"Broken\",\r\n \"totalProgress\": \"20352\",\r\n \"errorMessage\": \"\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9157b80-00d6-42e6-bfd0-9ee64c7075d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/97ffce60-547c-44b6-933b-11cd9b760ce6?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/97ffce60-547c-44b6-933b-11cd9b760ce6?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "c10bd8cb-d132-4030-acce-86eff5185f06" + ], + "x-ms-correlation-request-id": [ + "c10bd8cb-d132-4030-acce-86eff5185f06" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160702Z:c10bd8cb-d132-4030-acce-86eff5185f06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:07:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/breakReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvYnJlYWtSZXBsaWNhdGlvbj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"forceBreakReplication\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f4c4e76-d743-4173-99a0-e5fd572f6061" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6d2579c3-16ef-4b3d-8abb-698a047030a3?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6d2579c3-16ef-4b3d-8abb-698a047030a3?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-request-id": [ + "198fd342-264d-40a3-817c-65bab7f7345a" + ], + "x-ms-correlation-request-id": [ + "198fd342-264d-40a3-817c-65bab7f7345a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160910Z:198fd342-264d-40a3-817c-65bab7f7345a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:09:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/97ffce60-547c-44b6-933b-11cd9b760ce6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy85N2ZmY2U2MC01NDdjLTQ0YjYtOTMzYi0xMWNkOWI3NjBjZTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f0281c4-bdd7-4c2d-8d46-285e7f7bfbec" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" + ], + "x-ms-correlation-request-id": [ + "1647bc49-cda2-4f7e-98bf-46de95a49bd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160732Z:1647bc49-cda2-4f7e-98bf-46de95a49bd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:07:31 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/97ffce60-547c-44b6-933b-11cd9b760ce6\",\r\n \"name\": \"97ffce60-547c-44b6-933b-11cd9b760ce6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T16:07:02.2263622Z\",\r\n \"endTime\": \"2020-11-06T16:07:08.703108Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/97ffce60-547c-44b6-933b-11cd9b760ce6?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy85N2ZmY2U2MC01NDdjLTQ0YjYtOTMzYi0xMWNkOWI3NjBjZTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07852637-107d-4c4b-b6db-e921bf0f89d4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11809" + ], + "x-ms-correlation-request-id": [ + "3121f6be-7a89-4121-8aa7-4b404cffdfd3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160732Z:3121f6be-7a89-4121-8aa7-4b404cffdfd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:07:31 GMT" + ], + "Content-Length": [ + "2367" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A07%3A02.2700841Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"13b5b59a-082e-28e3-6a36-9d197f02cbec\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-bl22-f02c35-bp420-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"volumeName\": \"vol_ps5850_6c2be8\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"poolId\": \"7a07ed89-b122-415a-06aa-2a39183eee8e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/resyncReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvcmVzeW5jUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "350f0140-5a90-42d2-86bc-cf7a129591f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/3b5e4668-20ca-4d82-88d1-31f26b0a04df?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/3b5e4668-20ca-4d82-88d1-31f26b0a04df?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ccd83361-259d-4c5a-a4b3-3de093413b6f" + ], + "x-ms-correlation-request-id": [ + "ccd83361-259d-4c5a-a4b3-3de093413b6f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160807Z:ccd83361-259d-4c5a-a4b3-3de093413b6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/3b5e4668-20ca-4d82-88d1-31f26b0a04df?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zYjVlNDY2OC0yMGNhLTRkODItODhkMS0zMWYyNmIwYTA0ZGY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e99f92c-257d-4ad4-bdc6-afdce63f1eb2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], + "x-ms-correlation-request-id": [ + "b55c5a28-aa18-44ca-b539-5c4ce74159ff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160837Z:b55c5a28-aa18-44ca-b539-5c4ce74159ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:36 GMT" + ], + "Content-Length": [ + "523" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/3b5e4668-20ca-4d82-88d1-31f26b0a04df\",\r\n \"name\": \"3b5e4668-20ca-4d82-88d1-31f26b0a04df\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T16:08:07.0356915Z\",\r\n \"endTime\": \"2020-11-06T16:08:13.460583Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/3b5e4668-20ca-4d82-88d1-31f26b0a04df?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8zYjVlNDY2OC0yMGNhLTRkODItODhkMS0zMWYyNmIwYTA0ZGY/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ed15d62f-9fec-4820-a77f-6a701a5f2ccd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11804" + ], + "x-ms-correlation-request-id": [ + "93128bfa-68ed-4b20-8c59-0eebc4a7e8bd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160837Z:93128bfa-68ed-4b20-8c59-0eebc4a7e8bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:36 GMT" + ], + "Content-Length": [ + "2402" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A08%3A07.1036311Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"DataProtection\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"13b5b59a-082e-28e3-6a36-9d197f02cbec\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Mirrored\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-bl22-f02c35-bp420-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"volumeName\": \"vol_ps5850_6c2be8\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"poolId\": \"7a07ed89-b122-415a-06aa-2a39183eee8e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6d2579c3-16ef-4b3d-8abb-698a047030a3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZDI1NzljMy0xNmVmLTRiM2QtOGFiYi02OThhMDQ3MDMwYTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a54828e5-b470-4b2e-9b54-da7bd3c9187c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" + ], + "x-ms-correlation-request-id": [ + "e9ffbe05-02b2-4a3c-b838-fa24b5321f8f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160941Z:e9ffbe05-02b2-4a3c-b838-fa24b5321f8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:09:41 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6d2579c3-16ef-4b3d-8abb-698a047030a3\",\r\n \"name\": \"6d2579c3-16ef-4b3d-8abb-698a047030a3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T16:09:10.7377302Z\",\r\n \"endTime\": \"2020-11-06T16:09:18.2510754Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/6d2579c3-16ef-4b3d-8abb-698a047030a3?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZDI1NzljMy0xNmVmLTRiM2QtOGFiYi02OThhMDQ3MDMwYTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ea21b919-5a1d-488b-b181-8e6cfd04357a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], + "x-ms-correlation-request-id": [ + "5aea74dd-67ab-4e1c-bfd7-6c47b87bc94f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160941Z:5aea74dd-67ab-4e1c-bfd7-6c47b87bc94f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:09:41 GMT" + ], + "Content-Length": [ + "2367" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A09%3A10.7663379Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {\r\n \"replication\": {\r\n \"replicationId\": \"13b5b59a-082e-28e3-6a36-9d197f02cbec\",\r\n \"endPointType\": \"Dst\",\r\n \"replicationSchedule\": \"_10minutely\",\r\n \"replicationPolicy\": \"MirrorAllSnapshots\",\r\n \"replicationStatus\": \"Broken\",\r\n \"remotePath\": {\r\n \"externalHostName\": \"az-bl22-f02c35-bp420-sto\",\r\n \"serverName\": \"svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"volumeName\": \"vol_ps5850_6c2be8\"\r\n },\r\n \"remoteVolumeResourceId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174\",\r\n \"remoteVolumeRegion\": \"westus2\"\r\n }\r\n },\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"poolId\": \"7a07ed89-b122-415a-06aa-2a39183eee8e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850/deleteReplication?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTAvZGVsZXRlUmVwbGljYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a301df84-74a5-42cb-86c4-528918d70051" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7e531623-72d3-4dba-9e02-0a8f9d4c96de?api-version=2020-06-01&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7e531623-72d3-4dba-9e02-0a8f9d4c96de?api-version=2020-06-01" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "33afcfa9-e392-4f7f-a504-bf5ed5d93890" + ], + "x-ms-correlation-request-id": [ + "33afcfa9-e392-4f7f-a504-bf5ed5d93890" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161015Z:33afcfa9-e392-4f7f-a504-bf5ed5d93890" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:10:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7e531623-72d3-4dba-9e02-0a8f9d4c96de?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy83ZTUzMTYyMy03MmQzLTRkYmEtOWUwMi0wYThmOWQ0Yzk2ZGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d275390b-376b-4231-81ea-533d4a7fb388" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11799" + ], + "x-ms-correlation-request-id": [ + "436cb0f5-5e6f-4f82-a2df-76b79b07862c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161045Z:436cb0f5-5e6f-4f82-a2df-76b79b07862c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:10:45 GMT" + ], + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7e531623-72d3-4dba-9e02-0a8f9d4c96de\",\r\n \"name\": \"7e531623-72d3-4dba-9e02-0a8f9d4c96de\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-06T16:10:15.2102283Z\",\r\n \"endTime\": \"2020-11-06T16:10:16.7571688Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/7e531623-72d3-4dba-9e02-0a8f9d4c96de?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy83ZTUzMTYyMy03MmQzLTRkYmEtOWUwMi0wYThmOWQ0Yzk2ZGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ff6e5a5-061e-47d0-871c-eee237590114" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11798" + ], + "x-ms-correlation-request-id": [ + "d9dc8cee-9f84-4c9d-bb33-086828faeb8d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161045Z:d9dc8cee-9f84-4c9d-bb33-086828faeb8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:10:45 GMT" + ], + "Content-Length": [ + "1798" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"name\": \"ps6228/ps6769/ps5850\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-06T16%3A10%3A15.2486337Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {},\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"name\": \"ps5850\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps5850\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_fa9a207f\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850\",\r\n \"poolId\": \"7a07ed89-b122-415a-06aa-2a39183eee8e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"fileSystemId\": \"12388eb1-60e4-7115-1744-ecf798d63e2d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps8985?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODk4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b3c02a4-05f1-4ed0-be4c-b854614d6062" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "03ef2a9e-213e-4572-8a99-29cc2935e686" + ], + "x-ms-correlation-request-id": [ + "03ef2a9e-213e-4572-8a99-29cc2935e686" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161050Z:03ef2a9e-213e-4572-8a99-29cc2935e686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:10:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "6cb520ef-2dc3-40b9-8952-4f113d1eb89e" + ], + "x-ms-correlation-request-id": [ + "6cb520ef-2dc3-40b9-8952-4f113d1eb89e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161105Z:6cb520ef-2dc3-40b9-8952-4f113d1eb89e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:11:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b2814328-c2b4-4f2a-916f-7b1db1205f56" + ], + "x-ms-correlation-request-id": [ + "b2814328-c2b4-4f2a-916f-7b1db1205f56" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161120Z:b2814328-c2b4-4f2a-916f-7b1db1205f56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:11:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "055a8bb6-9aa0-4c9a-a6b0-67fca77c859a" + ], + "x-ms-correlation-request-id": [ + "055a8bb6-9aa0-4c9a-a6b0-67fca77c859a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161136Z:055a8bb6-9aa0-4c9a-a6b0-67fca77c859a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:11:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ccb5c910-5138-486d-9f8e-db679da0b9ca" + ], + "x-ms-correlation-request-id": [ + "ccb5c910-5138-486d-9f8e-db679da0b9ca" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161151Z:ccb5c910-5138-486d-9f8e-db679da0b9ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:11:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "df9ab266-8e1a-4edb-b5f9-8387e42616e7" + ], + "x-ms-correlation-request-id": [ + "df9ab266-8e1a-4edb-b5f9-8387e42616e7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161207Z:df9ab266-8e1a-4edb-b5f9-8387e42616e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:12:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "c5f089e2-d0c8-49c8-bb61-6cf6fa5fcc96" + ], + "x-ms-correlation-request-id": [ + "c5f089e2-d0c8-49c8-bb61-6cf6fa5fcc96" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161222Z:c5f089e2-d0c8-49c8-bb61-6cf6fa5fcc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:12:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "bb732882-e087-452b-a008-4e714cb996d6" + ], + "x-ms-correlation-request-id": [ + "bb732882-e087-452b-a008-4e714cb996d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161237Z:bb732882-e087-452b-a008-4e714cb996d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:12:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "ed5ec579-44e7-4717-bc7a-9673bbf0d6fd" + ], + "x-ms-correlation-request-id": [ + "ed5ec579-44e7-4717-bc7a-9673bbf0d6fd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161253Z:ed5ec579-44e7-4717-bc7a-9673bbf0d6fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:12:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "c437d591-f11d-4bd4-875c-fdb2f7416d64" + ], + "x-ms-correlation-request-id": [ + "c437d591-f11d-4bd4-875c-fdb2f7416d64" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161308Z:c437d591-f11d-4bd4-875c-fdb2f7416d64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:13:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b651419a-52a2-4612-a9d9-a8ebacec2f0e" + ], + "x-ms-correlation-request-id": [ + "b651419a-52a2-4612-a9d9-a8ebacec2f0e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161324Z:b651419a-52a2-4612-a9d9-a8ebacec2f0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:13:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "2b1c8dea-ae1e-46f5-9f00-104e1122fcd1" + ], + "x-ms-correlation-request-id": [ + "2b1c8dea-ae1e-46f5-9f00-104e1122fcd1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161339Z:2b1c8dea-ae1e-46f5-9f00-104e1122fcd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:13:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "c0be06eb-56dc-43f0-a510-2b1de2e4be7e" + ], + "x-ms-correlation-request-id": [ + "c0be06eb-56dc-43f0-a510-2b1de2e4be7e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161354Z:c0be06eb-56dc-43f0-a510-2b1de2e4be7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:13:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "e9ecca92-71f3-4a67-a6f7-f06b8edc94bd" + ], + "x-ms-correlation-request-id": [ + "e9ecca92-71f3-4a67-a6f7-f06b8edc94bd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161410Z:e9ecca92-71f3-4a67-a6f7-f06b8edc94bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:14:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "81c63423-7424-4513-a7d9-88055ee8701d" + ], + "x-ms-correlation-request-id": [ + "81c63423-7424-4513-a7d9-88055ee8701d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161425Z:81c63423-7424-4513-a7d9-88055ee8701d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:14:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "44303856-95fc-4a15-937e-f50f9f6efc0e" + ], + "x-ms-correlation-request-id": [ + "44303856-95fc-4a15-937e-f50f9f6efc0e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161441Z:44303856-95fc-4a15-937e-f50f9f6efc0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:14:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "a55d1a6c-00fb-4dfa-9980-c4b9ffc037b7" + ], + "x-ms-correlation-request-id": [ + "a55d1a6c-00fb-4dfa-9980-c4b9ffc037b7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161456Z:a55d1a6c-00fb-4dfa-9980-c4b9ffc037b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:14:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "bdc800dc-109c-46da-8d05-46a7005e9689" + ], + "x-ms-correlation-request-id": [ + "bdc800dc-109c-46da-8d05-46a7005e9689" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161512Z:bdc800dc-109c-46da-8d05-46a7005e9689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:15:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "d6528f44-c70b-4e0b-a0f3-1a38cfca6eee" + ], + "x-ms-correlation-request-id": [ + "d6528f44-c70b-4e0b-a0f3-1a38cfca6eee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161527Z:d6528f44-c70b-4e0b-a0f3-1a38cfca6eee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:15:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "92d18fc5-d1c2-497e-b4ce-df9731d9fd50" + ], + "x-ms-correlation-request-id": [ + "92d18fc5-d1c2-497e-b4ce-df9731d9fd50" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161543Z:92d18fc5-d1c2-497e-b4ce-df9731d9fd50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:15:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "261e5b9b-9f4a-43b3-b4d5-ff4ed36c0548" + ], + "x-ms-correlation-request-id": [ + "261e5b9b-9f4a-43b3-b4d5-ff4ed36c0548" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161558Z:261e5b9b-9f4a-43b3-b4d5-ff4ed36c0548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:15:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "569f852e-b5f5-4dbb-8513-bf97ab5328fa" + ], + "x-ms-correlation-request-id": [ + "569f852e-b5f5-4dbb-8513-bf97ab5328fa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161614Z:569f852e-b5f5-4dbb-8513-bf97ab5328fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:16:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "713b2e0b-0417-4ba5-b347-60ac86a40e91" + ], + "x-ms-correlation-request-id": [ + "713b2e0b-0417-4ba5-b347-60ac86a40e91" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161629Z:713b2e0b-0417-4ba5-b347-60ac86a40e91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:16:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "75d7feff-4f52-4598-b12c-0a0392fe0038" + ], + "x-ms-correlation-request-id": [ + "75d7feff-4f52-4598-b12c-0a0392fe0038" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161644Z:75d7feff-4f52-4598-b12c-0a0392fe0038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:16:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "8257f3af-6399-469e-b317-c9da8ef86166" + ], + "x-ms-correlation-request-id": [ + "8257f3af-6399-469e-b317-c9da8ef86166" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161700Z:8257f3af-6399-469e-b317-c9da8ef86166" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:17:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "bff7f1eb-2ee0-4bf9-be9d-bf5fb4487416" + ], + "x-ms-correlation-request-id": [ + "bff7f1eb-2ee0-4bf9-be9d-bf5fb4487416" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161715Z:bff7f1eb-2ee0-4bf9-be9d-bf5fb4487416" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:17:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "a8b182f1-1b67-49f6-bb3b-980d5be66345" + ], + "x-ms-correlation-request-id": [ + "a8b182f1-1b67-49f6-bb3b-980d5be66345" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161731Z:a8b182f1-1b67-49f6-bb3b-980d5be66345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:17:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "868ddb27-75e0-4099-b4ba-6bedd269d48a" + ], + "x-ms-correlation-request-id": [ + "868ddb27-75e0-4099-b4ba-6bedd269d48a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161746Z:868ddb27-75e0-4099-b4ba-6bedd269d48a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:17:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "99cb25da-fbb6-4680-a238-54e1c044da4d" + ], + "x-ms-correlation-request-id": [ + "99cb25da-fbb6-4680-a238-54e1c044da4d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161801Z:99cb25da-fbb6-4680-a238-54e1c044da4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:18:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "7855e09b-7442-44b0-93b9-e7e5e81ba90f" + ], + "x-ms-correlation-request-id": [ + "7855e09b-7442-44b0-93b9-e7e5e81ba90f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161817Z:7855e09b-7442-44b0-93b9-e7e5e81ba90f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:18:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "99e48933-8b88-49a1-84ec-4ad9b67057a3" + ], + "x-ms-correlation-request-id": [ + "99e48933-8b88-49a1-84ec-4ad9b67057a3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161832Z:99e48933-8b88-49a1-84ec-4ad9b67057a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:18:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "20299e59-373f-40f2-87c5-06f78a239fef" + ], + "x-ms-correlation-request-id": [ + "20299e59-373f-40f2-87c5-06f78a239fef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161848Z:20299e59-373f-40f2-87c5-06f78a239fef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:18:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "afae496f-d4a6-4b21-a8f9-b5dd197a65b4" + ], + "x-ms-correlation-request-id": [ + "afae496f-d4a6-4b21-a8f9-b5dd197a65b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161903Z:afae496f-d4a6-4b21-a8f9-b5dd197a65b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:19:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "4b2f52df-1ca0-4597-a3ad-150449a0fc85" + ], + "x-ms-correlation-request-id": [ + "4b2f52df-1ca0-4597-a3ad-150449a0fc85" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161918Z:4b2f52df-1ca0-4597-a3ad-150449a0fc85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:19:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "16f6d32f-6a82-4ed3-9f2a-7a9598c380f4" + ], + "x-ms-correlation-request-id": [ + "16f6d32f-6a82-4ed3-9f2a-7a9598c380f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161934Z:16f6d32f-6a82-4ed3-9f2a-7a9598c380f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:19:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "1e116c46-74e9-47d3-9d50-83b8b13960ee" + ], + "x-ms-correlation-request-id": [ + "1e116c46-74e9-47d3-9d50-83b8b13960ee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T161950Z:1e116c46-74e9-47d3-9d50-83b8b13960ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:19:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "40de2da3-69fe-4f0f-97f2-45c68e1dc550" + ], + "x-ms-correlation-request-id": [ + "40de2da3-69fe-4f0f-97f2-45c68e1dc550" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162005Z:40de2da3-69fe-4f0f-97f2-45c68e1dc550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:20:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "6a368f35-c889-4c7e-b18a-28610d5aaef8" + ], + "x-ms-correlation-request-id": [ + "6a368f35-c889-4c7e-b18a-28610d5aaef8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162021Z:6a368f35-c889-4c7e-b18a-28610d5aaef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:20:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "c81a1d51-a1ce-4e71-872a-49f5d8cedb21" + ], + "x-ms-correlation-request-id": [ + "c81a1d51-a1ce-4e71-872a-49f5d8cedb21" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162036Z:c81a1d51-a1ce-4e71-872a-49f5d8cedb21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:20:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "ab6dd931-411c-4ab8-b07d-2c99cc0593e5" + ], + "x-ms-correlation-request-id": [ + "ab6dd931-411c-4ab8-b07d-2c99cc0593e5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162051Z:ab6dd931-411c-4ab8-b07d-2c99cc0593e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:20:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "40af9ab8-1636-49bd-8ec5-a160b5ba8af4" + ], + "x-ms-correlation-request-id": [ + "40af9ab8-1636-49bd-8ec5-a160b5ba8af4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162107Z:40af9ab8-1636-49bd-8ec5-a160b5ba8af4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:21:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "edc7ebef-350d-47df-8981-98a18d531e89" ], "x-ms-correlation-request-id": [ - "d1be58a9-6f50-44fc-98f5-b2816ee11163" + "edc7ebef-350d-47df-8981-98a18d531e89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200046Z:d1be58a9-6f50-44fc-98f5-b2816ee11163" + "FRANCESOUTH:20201106T162122Z:edc7ebef-350d-47df-8981-98a18d531e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10992,24 +19323,21 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:00:45 GMT" - ], - "Content-Length": [ - "524" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 06 Nov 2020 16:21:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9\",\r\n \"name\": \"cff92e2a-733f-4cf8-b3ef-46dca6f37dc9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-23T20:00:15.7332537Z\",\r\n \"endTime\": \"2020-10-23T20:00:17.0769684Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/eastus/operationResults/cff92e2a-733f-4cf8-b3ef-46dca6f37dc9?api-version=2020-06-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jZmY5MmUyYS03MzNmLTRjZjgtYjNlZi00NmRjYTZmMzdkYzk/YXBpLXZlcnNpb249MjAyMC0wNi0wMSZvcGVyYXRpb25SZXN1bHRSZXNwb25zZVR5cGU9TG9jYXRpb24=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11017,7 +19345,7 @@ "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -11027,29 +19355,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a30ae3e1-ef25-4b93-bc89-68276546f524" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], - "X-Powered-By": [ - "ASP.NET" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11958" + ], + "x-ms-request-id": [ + "727e1321-5c8e-40c9-9842-240182e2c521" ], "x-ms-correlation-request-id": [ - "88140b03-c982-43bf-99f1-740201cf94aa" + "727e1321-5c8e-40c9-9842-240182e2c521" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200046Z:88140b03-c982-43bf-99f1-740201cf94aa" + "FRANCESOUTH:20201106T162138Z:727e1321-5c8e-40c9-9842-240182e2c521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11058,33 +19380,24 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:00:45 GMT" - ], - "Content-Length": [ - "1798" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 06 Nov 2020 16:21:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"name\": \"ps7560/ps3683/ps8882\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-10-23T20%3A00%3A15.7804265Z'\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"volumeType\": \"\",\r\n \"dataProtection\": {},\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"name\": \"ps8882\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps8882\",\r\n \"ownerId\": \"e6db99ca-cbc5-4bf6-b9f6-acb8edf404c5\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_8df55ff9\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.Network/virtualNetworks/ps2981-vnet/subnets/default\",\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2981/providers/Microsoft.NetApp/netAppAccounts/ps7560/capacityPools/ps3683/volumes/ps8882\",\r\n \"poolId\": \"8d3cd0f9-b64a-3f99-b336-ba92800a9c2e\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"fileSystemId\": \"d167640c-27af-74c0-2667-7eef5c11127b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.2.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4997?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDk5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5ffe27f2-ff05-4a88-be4f-644e980037ed" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -11100,22 +19413,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" ], "x-ms-request-id": [ - "11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + "26ef73c5-1671-49e5-a928-46232723cee2" ], "x-ms-correlation-request-id": [ - "11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + "26ef73c5-1671-49e5-a928-46232723cee2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200050Z:11c46b13-8e27-40e9-9d61-ffb3e1248ca1" + "FRANCESOUTH:20201106T162153Z:26ef73c5-1671-49e5-a928-46232723cee2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11124,7 +19437,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:00:49 GMT" + "Fri, 06 Nov 2020 16:21:52 GMT" ], "Expires": [ "-1" @@ -11137,8 +19450,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11157,22 +19470,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11956" ], "x-ms-request-id": [ - "e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + "a8ea43aa-78f0-4102-b0cf-2e5854286556" ], "x-ms-correlation-request-id": [ - "e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + "a8ea43aa-78f0-4102-b0cf-2e5854286556" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200105Z:e8f998ca-b5a1-4eb3-bc22-d62530f75cbf" + "FRANCESOUTH:20201106T162208Z:a8ea43aa-78f0-4102-b0cf-2e5854286556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11181,7 +19494,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:01:05 GMT" + "Fri, 06 Nov 2020 16:22:08 GMT" ], "Expires": [ "-1" @@ -11194,8 +19507,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11214,22 +19527,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11955" ], "x-ms-request-id": [ - "4e17a664-65b1-4d68-b60a-4102c46dc56d" + "92b9a694-ca87-467f-9998-27beec09edea" ], "x-ms-correlation-request-id": [ - "4e17a664-65b1-4d68-b60a-4102c46dc56d" + "92b9a694-ca87-467f-9998-27beec09edea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200120Z:4e17a664-65b1-4d68-b60a-4102c46dc56d" + "FRANCESOUTH:20201106T162224Z:92b9a694-ca87-467f-9998-27beec09edea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11238,7 +19551,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:01:20 GMT" + "Fri, 06 Nov 2020 16:22:24 GMT" ], "Expires": [ "-1" @@ -11251,8 +19564,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11271,22 +19584,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11954" ], "x-ms-request-id": [ - "cc6002a8-3e1e-4d0b-b182-73f7353020bd" + "0c7853d0-b10d-43e0-9b95-4378be1c4c6c" ], "x-ms-correlation-request-id": [ - "cc6002a8-3e1e-4d0b-b182-73f7353020bd" + "0c7853d0-b10d-43e0-9b95-4378be1c4c6c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200136Z:cc6002a8-3e1e-4d0b-b182-73f7353020bd" + "FRANCESOUTH:20201106T162239Z:0c7853d0-b10d-43e0-9b95-4378be1c4c6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11295,7 +19608,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:01:35 GMT" + "Fri, 06 Nov 2020 16:22:39 GMT" ], "Expires": [ "-1" @@ -11308,8 +19621,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11328,22 +19641,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11953" ], "x-ms-request-id": [ - "7b18e14a-7585-4e62-95fe-0dc362fddcdf" + "08db5775-04cb-4ec5-a187-17e097086cd8" ], "x-ms-correlation-request-id": [ - "7b18e14a-7585-4e62-95fe-0dc362fddcdf" + "08db5775-04cb-4ec5-a187-17e097086cd8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200151Z:7b18e14a-7585-4e62-95fe-0dc362fddcdf" + "FRANCESOUTH:20201106T162255Z:08db5775-04cb-4ec5-a187-17e097086cd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11352,7 +19665,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:01:51 GMT" + "Fri, 06 Nov 2020 16:22:54 GMT" ], "Expires": [ "-1" @@ -11365,8 +19678,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11385,22 +19698,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11952" ], "x-ms-request-id": [ - "a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + "c053d189-f23f-4235-aef2-24eb5e6e04e1" ], "x-ms-correlation-request-id": [ - "a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + "c053d189-f23f-4235-aef2-24eb5e6e04e1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200207Z:a7ca75d8-3b2e-45f0-bcda-6fb4cc35a95d" + "FRANCESOUTH:20201106T162310Z:c053d189-f23f-4235-aef2-24eb5e6e04e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11409,7 +19722,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:02:06 GMT" + "Fri, 06 Nov 2020 16:23:10 GMT" ], "Expires": [ "-1" @@ -11422,8 +19735,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11442,22 +19755,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11951" ], "x-ms-request-id": [ - "952f73dd-0b64-4ca7-a748-26650486da3a" + "d2b98419-7686-4dcd-a919-e9ed89f2b1c5" ], "x-ms-correlation-request-id": [ - "952f73dd-0b64-4ca7-a748-26650486da3a" + "d2b98419-7686-4dcd-a919-e9ed89f2b1c5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200222Z:952f73dd-0b64-4ca7-a748-26650486da3a" + "FRANCESOUTH:20201106T162325Z:d2b98419-7686-4dcd-a919-e9ed89f2b1c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11466,7 +19779,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:02:21 GMT" + "Fri, 06 Nov 2020 16:23:25 GMT" ], "Expires": [ "-1" @@ -11479,8 +19792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11499,22 +19812,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11950" ], "x-ms-request-id": [ - "24ffcd37-a6d5-4d11-940f-851ee570555e" + "a97c9e97-7a01-4eda-94bf-078a8154da4d" ], "x-ms-correlation-request-id": [ - "24ffcd37-a6d5-4d11-940f-851ee570555e" + "a97c9e97-7a01-4eda-94bf-078a8154da4d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200237Z:24ffcd37-a6d5-4d11-940f-851ee570555e" + "FRANCESOUTH:20201106T162341Z:a97c9e97-7a01-4eda-94bf-078a8154da4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11523,7 +19836,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:02:37 GMT" + "Fri, 06 Nov 2020 16:23:41 GMT" ], "Expires": [ "-1" @@ -11536,8 +19849,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11556,22 +19869,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11949" ], "x-ms-request-id": [ - "e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + "73e5c613-21a1-446c-978b-d1c10ccf2171" ], "x-ms-correlation-request-id": [ - "e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + "73e5c613-21a1-446c-978b-d1c10ccf2171" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200253Z:e6cdcad6-924c-49d5-a50e-b53b3e9417d8" + "FRANCESOUTH:20201106T162357Z:73e5c613-21a1-446c-978b-d1c10ccf2171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11580,7 +19893,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:02:52 GMT" + "Fri, 06 Nov 2020 16:23:56 GMT" ], "Expires": [ "-1" @@ -11593,8 +19906,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11613,22 +19926,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11948" ], "x-ms-request-id": [ - "5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + "1527d1c6-8154-44fe-8ef5-28da3f7ba659" ], "x-ms-correlation-request-id": [ - "5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + "1527d1c6-8154-44fe-8ef5-28da3f7ba659" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200308Z:5ccd0f8a-4622-41b3-baeb-b7dde2f173c1" + "FRANCESOUTH:20201106T162412Z:1527d1c6-8154-44fe-8ef5-28da3f7ba659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11637,7 +19950,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:03:08 GMT" + "Fri, 06 Nov 2020 16:24:11 GMT" ], "Expires": [ "-1" @@ -11650,8 +19963,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11670,22 +19983,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11947" ], "x-ms-request-id": [ - "2a11eeee-33f8-4b0f-85e4-c375fc453764" + "7e803ac3-47a9-4d98-9ee7-af360bd56c38" ], "x-ms-correlation-request-id": [ - "2a11eeee-33f8-4b0f-85e4-c375fc453764" + "7e803ac3-47a9-4d98-9ee7-af360bd56c38" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200323Z:2a11eeee-33f8-4b0f-85e4-c375fc453764" + "FRANCESOUTH:20201106T162427Z:7e803ac3-47a9-4d98-9ee7-af360bd56c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11694,7 +20007,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:03:23 GMT" + "Fri, 06 Nov 2020 16:24:27 GMT" ], "Expires": [ "-1" @@ -11707,8 +20020,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11727,22 +20040,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11946" ], "x-ms-request-id": [ - "ccfd584f-001d-4184-90b9-74293fbefd8a" + "f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" ], "x-ms-correlation-request-id": [ - "ccfd584f-001d-4184-90b9-74293fbefd8a" + "f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200339Z:ccfd584f-001d-4184-90b9-74293fbefd8a" + "FRANCESOUTH:20201106T162443Z:f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11751,7 +20064,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:03:38 GMT" + "Fri, 06 Nov 2020 16:24:42 GMT" ], "Expires": [ "-1" @@ -11764,8 +20077,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11784,22 +20097,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11945" ], "x-ms-request-id": [ - "3233e488-3116-4e56-850c-634f045c9276" + "ace8218b-5c0e-4e6a-bac6-07abd0941d7e" ], "x-ms-correlation-request-id": [ - "3233e488-3116-4e56-850c-634f045c9276" + "ace8218b-5c0e-4e6a-bac6-07abd0941d7e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200354Z:3233e488-3116-4e56-850c-634f045c9276" + "FRANCESOUTH:20201106T162458Z:ace8218b-5c0e-4e6a-bac6-07abd0941d7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11808,7 +20121,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:03:54 GMT" + "Fri, 06 Nov 2020 16:24:58 GMT" ], "Expires": [ "-1" @@ -11821,8 +20134,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11841,22 +20154,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11944" ], "x-ms-request-id": [ - "594a9598-a82b-4860-af3e-c18194295318" + "a84a6554-1b50-496d-bb9e-55be741888e5" ], "x-ms-correlation-request-id": [ - "594a9598-a82b-4860-af3e-c18194295318" + "a84a6554-1b50-496d-bb9e-55be741888e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200409Z:594a9598-a82b-4860-af3e-c18194295318" + "FRANCESOUTH:20201106T162514Z:a84a6554-1b50-496d-bb9e-55be741888e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11865,7 +20178,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:04:09 GMT" + "Fri, 06 Nov 2020 16:25:13 GMT" ], "Expires": [ "-1" @@ -11878,8 +20191,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11898,22 +20211,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11943" ], "x-ms-request-id": [ - "c8f6a26f-00a0-405b-add2-a8d031f85e9c" + "57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" ], "x-ms-correlation-request-id": [ - "c8f6a26f-00a0-405b-add2-a8d031f85e9c" + "57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200425Z:c8f6a26f-00a0-405b-add2-a8d031f85e9c" + "FRANCESOUTH:20201106T162529Z:57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11922,7 +20235,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:04:24 GMT" + "Fri, 06 Nov 2020 16:25:29 GMT" ], "Expires": [ "-1" @@ -11935,8 +20248,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11955,22 +20268,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11942" ], "x-ms-request-id": [ - "fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + "199c9015-68d3-4b13-b6a3-2b072306fa94" ], "x-ms-correlation-request-id": [ - "fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + "199c9015-68d3-4b13-b6a3-2b072306fa94" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200440Z:fd3f5e19-b165-4687-b6e4-ab0e6ff49c2a" + "FRANCESOUTH:20201106T162544Z:199c9015-68d3-4b13-b6a3-2b072306fa94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11979,7 +20292,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:04:39 GMT" + "Fri, 06 Nov 2020 16:25:44 GMT" ], "Expires": [ "-1" @@ -11992,8 +20305,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12012,22 +20325,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11941" ], "x-ms-request-id": [ - "fc1af87f-f671-42c0-bde8-97cb34c0633d" + "d314bd7e-993d-46f9-a97b-fc290ef745e2" ], "x-ms-correlation-request-id": [ - "fc1af87f-f671-42c0-bde8-97cb34c0633d" + "d314bd7e-993d-46f9-a97b-fc290ef745e2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200456Z:fc1af87f-f671-42c0-bde8-97cb34c0633d" + "FRANCESOUTH:20201106T162600Z:d314bd7e-993d-46f9-a97b-fc290ef745e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12036,7 +20349,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:04:56 GMT" + "Fri, 06 Nov 2020 16:25:59 GMT" ], "Expires": [ "-1" @@ -12049,8 +20362,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12069,22 +20382,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11940" ], "x-ms-request-id": [ - "49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + "15921de2-581b-4cf0-880a-634ad6efbccc" ], "x-ms-correlation-request-id": [ - "49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + "15921de2-581b-4cf0-880a-634ad6efbccc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200511Z:49dd5142-a7d5-4c8e-9f17-a7f7f49a9b06" + "FRANCESOUTH:20201106T162615Z:15921de2-581b-4cf0-880a-634ad6efbccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12093,7 +20406,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:05:11 GMT" + "Fri, 06 Nov 2020 16:26:15 GMT" ], "Expires": [ "-1" @@ -12106,8 +20419,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12126,22 +20439,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11939" ], "x-ms-request-id": [ - "206a6894-7877-406a-8aff-72abc1aedf6e" + "0248022d-d69f-4764-8425-fffcd478c042" ], "x-ms-correlation-request-id": [ - "206a6894-7877-406a-8aff-72abc1aedf6e" + "0248022d-d69f-4764-8425-fffcd478c042" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200527Z:206a6894-7877-406a-8aff-72abc1aedf6e" + "FRANCESOUTH:20201106T162631Z:0248022d-d69f-4764-8425-fffcd478c042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12150,7 +20463,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:05:27 GMT" + "Fri, 06 Nov 2020 16:26:30 GMT" ], "Expires": [ "-1" @@ -12163,8 +20476,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12183,22 +20496,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11938" ], "x-ms-request-id": [ - "2afdd89b-ccca-4270-8cee-81559ad6606c" + "b3a5b9f1-d060-4f3b-a39e-94760b74fa45" ], "x-ms-correlation-request-id": [ - "2afdd89b-ccca-4270-8cee-81559ad6606c" + "b3a5b9f1-d060-4f3b-a39e-94760b74fa45" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200542Z:2afdd89b-ccca-4270-8cee-81559ad6606c" + "FRANCESOUTH:20201106T162646Z:b3a5b9f1-d060-4f3b-a39e-94760b74fa45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12207,7 +20520,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:05:42 GMT" + "Fri, 06 Nov 2020 16:26:46 GMT" ], "Expires": [ "-1" @@ -12220,8 +20533,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12240,22 +20553,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11937" ], "x-ms-request-id": [ - "107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + "19dfa07c-6284-45c2-9f6f-38c42127a446" ], "x-ms-correlation-request-id": [ - "107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + "19dfa07c-6284-45c2-9f6f-38c42127a446" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200558Z:107a4ba4-8f0b-4e60-b039-50b5dc85bc1b" + "FRANCESOUTH:20201106T162701Z:19dfa07c-6284-45c2-9f6f-38c42127a446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12264,7 +20577,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:05:57 GMT" + "Fri, 06 Nov 2020 16:27:01 GMT" ], "Expires": [ "-1" @@ -12277,8 +20590,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12297,22 +20610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11936" ], "x-ms-request-id": [ - "2f7dd116-e759-4ec2-9425-399efbb4ee1c" + "a5939c2a-c254-4d0d-9b04-389b0dd092e7" ], "x-ms-correlation-request-id": [ - "2f7dd116-e759-4ec2-9425-399efbb4ee1c" + "a5939c2a-c254-4d0d-9b04-389b0dd092e7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200613Z:2f7dd116-e759-4ec2-9425-399efbb4ee1c" + "FRANCESOUTH:20201106T162717Z:a5939c2a-c254-4d0d-9b04-389b0dd092e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12321,7 +20634,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:06:12 GMT" + "Fri, 06 Nov 2020 16:27:16 GMT" ], "Expires": [ "-1" @@ -12334,8 +20647,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12354,22 +20667,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11935" ], "x-ms-request-id": [ - "c10dd206-96db-4050-abeb-316d40d20457" + "f5e90768-382d-452d-8530-851e3e3109d2" ], "x-ms-correlation-request-id": [ - "c10dd206-96db-4050-abeb-316d40d20457" + "f5e90768-382d-452d-8530-851e3e3109d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200628Z:c10dd206-96db-4050-abeb-316d40d20457" + "FRANCESOUTH:20201106T162732Z:f5e90768-382d-452d-8530-851e3e3109d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12378,7 +20691,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:06:28 GMT" + "Fri, 06 Nov 2020 16:27:32 GMT" ], "Expires": [ "-1" @@ -12391,8 +20704,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12411,22 +20724,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11934" ], "x-ms-request-id": [ - "619c8eb2-1006-4eb8-a756-229696996dc3" + "d1ed1d40-7e47-4085-adea-5098572deab0" ], "x-ms-correlation-request-id": [ - "619c8eb2-1006-4eb8-a756-229696996dc3" + "d1ed1d40-7e47-4085-adea-5098572deab0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200644Z:619c8eb2-1006-4eb8-a756-229696996dc3" + "FRANCESOUTH:20201106T162748Z:d1ed1d40-7e47-4085-adea-5098572deab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12435,7 +20748,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:06:43 GMT" + "Fri, 06 Nov 2020 16:27:47 GMT" ], "Expires": [ "-1" @@ -12448,8 +20761,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12468,22 +20781,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11933" ], "x-ms-request-id": [ - "6341007c-35a5-4e64-8fc4-09e707191ab4" + "bac37002-31c6-465e-869b-b8e70f00c728" ], "x-ms-correlation-request-id": [ - "6341007c-35a5-4e64-8fc4-09e707191ab4" + "bac37002-31c6-465e-869b-b8e70f00c728" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200659Z:6341007c-35a5-4e64-8fc4-09e707191ab4" + "FRANCESOUTH:20201106T162803Z:bac37002-31c6-465e-869b-b8e70f00c728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12492,7 +20805,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:06:58 GMT" + "Fri, 06 Nov 2020 16:28:02 GMT" ], "Expires": [ "-1" @@ -12505,8 +20818,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12525,22 +20838,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11932" ], "x-ms-request-id": [ - "a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + "92a6532d-0288-42c7-9e06-051c33f3be6e" ], "x-ms-correlation-request-id": [ - "a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + "92a6532d-0288-42c7-9e06-051c33f3be6e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200715Z:a35d48fd-3bdb-43a2-87c7-1a8a9f6d1852" + "FRANCESOUTH:20201106T162819Z:92a6532d-0288-42c7-9e06-051c33f3be6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12549,7 +20862,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:07:14 GMT" + "Fri, 06 Nov 2020 16:28:18 GMT" ], "Expires": [ "-1" @@ -12562,8 +20875,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12582,22 +20895,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11931" ], "x-ms-request-id": [ - "d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + "849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" ], "x-ms-correlation-request-id": [ - "d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + "849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200730Z:d12efad8-ea3d-4c2b-9189-3798e8cebbc7" + "FRANCESOUTH:20201106T162834Z:849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12606,7 +20919,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:07:30 GMT" + "Fri, 06 Nov 2020 16:28:34 GMT" ], "Expires": [ "-1" @@ -12619,8 +20932,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12639,22 +20952,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11930" ], "x-ms-request-id": [ - "c55df56a-749b-445c-8d18-9beeb384a15b" + "230d7d21-834b-4c1f-a297-a8c9795f04b0" ], "x-ms-correlation-request-id": [ - "c55df56a-749b-445c-8d18-9beeb384a15b" + "230d7d21-834b-4c1f-a297-a8c9795f04b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200745Z:c55df56a-749b-445c-8d18-9beeb384a15b" + "FRANCESOUTH:20201106T162850Z:230d7d21-834b-4c1f-a297-a8c9795f04b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12663,7 +20976,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:07:45 GMT" + "Fri, 06 Nov 2020 16:28:49 GMT" ], "Expires": [ "-1" @@ -12676,8 +20989,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12696,22 +21009,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11929" ], "x-ms-request-id": [ - "fd011b29-4f3d-4ec4-86f3-d75a8225c445" + "a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" ], "x-ms-correlation-request-id": [ - "fd011b29-4f3d-4ec4-86f3-d75a8225c445" + "a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200801Z:fd011b29-4f3d-4ec4-86f3-d75a8225c445" + "FRANCESOUTH:20201106T162905Z:a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12720,7 +21033,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:08:00 GMT" + "Fri, 06 Nov 2020 16:29:05 GMT" ], "Expires": [ "-1" @@ -12733,8 +21046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12753,22 +21066,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11928" ], "x-ms-request-id": [ - "70e7451b-21b6-45e0-b02b-2cb89b13e4db" + "30f09146-52b7-484e-a2bb-07b1d25393d8" ], "x-ms-correlation-request-id": [ - "70e7451b-21b6-45e0-b02b-2cb89b13e4db" + "30f09146-52b7-484e-a2bb-07b1d25393d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200816Z:70e7451b-21b6-45e0-b02b-2cb89b13e4db" + "FRANCESOUTH:20201106T162920Z:30f09146-52b7-484e-a2bb-07b1d25393d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12777,7 +21090,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:08:15 GMT" + "Fri, 06 Nov 2020 16:29:20 GMT" ], "Expires": [ "-1" @@ -12790,8 +21103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12810,22 +21123,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11927" ], "x-ms-request-id": [ - "a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + "9cb032d1-98a0-4125-9d26-72cacb74be25" ], "x-ms-correlation-request-id": [ - "a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + "9cb032d1-98a0-4125-9d26-72cacb74be25" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200831Z:a6d97dca-aefc-49b3-81b9-17bd27f5ecad" + "FRANCESOUTH:20201106T162936Z:9cb032d1-98a0-4125-9d26-72cacb74be25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12834,7 +21147,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:08:31 GMT" + "Fri, 06 Nov 2020 16:29:35 GMT" ], "Expires": [ "-1" @@ -12847,8 +21160,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12867,22 +21180,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11926" ], "x-ms-request-id": [ - "992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + "8c71bb14-83f6-46d6-aad9-a0542ccc43f7" ], "x-ms-correlation-request-id": [ - "992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + "8c71bb14-83f6-46d6-aad9-a0542ccc43f7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200847Z:992b8f6d-a108-4eab-9299-aeb6abf9c7e5" + "FRANCESOUTH:20201106T162951Z:8c71bb14-83f6-46d6-aad9-a0542ccc43f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12891,7 +21204,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:08:46 GMT" + "Fri, 06 Nov 2020 16:29:50 GMT" ], "Expires": [ "-1" @@ -12904,8 +21217,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12924,22 +21237,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11925" ], "x-ms-request-id": [ - "7bb0052a-e437-4fea-a122-2aca806e9eca" + "d77ac9d2-b396-4e35-8f57-5557c900738f" ], "x-ms-correlation-request-id": [ - "7bb0052a-e437-4fea-a122-2aca806e9eca" + "d77ac9d2-b396-4e35-8f57-5557c900738f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200902Z:7bb0052a-e437-4fea-a122-2aca806e9eca" + "FRANCESOUTH:20201106T163006Z:d77ac9d2-b396-4e35-8f57-5557c900738f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12948,7 +21261,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:09:01 GMT" + "Fri, 06 Nov 2020 16:30:06 GMT" ], "Expires": [ "-1" @@ -12961,8 +21274,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12981,22 +21294,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11924" ], "x-ms-request-id": [ - "5c81af8a-990f-4996-aebe-fbe9e09e7e06" + "986d09c1-6626-499e-9fa1-5498bba0e9b2" ], "x-ms-correlation-request-id": [ - "5c81af8a-990f-4996-aebe-fbe9e09e7e06" + "986d09c1-6626-499e-9fa1-5498bba0e9b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200917Z:5c81af8a-990f-4996-aebe-fbe9e09e7e06" + "FRANCESOUTH:20201106T163022Z:986d09c1-6626-499e-9fa1-5498bba0e9b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13005,7 +21318,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:09:17 GMT" + "Fri, 06 Nov 2020 16:30:21 GMT" ], "Expires": [ "-1" @@ -13018,8 +21331,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13038,22 +21351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11923" ], "x-ms-request-id": [ - "1c44724e-a910-48d5-ab91-cf4abbf0e75d" + "bc843b21-e63c-40c0-acd5-eeccd2d73501" ], "x-ms-correlation-request-id": [ - "1c44724e-a910-48d5-ab91-cf4abbf0e75d" + "bc843b21-e63c-40c0-acd5-eeccd2d73501" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T200933Z:1c44724e-a910-48d5-ab91-cf4abbf0e75d" + "FRANCESOUTH:20201106T163037Z:bc843b21-e63c-40c0-acd5-eeccd2d73501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13062,7 +21375,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:09:32 GMT" + "Fri, 06 Nov 2020 16:30:36 GMT" ], "Expires": [ "-1" @@ -13075,8 +21388,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13095,22 +21408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11922" ], "x-ms-request-id": [ - "3c22f1ab-9bed-479f-a88b-d61225046b4e" + "da4aa205-3649-4b64-ae23-8bb723c6f93b" ], "x-ms-correlation-request-id": [ - "3c22f1ab-9bed-479f-a88b-d61225046b4e" + "da4aa205-3649-4b64-ae23-8bb723c6f93b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201001Z:3c22f1ab-9bed-479f-a88b-d61225046b4e" + "FRANCESOUTH:20201106T163053Z:da4aa205-3649-4b64-ae23-8bb723c6f93b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13119,7 +21432,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:00 GMT" + "Fri, 06 Nov 2020 16:30:52 GMT" ], "Expires": [ "-1" @@ -13132,8 +21445,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13152,22 +21465,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11921" ], "x-ms-request-id": [ - "e6f213f9-1342-474d-9372-df15d1138c85" + "f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" ], "x-ms-correlation-request-id": [ - "e6f213f9-1342-474d-9372-df15d1138c85" + "f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201016Z:e6f213f9-1342-474d-9372-df15d1138c85" + "FRANCESOUTH:20201106T163108Z:f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13176,7 +21489,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:16 GMT" + "Fri, 06 Nov 2020 16:31:07 GMT" ], "Expires": [ "-1" @@ -13189,8 +21502,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13208,17 +21521,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11920" ], "x-ms-request-id": [ - "145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + "2e13dda9-13d5-4718-b580-8778c78326db" ], "x-ms-correlation-request-id": [ - "145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + "2e13dda9-13d5-4718-b580-8778c78326db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201032Z:145ae0d9-30bd-4dd1-975c-ee559f9a8f0a" + "FRANCESOUTH:20201106T163123Z:2e13dda9-13d5-4718-b580-8778c78326db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13227,7 +21546,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:31 GMT" + "Fri, 06 Nov 2020 16:31:23 GMT" ], "Expires": [ "-1" @@ -13237,11 +21556,11 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9UY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13259,17 +21578,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11919" ], "x-ms-request-id": [ - "7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + "4e523dfe-d94d-46f2-b278-85566838347b" ], "x-ms-correlation-request-id": [ - "7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + "4e523dfe-d94d-46f2-b278-85566838347b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201032Z:7fb7caaf-8a81-46f6-a873-fe055c58c2c5" + "FRANCESOUTH:20201106T163139Z:4e523dfe-d94d-46f2-b278-85566838347b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13278,7 +21603,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:31 GMT" + "Fri, 06 Nov 2020 16:31:38 GMT" ], "Expires": [ "-1" @@ -13288,20 +21613,14 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2981?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjk4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b7235a41-a9c2-4d65-b311-8d055b43c115" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -13317,22 +21636,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" ], "x-ms-request-id": [ - "2c0d1dd6-d122-4ed2-be54-e3ff852674af" + "62dc7702-3510-4b91-98d7-e538020761a8" ], "x-ms-correlation-request-id": [ - "2c0d1dd6-d122-4ed2-be54-e3ff852674af" + "62dc7702-3510-4b91-98d7-e538020761a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201035Z:2c0d1dd6-d122-4ed2-be54-e3ff852674af" + "FRANCESOUTH:20201106T163154Z:62dc7702-3510-4b91-98d7-e538020761a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13341,7 +21660,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:34 GMT" + "Fri, 06 Nov 2020 16:31:54 GMT" ], "Expires": [ "-1" @@ -13354,8 +21673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13374,22 +21693,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11917" ], "x-ms-request-id": [ - "9e8114a2-7955-4984-8746-2054f9659de4" + "20249d97-9ca3-4a58-a7c7-fe625d07c165" ], "x-ms-correlation-request-id": [ - "9e8114a2-7955-4984-8746-2054f9659de4" + "20249d97-9ca3-4a58-a7c7-fe625d07c165" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201050Z:9e8114a2-7955-4984-8746-2054f9659de4" + "FRANCESOUTH:20201106T163209Z:20249d97-9ca3-4a58-a7c7-fe625d07c165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13398,7 +21717,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:10:50 GMT" + "Fri, 06 Nov 2020 16:32:09 GMT" ], "Expires": [ "-1" @@ -13411,8 +21730,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13431,22 +21750,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11916" ], "x-ms-request-id": [ - "044861c4-6706-4603-aa09-a332af9234ad" + "44f62c49-124f-4fbb-b0c1-b40daea92dfc" ], "x-ms-correlation-request-id": [ - "044861c4-6706-4603-aa09-a332af9234ad" + "44f62c49-124f-4fbb-b0c1-b40daea92dfc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201106Z:044861c4-6706-4603-aa09-a332af9234ad" + "FRANCESOUTH:20201106T163225Z:44f62c49-124f-4fbb-b0c1-b40daea92dfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13455,7 +21774,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:11:06 GMT" + "Fri, 06 Nov 2020 16:32:24 GMT" ], "Expires": [ "-1" @@ -13468,8 +21787,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13488,22 +21807,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11915" ], "x-ms-request-id": [ - "2352646d-6583-4aa4-9e25-99e5df1c723a" + "657c7b80-4c85-4c00-ab5d-bf59838df67a" ], "x-ms-correlation-request-id": [ - "2352646d-6583-4aa4-9e25-99e5df1c723a" + "657c7b80-4c85-4c00-ab5d-bf59838df67a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201121Z:2352646d-6583-4aa4-9e25-99e5df1c723a" + "FRANCESOUTH:20201106T163241Z:657c7b80-4c85-4c00-ab5d-bf59838df67a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13512,7 +21831,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:11:21 GMT" + "Fri, 06 Nov 2020 16:32:40 GMT" ], "Expires": [ "-1" @@ -13525,8 +21844,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13545,22 +21864,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11914" ], "x-ms-request-id": [ - "03d833c2-3b65-4db8-99e5-35f9bcf7a582" + "27698c8c-1379-4a6d-aacd-9873020fa80c" ], "x-ms-correlation-request-id": [ - "03d833c2-3b65-4db8-99e5-35f9bcf7a582" + "27698c8c-1379-4a6d-aacd-9873020fa80c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201136Z:03d833c2-3b65-4db8-99e5-35f9bcf7a582" + "FRANCESOUTH:20201106T163256Z:27698c8c-1379-4a6d-aacd-9873020fa80c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13569,7 +21888,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:11:36 GMT" + "Fri, 06 Nov 2020 16:32:56 GMT" ], "Expires": [ "-1" @@ -13582,8 +21901,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13602,22 +21921,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11913" ], "x-ms-request-id": [ - "ab2d3aaf-0a85-413e-b024-c2e40888335c" + "88ebd207-8d1e-434f-ac09-fd972867b415" ], "x-ms-correlation-request-id": [ - "ab2d3aaf-0a85-413e-b024-c2e40888335c" + "88ebd207-8d1e-434f-ac09-fd972867b415" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201152Z:ab2d3aaf-0a85-413e-b024-c2e40888335c" + "FRANCESOUTH:20201106T163312Z:88ebd207-8d1e-434f-ac09-fd972867b415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13626,7 +21945,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:11:51 GMT" + "Fri, 06 Nov 2020 16:33:11 GMT" ], "Expires": [ "-1" @@ -13639,8 +21958,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13658,23 +21977,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11912" ], "x-ms-request-id": [ - "8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + "0f41c88b-d091-4155-b75e-c4f4c5d33255" ], "x-ms-correlation-request-id": [ - "8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + "0f41c88b-d091-4155-b75e-c4f4c5d33255" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201207Z:8fb4292d-f7ce-4393-9ee3-a8d8eb308f4d" + "FRANCESOUTH:20201106T163327Z:0f41c88b-d091-4155-b75e-c4f4c5d33255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13683,7 +21996,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:12:06 GMT" + "Fri, 06 Nov 2020 16:33:27 GMT" ], "Expires": [ "-1" @@ -13693,11 +22006,11 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5ODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13715,23 +22028,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11911" ], "x-ms-request-id": [ - "2494db51-0595-4582-b65e-d61a125b62a3" + "60f20532-f36b-423c-95f4-f4a8916eea1a" ], "x-ms-correlation-request-id": [ - "2494db51-0595-4582-b65e-d61a125b62a3" + "60f20532-f36b-423c-95f4-f4a8916eea1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201222Z:2494db51-0595-4582-b65e-d61a125b62a3" + "FRANCESOUTH:20201106T163327Z:60f20532-f36b-423c-95f4-f4a8916eea1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13740,7 +22047,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:12:22 GMT" + "Fri, 06 Nov 2020 16:33:27 GMT" ], "Expires": [ "-1" @@ -13750,14 +22057,20 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps4797?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDc5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b1bea013-6f37-4cfb-b3be-82f21ec51af3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", @@ -13773,22 +22086,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-request-id": [ - "edccc22e-ce16-41ee-a0c1-e722a6d2c315" + "cadc2e75-bd17-4cf1-994a-fc64162e46b0" ], "x-ms-correlation-request-id": [ - "edccc22e-ce16-41ee-a0c1-e722a6d2c315" + "cadc2e75-bd17-4cf1-994a-fc64162e46b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201238Z:edccc22e-ce16-41ee-a0c1-e722a6d2c315" + "FRANCESOUTH:20201106T163330Z:cadc2e75-bd17-4cf1-994a-fc64162e46b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13797,7 +22110,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:12:38 GMT" + "Fri, 06 Nov 2020 16:33:30 GMT" ], "Expires": [ "-1" @@ -13810,8 +22123,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13830,22 +22143,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11910" ], "x-ms-request-id": [ - "327f484e-9e87-49ee-a784-4ef855acca59" + "187d8a86-f598-4028-a25d-7691c191f037" ], "x-ms-correlation-request-id": [ - "327f484e-9e87-49ee-a784-4ef855acca59" + "187d8a86-f598-4028-a25d-7691c191f037" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201253Z:327f484e-9e87-49ee-a784-4ef855acca59" + "FRANCESOUTH:20201106T163346Z:187d8a86-f598-4028-a25d-7691c191f037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13854,7 +22167,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:12:53 GMT" + "Fri, 06 Nov 2020 16:33:45 GMT" ], "Expires": [ "-1" @@ -13867,8 +22180,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13887,22 +22200,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11909" ], "x-ms-request-id": [ - "37b12dc6-f78a-47c4-b707-8104d8a2791f" + "464b7016-38da-4d6f-86ca-b0a91f35ee1a" ], "x-ms-correlation-request-id": [ - "37b12dc6-f78a-47c4-b707-8104d8a2791f" + "464b7016-38da-4d6f-86ca-b0a91f35ee1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201309Z:37b12dc6-f78a-47c4-b707-8104d8a2791f" + "FRANCESOUTH:20201106T163401Z:464b7016-38da-4d6f-86ca-b0a91f35ee1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13911,7 +22224,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:13:08 GMT" + "Fri, 06 Nov 2020 16:34:00 GMT" ], "Expires": [ "-1" @@ -13924,8 +22237,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13944,22 +22257,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11908" ], "x-ms-request-id": [ - "cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + "ec116392-76bd-41c1-9722-d50b94e3c393" ], "x-ms-correlation-request-id": [ - "cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + "ec116392-76bd-41c1-9722-d50b94e3c393" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201324Z:cfdf3cbc-274e-4cb6-83e9-767bc4abc548" + "FRANCESOUTH:20201106T163416Z:ec116392-76bd-41c1-9722-d50b94e3c393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13968,7 +22281,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:13:23 GMT" + "Fri, 06 Nov 2020 16:34:15 GMT" ], "Expires": [ "-1" @@ -13981,8 +22294,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14001,22 +22314,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11907" ], "x-ms-request-id": [ - "0b270784-d71a-469b-ac2b-841360f9c245" + "c3b14ad0-2eea-465d-855f-c38d46574015" ], "x-ms-correlation-request-id": [ - "0b270784-d71a-469b-ac2b-841360f9c245" + "c3b14ad0-2eea-465d-855f-c38d46574015" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201339Z:0b270784-d71a-469b-ac2b-841360f9c245" + "FRANCESOUTH:20201106T163432Z:c3b14ad0-2eea-465d-855f-c38d46574015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14025,7 +22338,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:13:39 GMT" + "Fri, 06 Nov 2020 16:34:31 GMT" ], "Expires": [ "-1" @@ -14038,8 +22351,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14058,22 +22371,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11906" ], "x-ms-request-id": [ - "f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + "72eb70fa-b792-46d9-9e2c-5377de4a20fc" ], "x-ms-correlation-request-id": [ - "f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + "72eb70fa-b792-46d9-9e2c-5377de4a20fc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201355Z:f6247d6e-a0d1-4929-a511-47dbd94e6dbb" + "FRANCESOUTH:20201106T163447Z:72eb70fa-b792-46d9-9e2c-5377de4a20fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14082,7 +22395,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:13:54 GMT" + "Fri, 06 Nov 2020 16:34:46 GMT" ], "Expires": [ "-1" @@ -14095,8 +22408,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14115,22 +22428,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11905" ], "x-ms-request-id": [ - "0d38548d-f404-4811-904a-558e20198cc8" + "739e93cd-e5b0-4102-9f13-de2b46529666" ], "x-ms-correlation-request-id": [ - "0d38548d-f404-4811-904a-558e20198cc8" + "739e93cd-e5b0-4102-9f13-de2b46529666" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201410Z:0d38548d-f404-4811-904a-558e20198cc8" + "FRANCESOUTH:20201106T163502Z:739e93cd-e5b0-4102-9f13-de2b46529666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14139,7 +22452,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:14:09 GMT" + "Fri, 06 Nov 2020 16:35:02 GMT" ], "Expires": [ "-1" @@ -14152,8 +22465,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14172,22 +22485,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11904" ], "x-ms-request-id": [ - "c2f80339-195b-4496-8717-176f096148e1" + "aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" ], "x-ms-correlation-request-id": [ - "c2f80339-195b-4496-8717-176f096148e1" + "aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201425Z:c2f80339-195b-4496-8717-176f096148e1" + "FRANCESOUTH:20201106T163518Z:aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14196,7 +22509,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:14:25 GMT" + "Fri, 06 Nov 2020 16:35:18 GMT" ], "Expires": [ "-1" @@ -14209,8 +22522,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14229,22 +22542,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11903" ], "x-ms-request-id": [ - "ab035bc6-f897-4e48-8dfa-f9d13705a08e" + "ec02e9c8-2bf3-41d2-9246-a932c03cd72f" ], "x-ms-correlation-request-id": [ - "ab035bc6-f897-4e48-8dfa-f9d13705a08e" + "ec02e9c8-2bf3-41d2-9246-a932c03cd72f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201441Z:ab035bc6-f897-4e48-8dfa-f9d13705a08e" + "FRANCESOUTH:20201106T163533Z:ec02e9c8-2bf3-41d2-9246-a932c03cd72f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14253,7 +22566,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:14:41 GMT" + "Fri, 06 Nov 2020 16:35:33 GMT" ], "Expires": [ "-1" @@ -14266,8 +22579,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14286,22 +22599,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11902" ], "x-ms-request-id": [ - "a65664f5-729b-4eb7-9fb9-5f74a728eecf" + "ec42c225-8900-4807-9244-fc53970a0cf7" ], "x-ms-correlation-request-id": [ - "a65664f5-729b-4eb7-9fb9-5f74a728eecf" + "ec42c225-8900-4807-9244-fc53970a0cf7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201456Z:a65664f5-729b-4eb7-9fb9-5f74a728eecf" + "FRANCESOUTH:20201106T163548Z:ec42c225-8900-4807-9244-fc53970a0cf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14310,7 +22623,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:14:56 GMT" + "Fri, 06 Nov 2020 16:35:48 GMT" ], "Expires": [ "-1" @@ -14323,8 +22636,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14343,22 +22656,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11901" ], "x-ms-request-id": [ - "4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + "84ba4924-b0f7-4390-b406-30a6c9d20a05" ], "x-ms-correlation-request-id": [ - "4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + "84ba4924-b0f7-4390-b406-30a6c9d20a05" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201511Z:4ae05ac7-b32f-4e2c-bd23-1f766f08b4de" + "FRANCESOUTH:20201106T163604Z:84ba4924-b0f7-4390-b406-30a6c9d20a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14367,7 +22680,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:15:11 GMT" + "Fri, 06 Nov 2020 16:36:03 GMT" ], "Expires": [ "-1" @@ -14380,8 +22693,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14400,22 +22713,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11900" ], "x-ms-request-id": [ - "299b5b02-b224-4fb2-92a0-50bf397ad88f" + "3472d4c2-65e1-483d-979f-42bd524012d6" ], "x-ms-correlation-request-id": [ - "299b5b02-b224-4fb2-92a0-50bf397ad88f" + "3472d4c2-65e1-483d-979f-42bd524012d6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201527Z:299b5b02-b224-4fb2-92a0-50bf397ad88f" + "FRANCESOUTH:20201106T163619Z:3472d4c2-65e1-483d-979f-42bd524012d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14424,7 +22737,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:15:26 GMT" + "Fri, 06 Nov 2020 16:36:19 GMT" ], "Expires": [ "-1" @@ -14437,8 +22750,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14457,22 +22770,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11899" ], "x-ms-request-id": [ - "c89f3564-edc8-4447-ae9c-39537e02bb6c" + "e0299a1b-7ef1-4388-8aaa-1b9847602a1c" ], "x-ms-correlation-request-id": [ - "c89f3564-edc8-4447-ae9c-39537e02bb6c" + "e0299a1b-7ef1-4388-8aaa-1b9847602a1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201542Z:c89f3564-edc8-4447-ae9c-39537e02bb6c" + "FRANCESOUTH:20201106T163634Z:e0299a1b-7ef1-4388-8aaa-1b9847602a1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14481,7 +22794,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:15:42 GMT" + "Fri, 06 Nov 2020 16:36:34 GMT" ], "Expires": [ "-1" @@ -14494,8 +22807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14514,22 +22827,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11898" ], "x-ms-request-id": [ - "409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + "a893c44b-8a2d-4470-a135-0ee33580fc36" ], "x-ms-correlation-request-id": [ - "409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + "a893c44b-8a2d-4470-a135-0ee33580fc36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201558Z:409c8f2c-f16e-491d-bf76-6e2d5d356ddc" + "FRANCESOUTH:20201106T163650Z:a893c44b-8a2d-4470-a135-0ee33580fc36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14538,7 +22851,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:15:57 GMT" + "Fri, 06 Nov 2020 16:36:49 GMT" ], "Expires": [ "-1" @@ -14551,8 +22864,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14571,22 +22884,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11897" ], "x-ms-request-id": [ - "24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + "139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" ], "x-ms-correlation-request-id": [ - "24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + "139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201613Z:24c1fab9-a26d-4c0a-abc9-e30729a1fca7" + "FRANCESOUTH:20201106T163705Z:139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14595,7 +22908,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:16:12 GMT" + "Fri, 06 Nov 2020 16:37:05 GMT" ], "Expires": [ "-1" @@ -14608,8 +22921,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14628,22 +22941,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11896" ], "x-ms-request-id": [ - "8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + "8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" ], "x-ms-correlation-request-id": [ - "8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + "8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201628Z:8da3c209-2e76-4f4e-b9ce-598b3fece4a9" + "FRANCESOUTH:20201106T163720Z:8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14652,7 +22965,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:16:27 GMT" + "Fri, 06 Nov 2020 16:37:20 GMT" ], "Expires": [ "-1" @@ -14665,8 +22978,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14685,22 +22998,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11895" ], "x-ms-request-id": [ - "c02b9df1-8df7-433d-a849-5ef1c98422dd" + "da2393a1-78a9-4b2e-b4e2-5826e09dc377" ], "x-ms-correlation-request-id": [ - "c02b9df1-8df7-433d-a849-5ef1c98422dd" + "da2393a1-78a9-4b2e-b4e2-5826e09dc377" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201644Z:c02b9df1-8df7-433d-a849-5ef1c98422dd" + "FRANCESOUTH:20201106T163736Z:da2393a1-78a9-4b2e-b4e2-5826e09dc377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14709,7 +23022,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:16:44 GMT" + "Fri, 06 Nov 2020 16:37:36 GMT" ], "Expires": [ "-1" @@ -14722,8 +23035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14742,22 +23055,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11894" ], "x-ms-request-id": [ - "9fb3e39b-e38b-45aa-9566-12da81160d85" + "9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" ], "x-ms-correlation-request-id": [ - "9fb3e39b-e38b-45aa-9566-12da81160d85" + "9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201659Z:9fb3e39b-e38b-45aa-9566-12da81160d85" + "FRANCESOUTH:20201106T163751Z:9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14766,7 +23079,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:16:59 GMT" + "Fri, 06 Nov 2020 16:37:51 GMT" ], "Expires": [ "-1" @@ -14779,8 +23092,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14799,22 +23112,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11893" ], "x-ms-request-id": [ - "8ab1b1f7-2ac0-4307-b988-a634c4331391" + "147a72de-8a9b-4b1c-a5b3-4a730df2baf0" ], "x-ms-correlation-request-id": [ - "8ab1b1f7-2ac0-4307-b988-a634c4331391" + "147a72de-8a9b-4b1c-a5b3-4a730df2baf0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201714Z:8ab1b1f7-2ac0-4307-b988-a634c4331391" + "FRANCESOUTH:20201106T163807Z:147a72de-8a9b-4b1c-a5b3-4a730df2baf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14823,7 +23136,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:17:14 GMT" + "Fri, 06 Nov 2020 16:38:06 GMT" ], "Expires": [ "-1" @@ -14836,8 +23149,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14856,22 +23169,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11892" ], "x-ms-request-id": [ - "b6a29940-6ca1-403f-8206-b0618dab25fd" + "7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" ], "x-ms-correlation-request-id": [ - "b6a29940-6ca1-403f-8206-b0618dab25fd" + "7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201730Z:b6a29940-6ca1-403f-8206-b0618dab25fd" + "FRANCESOUTH:20201106T163822Z:7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14880,7 +23193,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:17:29 GMT" + "Fri, 06 Nov 2020 16:38:21 GMT" ], "Expires": [ "-1" @@ -14893,8 +23206,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14913,22 +23226,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11891" ], "x-ms-request-id": [ - "814fd5d6-1c97-4f20-9440-21c06b3d28bb" + "5a179faa-7be2-4c32-8b9f-364277671498" ], "x-ms-correlation-request-id": [ - "814fd5d6-1c97-4f20-9440-21c06b3d28bb" + "5a179faa-7be2-4c32-8b9f-364277671498" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201745Z:814fd5d6-1c97-4f20-9440-21c06b3d28bb" + "FRANCESOUTH:20201106T163837Z:5a179faa-7be2-4c32-8b9f-364277671498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14937,7 +23250,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:17:44 GMT" + "Fri, 06 Nov 2020 16:38:36 GMT" ], "Expires": [ "-1" @@ -14950,8 +23263,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14970,22 +23283,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11890" ], "x-ms-request-id": [ - "1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + "7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" ], "x-ms-correlation-request-id": [ - "1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + "7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201800Z:1d422cfc-ec3d-44c0-b20a-4fdb5c042fc7" + "FRANCESOUTH:20201106T163853Z:7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14994,7 +23307,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:18:00 GMT" + "Fri, 06 Nov 2020 16:38:53 GMT" ], "Expires": [ "-1" @@ -15007,8 +23320,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15027,22 +23340,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11889" ], "x-ms-request-id": [ - "8de8684b-0bc6-4d33-a65e-39ece2c73708" + "fb59ac12-c8ec-47be-9f3e-7a89078f80e4" ], "x-ms-correlation-request-id": [ - "8de8684b-0bc6-4d33-a65e-39ece2c73708" + "fb59ac12-c8ec-47be-9f3e-7a89078f80e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201816Z:8de8684b-0bc6-4d33-a65e-39ece2c73708" + "FRANCESOUTH:20201106T163908Z:fb59ac12-c8ec-47be-9f3e-7a89078f80e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15051,7 +23364,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:18:15 GMT" + "Fri, 06 Nov 2020 16:39:07 GMT" ], "Expires": [ "-1" @@ -15064,8 +23377,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15084,22 +23397,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11888" ], "x-ms-request-id": [ - "03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + "d044e55f-2220-4541-8365-198e0c99f4f0" ], "x-ms-correlation-request-id": [ - "03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + "d044e55f-2220-4541-8365-198e0c99f4f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201831Z:03d67bd7-e9ee-4a06-9e9f-3c6a99e348f1" + "FRANCESOUTH:20201106T163924Z:d044e55f-2220-4541-8365-198e0c99f4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15108,7 +23421,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:18:30 GMT" + "Fri, 06 Nov 2020 16:39:23 GMT" ], "Expires": [ "-1" @@ -15121,8 +23434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15141,22 +23454,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11887" ], "x-ms-request-id": [ - "99f9f50e-d572-46f3-8f94-23458b1807ed" + "e3695db6-f33b-46a5-b72b-5cc308eec499" ], "x-ms-correlation-request-id": [ - "99f9f50e-d572-46f3-8f94-23458b1807ed" + "e3695db6-f33b-46a5-b72b-5cc308eec499" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201846Z:99f9f50e-d572-46f3-8f94-23458b1807ed" + "FRANCESOUTH:20201106T163939Z:e3695db6-f33b-46a5-b72b-5cc308eec499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15165,7 +23478,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:18:46 GMT" + "Fri, 06 Nov 2020 16:39:38 GMT" ], "Expires": [ "-1" @@ -15178,8 +23491,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15198,22 +23511,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11886" ], "x-ms-request-id": [ - "0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + "82ebf1c7-51b8-4387-bea5-775ef9631e33" ], "x-ms-correlation-request-id": [ - "0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + "82ebf1c7-51b8-4387-bea5-775ef9631e33" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201902Z:0e0c25c7-c3fb-42f9-a913-a1c8f759d01d" + "FRANCESOUTH:20201106T163954Z:82ebf1c7-51b8-4387-bea5-775ef9631e33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15222,7 +23535,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:19:01 GMT" + "Fri, 06 Nov 2020 16:39:54 GMT" ], "Expires": [ "-1" @@ -15235,8 +23548,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15255,16 +23568,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11885" ], "x-ms-request-id": [ - "bd186e47-02e2-449b-b278-ef5edf166395" + "9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" ], "x-ms-correlation-request-id": [ - "bd186e47-02e2-449b-b278-ef5edf166395" + "9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201917Z:bd186e47-02e2-449b-b278-ef5edf166395" + "FRANCESOUTH:20201106T164010Z:9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15273,7 +23586,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:19:17 GMT" + "Fri, 06 Nov 2020 16:40:09 GMT" ], "Expires": [ "-1" @@ -15286,8 +23599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5ODEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9ERXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15306,16 +23619,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11884" ], "x-ms-request-id": [ - "8e299ef4-4fdd-4119-81b1-c850ced8cc09" + "af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" ], "x-ms-correlation-request-id": [ - "8e299ef4-4fdd-4119-81b1-c850ced8cc09" + "af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20201023T201917Z:8e299ef4-4fdd-4119-81b1-c850ced8cc09" + "FRANCESOUTH:20201106T164010Z:af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15324,7 +23637,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 20:19:17 GMT" + "Fri, 06 Nov 2020 16:40:09 GMT" ], "Expires": [ "-1" @@ -15339,14 +23652,14 @@ ], "Names": { "Test-VolumeReplication": [ - "ps4997", - "ps2981", - "ps5547", - "ps7560", - "ps2914", - "ps3683", - "ps3085", - "ps8882" + "ps8985", + "ps4797", + "ps9790", + "ps6228", + "ps7997", + "ps6769", + "ps4174", + "ps5850" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs index 2e3f57c52e6e..bdd42d3aa48f 100644 --- a/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs +++ b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs @@ -185,7 +185,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(Name, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) { - var anfBakcupPolicy = AzureNetAppFilesManagementClient.Backups.Update(ResourceGroupName, AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, body: backupPatch); + var anfBakcupPolicy = AzureNetAppFilesManagementClient.Backups.Update(ResourceGroupName, accountName: AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, body: backupPatch); WriteObject(anfBakcupPolicy.ConvertToPs()); } } From af4e3e600e9d265548fc3414982398f76a5c82ec Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sat, 7 Nov 2020 17:06:24 +0000 Subject: [PATCH 18/22] trecording --- .../TestVolumeCrud.json | 2 +- .../TestVolumePipelines.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json index 9525f95e5949..bb801907e33b 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json @@ -1,4 +1,4 @@ -{ +{ "Entries": [ { "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9910?api-version=2016-09-01", diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json index 50e3923971c4..27e2f05afd66 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json @@ -1,4 +1,4 @@ -{ +{ "Entries": [ { "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7130?api-version=2016-09-01", From 77ef631d26af6eda108306e5b4e1129a7be57424 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 8 Nov 2020 13:24:52 +0000 Subject: [PATCH 19/22] update recordings --- .../TestAccountCrud.json | 614 ++- .../TestAccountPipelines.json | 412 +- .../TestCreateVolumeFromSnapshot.json | 1552 +++--- .../TestRestoreVolumeFromSnapshot.json | 4856 +++-------------- .../TestSnapshotCrud.json | 1749 +++--- .../TestSnapshotPipelines.json | 1676 +++--- 6 files changed, 4129 insertions(+), 6730 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json index 0ab80bfbd2ab..f1b14c915d8e 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1716?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTcxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6039?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjAzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a40ef299-cec4-44c4-88d7-cf0d6bf6abfa" + "a65b0c20-39b4-44cd-865b-fe7a21b99326" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "d4a57891-eaaa-4554-a534-ae183f17d816" + "951c5c1c-630f-4c3b-94de-87681777814b" ], "x-ms-correlation-request-id": [ - "d4a57891-eaaa-4554-a534-ae183f17d816" + "951c5c1c-630f-4c3b-94de-87681777814b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125250Z:d4a57891-eaaa-4554-a534-ae183f17d816" + "FRANCESOUTH:20201108T115721Z:951c5c1c-630f-4c3b-94de-87681777814b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:52:49 GMT" + "Sun, 08 Nov 2020 11:57:21 GMT" ], "Content-Length": [ - "166" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716\",\r\n \"name\": \"ps1716\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039\",\r\n \"name\": \"ps6039\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMxMzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg4MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfde7222-270b-4c93-b15c-9eae4f0a30d3" + "20cd20de-8765-40d9-aa58-4fc7a5a338e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "79" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A52%3A56.9455352Z'\"" + "W/\"datetime'2020-11-08T11%3A57%3A30.6212433Z'\"" ], "x-ms-request-id": [ - "bd9cd0a3-405b-4f2e-b845-d504255751e9" + "ff9fc87a-82d7-4e1e-8589-0c565b190ac7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ef760669-7d5b-4a82-b569-2db850ab7683?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/18227029-7de9-4f06-841b-f2dbf17c3a3a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "e08942cb-a696-48f7-b453-c983b2a14889" + "7da6a542-0592-41e7-b9d9-f350d012de2f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125258Z:e08942cb-a696-48f7-b453-c983b2a14889" + "FRANCESOUTH:20201108T115732Z:7da6a542-0592-41e7-b9d9-f350d012de2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:52:57 GMT" + "Sun, 08 Nov 2020 11:57:31 GMT" ], "Content-Length": [ - "342" + "347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,20 +147,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A52%3A56.9455352Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A57%3A30.6212433Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMxMzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/18227029-7de9-4f06-841b-f2dbf17c3a3a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTgyMjcwMjktN2RlOS00ZjA2LTg0MWItZjJkYmYxN2MzYTNhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7e2b2ae-955a-4cf2-9470-5789e1b4f67e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ce37504b-6932-4eed-9a0b-6f1ca563503d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T115802Z:ce37504b-6932-4eed-9a0b-6f1ca563503d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 11:58:01 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/18227029-7de9-4f06-841b-f2dbf17c3a3a\",\r\n \"name\": \"18227029-7de9-4f06-841b-f2dbf17c3a3a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T11:57:30.3959458Z\",\r\n \"endTime\": \"2020-11-08T11:57:30.6927829Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg4MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -171,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A52%3A57.014584Z'\"" + "W/\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\"" ], "x-ms-request-id": [ - "a42f4192-6708-431b-9e34-7f63bdf02a29" + "140e38a4-ce42-4934-9194-e31498557290" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,13 +255,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "f6bba62c-fb2c-4d0a-a948-40c01c34f89e" + "f3a1a9ae-4a25-46f2-aa8a-808e38194246" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125258Z:f6bba62c-fb2c-4d0a-a948-40c01c34f89e" + "FRANCESOUTH:20201108T115802Z:f3a1a9ae-4a25-46f2-aa8a-808e38194246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -204,10 +270,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:52:57 GMT" + "Sun, 08 Nov 2020 11:58:01 GMT" ], "Content-Length": [ - "341" + "348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -216,26 +282,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A52%3A57.014584Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMxMzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg4MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55f37fad-a6ee-4648-8441-7031290a9db5" + "f7707ef8-754c-493c-8cc1-6b44c179b3ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -246,10 +312,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A52%3A57.014584Z'\"" + "W/\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\"" ], "x-ms-request-id": [ - "613f1ac8-3a14-44a6-9522-772994033b1e" + "0f5927cb-37b5-41b0-b7d0-f3c41d9374a4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -264,13 +330,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "de6a145d-e226-45ba-a31f-be700fe77cf4" + "99ba2205-42ea-415f-a6a1-6ccf2caa6131" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125302Z:de6a145d-e226-45ba-a31f-be700fe77cf4" + "FRANCESOUTH:20201108T115836Z:99ba2205-42ea-415f-a6a1-6ccf2caa6131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,10 +345,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:01 GMT" + "Sun, 08 Nov 2020 11:58:35 GMT" ], "Content-Length": [ - "341" + "348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -291,26 +357,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A52%3A57.014584Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMxMzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg4MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6f609e8-4d3f-42b9-958d-c975fbaf9455" + "47770583-acc7-4ab9-b956-f63b38445b5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -321,10 +387,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A52%3A57.014584Z'\"" + "W/\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\"" ], "x-ms-request-id": [ - "7b614a1c-bead-422a-826d-e67aff4e6538" + "33da17c8-72e3-40db-8320-baaf841f1825" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -339,13 +405,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-correlation-request-id": [ - "33ef4eb6-ffbf-46c5-b491-de9dcd2ee0a9" + "0a21ab3e-a2c0-4ce8-a1ad-edfc9b4b415e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125302Z:33ef4eb6-ffbf-46c5-b491-de9dcd2ee0a9" + "FRANCESOUTH:20201108T115836Z:0a21ab3e-a2c0-4ce8-a1ad-edfc9b4b415e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +420,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:01 GMT" + "Sun, 08 Nov 2020 11:58:36 GMT" ], "Content-Length": [ - "341" + "348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,32 +432,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A52%3A57.014584Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE1MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE3ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a9be2da-2cad-4c00-87f1-be14790d8297" + "01cf9688-21fa-493a-93e0-98f5a07dbbc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -402,13 +468,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A53%3A00.6591876Z'\"" + "W/\"datetime'2020-11-08T11%3A58%3A04.3449338Z'\"" ], "x-ms-request-id": [ - "ea79430d-37b4-4425-924e-0985d8a5d4a3" + "b7e09aba-ecc7-4490-bf45-e18038704c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/574ab4c2-4a19-46bd-a772-787a7d8467bd?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4e929c-ac87-4e0e-b9ca-34b02ec79721?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -426,10 +492,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "b4c5e2a0-9444-448c-8570-8bceaa56cb22" + "29baa219-0e9a-4028-9574-a4bd3f6d3c0b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125301Z:b4c5e2a0-9444-448c-8570-8bceaa56cb22" + "FRANCESOUTH:20201108T115805Z:29baa219-0e9a-4028-9574-a4bd3f6d3c0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,10 +504,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:00 GMT" + "Sun, 08 Nov 2020 11:58:04 GMT" ], "Content-Length": [ - "314" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,20 +516,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\",\r\n \"name\": \"ps1513\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A00.6591876Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\",\r\n \"name\": \"ps1786\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A58%3A04.3449338Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE1MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4e929c-ac87-4e0e-b9ca-34b02ec79721?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmM0ZTkyOWMtYWM4Ny00ZTBlLWI5Y2EtMzRiMDJlYzc5NzIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dc12b43-c656-4146-ba5a-cab3c8d701a6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "23762c06-4ed2-4ad5-b7da-6a4763e25c10" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T115835Z:23762c06-4ed2-4ad5-b7da-6a4763e25c10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 11:58:35 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4e929c-ac87-4e0e-b9ca-34b02ec79721\",\r\n \"name\": \"fc4e929c-ac87-4e0e-b9ca-34b02ec79721\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T11:58:04.2503855Z\",\r\n \"endTime\": \"2020-11-08T11:58:04.4223149Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE3ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -474,10 +606,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-04T12%3A53%3A00.7292355Z'\"" + "W/\"datetime'2020-11-08T11%3A58%3A04.4209874Z'\"" ], "x-ms-request-id": [ - "d54714a3-6393-4ac9-8c52-861a9dc9feed" + "3a008451-f952-429c-b445-58e2294c0f7f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -492,13 +624,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-correlation-request-id": [ - "8756c24c-6350-4676-b04c-f8e308c573f8" + "75a08616-8920-4880-885f-ab60fd3ebfba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125302Z:8756c24c-6350-4676-b04c-f8e308c573f8" + "FRANCESOUTH:20201108T115835Z:75a08616-8920-4880-885f-ab60fd3ebfba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,10 +639,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:01 GMT" + "Sun, 08 Nov 2020 11:58:35 GMT" ], "Content-Length": [ - "314" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\",\r\n \"name\": \"ps1513\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A00.7292355Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\",\r\n \"name\": \"ps1786\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A58%3A04.4209874Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfc53352-de01-4bba-9a13-d9a529e39c67" + "f8bbbe5b-3454-40f8-9f55-5d4e5da509c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -549,7 +681,7 @@ "no-cache" ], "x-ms-request-id": [ - "a5fb8c1d-091c-41c5-88c8-e7c5721a5cb5" + "9b057be2-4750-43b6-8cc0-dafcefc15f40" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -564,13 +696,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "8becb5d8-784a-42d1-9c1d-8320822d8a0a" + "21988c68-eab3-4685-8d2f-226f3f87d7f5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125302Z:8becb5d8-784a-42d1-9c1d-8320822d8a0a" + "FRANCESOUTH:20201108T115836Z:21988c68-eab3-4685-8d2f-226f3f87d7f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,10 +711,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:01 GMT" + "Sun, 08 Nov 2020 11:58:35 GMT" ], "Content-Length": [ - "668" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,26 +723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\",\r\n \"name\": \"ps1513\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A00.7292355Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A52%3A57.014584Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\",\r\n \"name\": \"ps1786\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A58%3A04.4209874Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A57%3A30.6893709Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d095ba09-3ee1-4715-a3c1-357dc6fc764e" + "8ce2daf5-bba3-4774-ba4c-463856a39b48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -621,7 +753,7 @@ "no-cache" ], "x-ms-request-id": [ - "fc6ad0b1-e9b6-4d1d-a954-df18b9265f1f" + "576557e3-5782-4530-b961-f7e8c83eac5f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -636,13 +768,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-correlation-request-id": [ - "841ab104-0991-4d19-af92-d6b14e600fc3" + "d7f6ea0e-cea0-4570-85ea-b9d8acc91aca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125334Z:841ab104-0991-4d19-af92-d6b14e600fc3" + "FRANCESOUTH:20201108T115908Z:d7f6ea0e-cea0-4570-85ea-b9d8acc91aca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,10 +783,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:33 GMT" + "Sun, 08 Nov 2020 11:59:07 GMT" ], "Content-Length": [ - "326" + "332" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,26 +795,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\",\r\n \"name\": \"ps1513\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A00.7292355Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\",\r\n \"name\": \"ps1786\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A58%3A04.4209874Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2588dee6-667f-4e0e-a1aa-51dad1e711af" + "960aadc5-6af7-4637-8472-0f351ca76d72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -693,16 +825,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "6c58acac-f148-4093-9644-f0cb1fadbc22" + "63ae1b9f-9e4e-4ac0-b20a-ed920d59a65a" ], "x-ms-correlation-request-id": [ - "6c58acac-f148-4093-9644-f0cb1fadbc22" + "63ae1b9f-9e4e-4ac0-b20a-ed920d59a65a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125405Z:6c58acac-f148-4093-9644-f0cb1fadbc22" + "FRANCESOUTH:20201108T115945Z:63ae1b9f-9e4e-4ac0-b20a-ed920d59a65a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +843,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:04 GMT" + "Sun, 08 Nov 2020 11:59:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -727,22 +859,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMxMzQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg4MDA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "290d3c17-fc8d-41b2-9a2e-e827fb1a1dbf" + "06bc930c-f699-477e-8bc7-2fcd24797ced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -753,10 +885,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc42b02-7dda-4c65-a049-c983b4dc49e7?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4c74d07f-28c8-4cc6-b569-28e0ae8757b2?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc42b02-7dda-4c65-a049-c983b4dc49e7?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4c74d07f-28c8-4cc6-b569-28e0ae8757b2?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -774,13 +906,13 @@ "14999" ], "x-ms-request-id": [ - "e93cc1a2-2399-45c4-9052-22db3be3a014" + "84663132-e7ae-4748-b60c-4cb22dcfb9e9" ], "x-ms-correlation-request-id": [ - "e93cc1a2-2399-45c4-9052-22db3be3a014" + "84663132-e7ae-4748-b60c-4cb22dcfb9e9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125303Z:e93cc1a2-2399-45c4-9052-22db3be3a014" + "FRANCESOUTH:20201108T115837Z:84663132-e7ae-4748-b60c-4cb22dcfb9e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +921,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:02 GMT" + "Sun, 08 Nov 2020 11:58:37 GMT" ], "Expires": [ "-1" @@ -802,16 +934,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc42b02-7dda-4c65-a049-c983b4dc49e7?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvN2RjNDJiMDItN2RkYS00YzY1LWEwNDktYzk4M2I0ZGM0OWU3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4c74d07f-28c8-4cc6-b569-28e0ae8757b2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNGM3NGQwN2YtMjhjOC00Y2M2LWI1NjktMjhlMGFlODc1N2IyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -822,7 +954,7 @@ "no-cache" ], "x-ms-request-id": [ - "16fd2802-8541-43ee-b7df-1e65bd7d0b7b" + "d2004789-44d2-4a3c-b757-6b8817976736" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -837,13 +969,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-correlation-request-id": [ - "00b7e112-dc86-4f49-99bc-8bf64c196329" + "3e1582e3-9646-4991-8b2f-bce713a1a9b0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125333Z:00b7e112-dc86-4f49-99bc-8bf64c196329" + "FRANCESOUTH:20201108T115907Z:3e1582e3-9646-4991-8b2f-bce713a1a9b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,10 +984,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:33 GMT" + "Sun, 08 Nov 2020 11:59:06 GMT" ], "Content-Length": [ - "488" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,20 +996,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc42b02-7dda-4c65-a049-c983b4dc49e7\",\r\n \"name\": \"7dc42b02-7dda-4c65-a049-c983b4dc49e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-04T12:53:03.3164362Z\",\r\n \"endTime\": \"2020-09-04T12:53:03.388436Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4c74d07f-28c8-4cc6-b569-28e0ae8757b2\",\r\n \"name\": \"4c74d07f-28c8-4cc6-b569-28e0ae8757b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T11:58:37.4309759Z\",\r\n \"endTime\": \"2020-11-08T11:58:37.5871903Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/7dc42b02-7dda-4c65-a049-c983b4dc49e7?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvN2RjNDJiMDItN2RkYS00YzY1LWEwNDktYzk4M2I0ZGM0OWU3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4c74d07f-28c8-4cc6-b569-28e0ae8757b2?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNGM3NGQwN2YtMjhjOC00Y2M2LWI1NjktMjhlMGFlODc1N2IyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -888,7 +1020,7 @@ "no-cache" ], "x-ms-request-id": [ - "3952e4cc-157d-4787-bc7b-b2687177a74f" + "7f9c9a7d-b27b-4867-92bb-a8a9a3ec5058" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -903,13 +1035,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-correlation-request-id": [ - "b54d4022-eff7-4eab-9bf2-0d317b01989f" + "853caa44-2338-4732-90b8-29db0e2465da" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125333Z:b54d4022-eff7-4eab-9bf2-0d317b01989f" + "FRANCESOUTH:20201108T115908Z:853caa44-2338-4732-90b8-29db0e2465da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -918,10 +1050,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:33 GMT" + "Sun, 08 Nov 2020 11:59:07 GMT" ], "Content-Length": [ - "357" + "363" ], "Content-Type": [ "application/json; charset=utf-8" @@ -930,26 +1062,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps3134\",\r\n \"name\": \"ps3134\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A03.3521069Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"name\": \"ps3134\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps8800\",\r\n \"name\": \"ps8800\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A58%3A37.5555285Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"name\": \"ps8800\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTcxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE1MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjAzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE3ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a4bb157-90c2-498e-9c81-7d8a57449a8a" + "7a489489-5b55-425c-a1b5-2bd34308150b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -960,10 +1092,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28f27658-a103-4b9d-add7-5e48a549c147?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28f27658-a103-4b9d-add7-5e48a549c147?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -981,13 +1113,13 @@ "14998" ], "x-ms-request-id": [ - "97d69695-2569-4c29-b9dc-f13d09d76e9e" + "a8c4cdbd-2e2e-406f-8d52-ff82013c385b" ], "x-ms-correlation-request-id": [ - "97d69695-2569-4c29-b9dc-f13d09d76e9e" + "a8c4cdbd-2e2e-406f-8d52-ff82013c385b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125334Z:97d69695-2569-4c29-b9dc-f13d09d76e9e" + "FRANCESOUTH:20201108T115915Z:a8c4cdbd-2e2e-406f-8d52-ff82013c385b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,7 +1128,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:53:34 GMT" + "Sun, 08 Nov 2020 11:59:15 GMT" ], "Expires": [ "-1" @@ -1009,16 +1141,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmY1ZjVjZGItZGY0Ny00NmQ0LThhM2MtODQ1YmE5YmY1NGQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28f27658-a103-4b9d-add7-5e48a549c147?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjhmMjc2NTgtYTEwMy00YjlkLWFkZDctNWU0OGE1NDljMTQ3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1029,7 +1161,7 @@ "no-cache" ], "x-ms-request-id": [ - "917383d7-ce21-4cd6-98b3-21967e46c297" + "f5e87c97-c3bf-4001-81bd-5fc8d721e9f0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1044,13 +1176,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-correlation-request-id": [ - "ceca600c-1d54-4eb1-9720-2ce082422ff5" + "de5272ab-f780-402b-a751-28857dc891b2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125405Z:ceca600c-1d54-4eb1-9720-2ce082422ff5" + "FRANCESOUTH:20201108T115945Z:de5272ab-f780-402b-a751-28857dc891b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,10 +1191,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:04 GMT" + "Sun, 08 Nov 2020 11:59:44 GMT" ], "Content-Length": [ - "489" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1071,20 +1203,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9\",\r\n \"name\": \"2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-04T12:53:34.6833012Z\",\r\n \"endTime\": \"2020-09-04T12:53:34.7770529Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28f27658-a103-4b9d-add7-5e48a549c147\",\r\n \"name\": \"28f27658-a103-4b9d-add7-5e48a549c147\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T11:59:15.271061Z\",\r\n \"endTime\": \"2020-11-08T11:59:15.3810907Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/2f5f5cdb-df47-46d4-8a3c-845ba9bf54d9?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmY1ZjVjZGItZGY0Ny00NmQ0LThhM2MtODQ1YmE5YmY1NGQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/28f27658-a103-4b9d-add7-5e48a549c147?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjhmMjc2NTgtYTEwMy00YjlkLWFkZDctNWU0OGE1NDljMTQ3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1095,7 +1227,7 @@ "no-cache" ], "x-ms-request-id": [ - "9010cfa9-480c-47ae-a8a4-f7aaa786c9a6" + "3c277541-e3b8-41ad-ae71-8fe5e89023c5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1110,13 +1242,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-correlation-request-id": [ - "290d9762-4bc7-411a-bb39-f8d710de3934" + "5cae06be-2c62-47b5-8646-c8b6b77bbb2b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125405Z:290d9762-4bc7-411a-bb39-f8d710de3934" + "FRANCESOUTH:20201108T115945Z:5cae06be-2c62-47b5-8646-c8b6b77bbb2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,10 +1257,10 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:04 GMT" + "Sun, 08 Nov 2020 11:59:45 GMT" ], "Content-Length": [ - "329" + "335" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,26 +1269,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1716/providers/Microsoft.NetApp/netAppAccounts/ps1513\",\r\n \"name\": \"ps1513\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-04T12%3A53%3A34.7475131Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"ps1513\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps6039/providers/Microsoft.NetApp/netAppAccounts/ps1786\",\r\n \"name\": \"ps1786\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T11%3A59%3A15.3455745Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps1786\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1716?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTcxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps6039?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjAzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3dea7a4-d6f9-4d58-8628-5fd21834d020" + "c612efa0-f428-4b1b-b117-4eb0f5fad518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1167,7 +1299,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1176,13 +1308,13 @@ "14999" ], "x-ms-request-id": [ - "1c06a252-8c3a-4e61-b3b6-22507d60d7bd" + "ec00c54d-99bc-4d80-bd2f-ce2d6fde98b5" ], "x-ms-correlation-request-id": [ - "1c06a252-8c3a-4e61-b3b6-22507d60d7bd" + "ec00c54d-99bc-4d80-bd2f-ce2d6fde98b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125408Z:1c06a252-8c3a-4e61-b3b6-22507d60d7bd" + "FRANCESOUTH:20201108T115950Z:ec00c54d-99bc-4d80-bd2f-ce2d6fde98b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,7 +1323,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:08 GMT" + "Sun, 08 Nov 2020 11:59:49 GMT" ], "Expires": [ "-1" @@ -1204,16 +1336,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01UWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1224,7 +1356,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1233,13 +1365,13 @@ "11999" ], "x-ms-request-id": [ - "49fd8ad7-0174-4e18-a151-5fe09f9eaa79" + "53fb529e-607a-477c-b5fa-36cf78f30f3c" ], "x-ms-correlation-request-id": [ - "49fd8ad7-0174-4e18-a151-5fe09f9eaa79" + "53fb529e-607a-477c-b5fa-36cf78f30f3c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125423Z:49fd8ad7-0174-4e18-a151-5fe09f9eaa79" + "FRANCESOUTH:20201108T120005Z:53fb529e-607a-477c-b5fa-36cf78f30f3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,7 +1380,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:23 GMT" + "Sun, 08 Nov 2020 12:00:05 GMT" ], "Expires": [ "-1" @@ -1261,16 +1393,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01UWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1281,7 +1413,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1290,13 +1422,13 @@ "11998" ], "x-ms-request-id": [ - "bdc09804-552c-4c5b-9bcd-f0c690afb6bd" + "44c7cbc8-796b-4e31-b8f5-888eb6458bfa" ], "x-ms-correlation-request-id": [ - "bdc09804-552c-4c5b-9bcd-f0c690afb6bd" + "44c7cbc8-796b-4e31-b8f5-888eb6458bfa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125438Z:bdc09804-552c-4c5b-9bcd-f0c690afb6bd" + "FRANCESOUTH:20201108T120020Z:44c7cbc8-796b-4e31-b8f5-888eb6458bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,7 +1437,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:38 GMT" + "Sun, 08 Nov 2020 12:00:20 GMT" ], "Expires": [ "-1" @@ -1318,16 +1450,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01UWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1341,13 +1473,13 @@ "11997" ], "x-ms-request-id": [ - "2c514962-2b91-4054-92a8-f08aeec39ffb" + "0ffa9e89-dbfc-42d9-9287-e4c98e80f4bc" ], "x-ms-correlation-request-id": [ - "2c514962-2b91-4054-92a8-f08aeec39ffb" + "0ffa9e89-dbfc-42d9-9287-e4c98e80f4bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125454Z:2c514962-2b91-4054-92a8-f08aeec39ffb" + "FRANCESOUTH:20201108T120036Z:0ffa9e89-dbfc-42d9-9287-e4c98e80f4bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1488,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:53 GMT" + "Sun, 08 Nov 2020 12:00:35 GMT" ], "Expires": [ "-1" @@ -1369,16 +1501,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MTYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01UWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016a3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1392,13 +1524,13 @@ "11996" ], "x-ms-request-id": [ - "bb23bb89-be03-454f-9758-f8c3c624435b" + "7563290b-2565-4994-a27b-34d8f7d5fa32" ], "x-ms-correlation-request-id": [ - "bb23bb89-be03-454f-9758-f8c3c624435b" + "7563290b-2565-4994-a27b-34d8f7d5fa32" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200904T125454Z:bb23bb89-be03-454f-9758-f8c3c624435b" + "FRANCESOUTH:20201108T120036Z:7563290b-2565-4994-a27b-34d8f7d5fa32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,7 +1539,7 @@ "nosniff" ], "Date": [ - "Fri, 04 Sep 2020 12:54:53 GMT" + "Sun, 08 Nov 2020 12:00:36 GMT" ], "Expires": [ "-1" @@ -1422,10 +1554,10 @@ ], "Names": { "Test-AccountCrud": [ - "ps1716", - "ps3134", - "ps1513", - "ps4994" + "ps6039", + "ps8800", + "ps1786", + "ps4860" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountPipelines.json index 4568ba2cddee..91bb25ba9c67 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountPipelines.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps9082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzOTA4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps754?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c31737b-9f0a-4fe4-aa13-de3ffb328783" + "736864f1-2ff9-4e89-9c26-c8f5377b7658" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c645f723-1520-4e83-9c85-922dc742bc4c" + "81e85b20-0371-4f37-951c-2f289b7d30c0" ], "x-ms-correlation-request-id": [ - "c645f723-1520-4e83-9c85-922dc742bc4c" + "81e85b20-0371-4f37-951c-2f289b7d30c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121013Z:c645f723-1520-4e83-9c85-922dc742bc4c" + "FRANCESOUTH:20201108T120140Z:81e85b20-0371-4f37-951c-2f289b7d30c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:10:12 GMT" + "Sun, 08 Nov 2020 12:01:39 GMT" ], "Content-Length": [ - "172" + "170" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082\",\r\n \"name\": \"ps9082\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754\",\r\n \"name\": \"ps754\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2NzA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODkzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0afd1b4-fbcf-4249-be65-ddd8a6ea36bb" + "dda33f31-a11e-4be7-a5eb-c4c5a49fdc61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A10%3A20.0027844Z'\"" + "W/\"datetime'2020-11-08T12%3A01%3A50.3228077Z'\"" ], "x-ms-request-id": [ - "7498fea5-654a-4e6c-8fb0-0e05b1d757b6" + "d543bcc1-aef7-467d-8c71-0218c2b47ff4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a24b6638-6e1b-44e6-9ab6-6b3096a3db44?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba0e43d-347d-4f7f-a261-033e1cc7789b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -123,10 +123,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "a93eb911-274d-4324-b499-cf48c79d9e40" + "2bf2ec1f-bdf5-4979-949a-fd1dfd89b4fb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121021Z:a93eb911-274d-4324-b499-cf48c79d9e40" + "FRANCESOUTH:20201108T120151Z:2bf2ec1f-bdf5-4979-949a-fd1dfd89b4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -135,10 +135,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:10:20 GMT" + "Sun, 08 Nov 2020 12:01:50 GMT" ], "Content-Length": [ - "319" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,20 +147,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670\",\r\n \"name\": \"ps8670\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A10%3A20.0027844Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933\",\r\n \"name\": \"ps8933\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A01%3A50.3228077Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a24b6638-6e1b-44e6-9ab6-6b3096a3db44?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTI0YjY2MzgtNmUxYi00NGU2LTlhYjYtNmIzMDk2YTNkYjQ0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba0e43d-347d-4f7f-a261-033e1cc7789b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNWJhMGU0M2QtMzQ3ZC00ZjdmLWEyNjEtMDMzZTFjYzc3ODliP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "6b8c5ebc-1f80-46c8-b050-e016f3d5a2cc" + "0d430451-ab4e-4662-b819-4f7c54708369" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -189,10 +189,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "1155538d-7b9c-43c0-b6cb-37394daeab37" + "ae2637b1-4efc-4a5e-bc2f-6f9014b57ee6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121051Z:1155538d-7b9c-43c0-b6cb-37394daeab37" + "FRANCESOUTH:20201108T120221Z:ae2637b1-4efc-4a5e-bc2f-6f9014b57ee6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,10 +201,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:10:50 GMT" + "Sun, 08 Nov 2020 12:02:21 GMT" ], "Content-Length": [ - "495" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,20 +213,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a24b6638-6e1b-44e6-9ab6-6b3096a3db44\",\r\n \"name\": \"a24b6638-6e1b-44e6-9ab6-6b3096a3db44\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:10:19.8794763Z\",\r\n \"endTime\": \"2020-09-05T12:10:20.0670054Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba0e43d-347d-4f7f-a261-033e1cc7789b\",\r\n \"name\": \"5ba0e43d-347d-4f7f-a261-033e1cc7789b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:01:50.1913377Z\",\r\n \"endTime\": \"2020-11-08T12:01:50.4100991Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2NzA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODkzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -237,10 +237,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A10%3A20.0638281Z'\"" + "W/\"datetime'2020-11-08T12%3A01%3A50.4088692Z'\"" ], "x-ms-request-id": [ - "73c60355-3fbd-4b56-8695-57de9bbbcf18" + "22c8d961-9b0a-4dde-8d1d-4ac3edaec560" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -258,10 +258,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "835fabfe-ecdd-45e7-b169-d25e0ebf2c37" + "9b3530ef-672d-41a9-830c-415ecef4ad88" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121051Z:835fabfe-ecdd-45e7-b169-d25e0ebf2c37" + "FRANCESOUTH:20201108T120221Z:9b3530ef-672d-41a9-830c-415ecef4ad88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -270,10 +270,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:10:51 GMT" + "Sun, 08 Nov 2020 12:02:21 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,26 +282,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670\",\r\n \"name\": \"ps8670\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A10%3A20.0638281Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933\",\r\n \"name\": \"ps8933\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A01%3A50.4088692Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2NzA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzODkzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fe81798-8d58-4369-98bb-ebc1cbf558e3" + "b9aede6a-8b81-48e9-99d3-b2e30f007d8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be6b8d13-dea7-4129-a81d-e9920a7c9dd3?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ebf39b78-c734-4c71-85ad-199bcb44c44b?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be6b8d13-dea7-4129-a81d-e9920a7c9dd3?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ebf39b78-c734-4c71-85ad-199bcb44c44b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -333,13 +333,13 @@ "14999" ], "x-ms-request-id": [ - "63f5e396-6899-42b2-adf1-3229d5f5c0be" + "c4003fed-4185-4a83-bf59-42ac07b6e43d" ], "x-ms-correlation-request-id": [ - "63f5e396-6899-42b2-adf1-3229d5f5c0be" + "c4003fed-4185-4a83-bf59-42ac07b6e43d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121052Z:63f5e396-6899-42b2-adf1-3229d5f5c0be" + "FRANCESOUTH:20201108T120222Z:c4003fed-4185-4a83-bf59-42ac07b6e43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,7 +348,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:10:51 GMT" + "Sun, 08 Nov 2020 12:02:22 GMT" ], "Expires": [ "-1" @@ -361,16 +361,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be6b8d13-dea7-4129-a81d-e9920a7c9dd3?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYmU2YjhkMTMtZGVhNy00MTI5LWE4MWQtZTk5MjBhN2M5ZGQzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ebf39b78-c734-4c71-85ad-199bcb44c44b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZWJmMzliNzgtYzczNC00YzcxLTg1YWQtMTk5YmNiNDRjNDRiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -381,7 +381,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9aaea87-1d02-4a4c-9cb2-8f67620b1efd" + "93c4e3ac-9952-4308-8665-bd4d6d876b92" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -399,10 +399,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "ac814922-7ded-4881-b04e-83c6b6e4e599" + "ee73dc55-baa8-4770-a060-057f20a1d15a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121122Z:ac814922-7ded-4881-b04e-83c6b6e4e599" + "FRANCESOUTH:20201108T120252Z:ee73dc55-baa8-4770-a060-057f20a1d15a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,10 +411,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:21 GMT" + "Sun, 08 Nov 2020 12:02:51 GMT" ], "Content-Length": [ - "495" + "493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -423,20 +423,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be6b8d13-dea7-4129-a81d-e9920a7c9dd3\",\r\n \"name\": \"be6b8d13-dea7-4129-a81d-e9920a7c9dd3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:10:51.9666293Z\",\r\n \"endTime\": \"2020-09-05T12:10:52.0916123Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ebf39b78-c734-4c71-85ad-199bcb44c44b\",\r\n \"name\": \"ebf39b78-c734-4c71-85ad-199bcb44c44b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:02:22.4031554Z\",\r\n \"endTime\": \"2020-11-08T12:02:22.528084Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be6b8d13-dea7-4129-a81d-e9920a7c9dd3?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYmU2YjhkMTMtZGVhNy00MTI5LWE4MWQtZTk5MjBhN2M5ZGQzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ebf39b78-c734-4c71-85ad-199bcb44c44b?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZWJmMzliNzgtYzczNC00YzcxLTg1YWQtMTk5YmNiNDRjNDRiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -447,7 +447,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef9fd0ec-7780-4dc5-b6fc-b6c8f7bf204e" + "aae1a2b4-ad51-4b17-9cf7-33e4651915cc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -465,10 +465,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "7385f005-e1ff-4232-8a39-77d5e038a087" + "009084ab-399d-4ab3-a01b-531ffb9dc716" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121122Z:7385f005-e1ff-4232-8a39-77d5e038a087" + "FRANCESOUTH:20201108T120253Z:009084ab-399d-4ab3-a01b-531ffb9dc716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,10 +477,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:21 GMT" + "Sun, 08 Nov 2020 12:02:52 GMT" ], "Content-Length": [ - "335" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,26 +489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps8670\",\r\n \"name\": \"ps8670\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A10%3A52.0317046Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps8670\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps8933\",\r\n \"name\": \"ps8933\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A02%3A22.4866844Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps8933\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUyMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNTQzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8cc82fe-eef3-409c-916a-a1848e47c592" + "49cf19f0-3c27-4bf8-9ba9-c01ad449967c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,13 +525,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A11%3A26.1361101Z'\"" + "W/\"datetime'2020-11-08T12%3A02%3A57.8068096Z'\"" ], "x-ms-request-id": [ - "b62c9141-5097-44cd-b78a-e8ad8046f6dc" + "369503b5-800a-4e15-8120-f5aef841ca6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/80a2b0b7-6535-4ce4-9c2e-a87a7b69a577?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b2dfe0db-48c1-43f3-8e34-8f65383db97f?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -549,10 +549,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "c63a6636-b941-4ea8-9657-ef1c98c4eadc" + "e4b04429-c00c-448b-bac5-7723e93734cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121127Z:c63a6636-b941-4ea8-9657-ef1c98c4eadc" + "FRANCESOUTH:20201108T120259Z:e4b04429-c00c-448b-bac5-7723e93734cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,10 +561,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:26 GMT" + "Sun, 08 Nov 2020 12:02:58 GMT" ], "Content-Length": [ - "319" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -573,20 +573,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\",\r\n \"name\": \"ps5228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A11%3A26.1361101Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\",\r\n \"name\": \"ps5433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A02%3A57.8068096Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/80a2b0b7-6535-4ce4-9c2e-a87a7b69a577?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODBhMmIwYjctNjUzNS00Y2U0LTljMmUtYTg3YTdiNjlhNTc3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b2dfe0db-48c1-43f3-8e34-8f65383db97f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYjJkZmUwZGItNDhjMS00M2YzLThlMzQtOGY2NTM4M2RiOTdmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -597,7 +597,7 @@ "no-cache" ], "x-ms-request-id": [ - "209c40a1-b320-4ff1-b18e-bce8374ddb07" + "0285fb86-9730-43d2-b48a-04ce5a2a4986" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -615,10 +615,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "542b3077-be94-46a2-8685-f63a522c5eae" + "86f5172a-a063-4c1f-a419-3b2da31ec3cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121157Z:542b3077-be94-46a2-8685-f63a522c5eae" + "FRANCESOUTH:20201108T120329Z:86f5172a-a063-4c1f-a419-3b2da31ec3cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,10 +627,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:56 GMT" + "Sun, 08 Nov 2020 12:03:28 GMT" ], "Content-Length": [ - "495" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,20 +639,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/80a2b0b7-6535-4ce4-9c2e-a87a7b69a577\",\r\n \"name\": \"80a2b0b7-6535-4ce4-9c2e-a87a7b69a577\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:11:26.0682178Z\",\r\n \"endTime\": \"2020-09-05T12:11:26.2244357Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b2dfe0db-48c1-43f3-8e34-8f65383db97f\",\r\n \"name\": \"b2dfe0db-48c1-43f3-8e34-8f65383db97f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:02:57.7369401Z\",\r\n \"endTime\": \"2020-11-08T12:02:57.8775177Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUyMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNTQzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -663,10 +663,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A11%3A26.2171686Z'\"" + "W/\"datetime'2020-11-08T12%3A02%3A57.8778597Z'\"" ], "x-ms-request-id": [ - "b1be5133-fa2c-4d42-a63d-9df76ca36765" + "2fc7e3ad-3a78-4815-8ee6-2dfbc6663a21" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -684,10 +684,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "4b72d0d5-9ac7-419d-92ce-44e7f3acf7c6" + "3833b2e0-4a84-4809-94f0-6ab2bb338818" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121157Z:4b72d0d5-9ac7-419d-92ce-44e7f3acf7c6" + "FRANCESOUTH:20201108T120329Z:3833b2e0-4a84-4809-94f0-6ab2bb338818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,10 +696,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:56 GMT" + "Sun, 08 Nov 2020 12:03:28 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,26 +708,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\",\r\n \"name\": \"ps5228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A11%3A26.2171686Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\",\r\n \"name\": \"ps5433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A02%3A57.8778597Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUyMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNTQzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ddcc2d7-1ce1-405b-9494-146145f3037f" + "596111d2-f78a-40bd-84a3-3092aa5d742e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -738,10 +738,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T12%3A11%3A26.2171686Z'\"" + "W/\"datetime'2020-11-08T12%3A02%3A57.8778597Z'\"" ], "x-ms-request-id": [ - "1dee32d1-b908-4205-bd59-61c7732fd64e" + "dfc95204-c466-4739-be6a-a3e35bfe3e2c" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -759,10 +759,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "34c685a5-f504-4c64-97fd-98f21ca307ba" + "2c72b660-ac69-40d9-8187-7d619e901b3c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121157Z:34c685a5-f504-4c64-97fd-98f21ca307ba" + "FRANCESOUTH:20201108T120329Z:2c72b660-ac69-40d9-8187-7d619e901b3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,10 +771,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:57 GMT" + "Sun, 08 Nov 2020 12:03:28 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,26 +783,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\",\r\n \"name\": \"ps5228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A11%3A26.2171686Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\",\r\n \"name\": \"ps5433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A02%3A57.8778597Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzOTA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUyMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNTQzMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6585ed3b-f9df-47d9-b340-ba1077ade7ca" + "4769da55-c5b6-48e9-a6bc-9135aa6d0a2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -813,10 +813,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cdb00eb7-3bfb-45c0-84cd-715a2890ba99?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cdb00eb7-3bfb-45c0-84cd-715a2890ba99?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -834,13 +834,13 @@ "14998" ], "x-ms-request-id": [ - "50e9d80d-00e4-4de2-b8e1-6ae162bf72f1" + "32687d66-ba77-43a1-a6f6-2fd7a18944e4" ], "x-ms-correlation-request-id": [ - "50e9d80d-00e4-4de2-b8e1-6ae162bf72f1" + "32687d66-ba77-43a1-a6f6-2fd7a18944e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121158Z:50e9d80d-00e4-4de2-b8e1-6ae162bf72f1" + "FRANCESOUTH:20201108T120330Z:32687d66-ba77-43a1-a6f6-2fd7a18944e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,7 +849,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:11:57 GMT" + "Sun, 08 Nov 2020 12:03:29 GMT" ], "Expires": [ "-1" @@ -862,16 +862,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZDRlZGQ0YzMtN2M5Ny00ZjE2LWJkM2ItODJjMzFjOWZlMzdjP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cdb00eb7-3bfb-45c0-84cd-715a2890ba99?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvY2RiMDBlYjctM2JmYi00NWMwLTg0Y2QtNzE1YTI4OTBiYTk5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -882,7 +882,7 @@ "no-cache" ], "x-ms-request-id": [ - "42b86b33-2eaa-49cf-b936-5edc8e0bb6f2" + "4c589529-543b-4e35-92b8-5e8b200f5df3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -900,10 +900,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "e9dbf4d4-e62d-46c5-8562-5c48cd91a444" + "05055e30-20d4-4938-b8f5-e2608044fd75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121228Z:e9dbf4d4-e62d-46c5-8562-5c48cd91a444" + "FRANCESOUTH:20201108T120400Z:05055e30-20d4-4938-b8f5-e2608044fd75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +912,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:12:28 GMT" + "Sun, 08 Nov 2020 12:04:00 GMT" ], "Content-Length": [ - "495" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,20 +924,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c\",\r\n \"name\": \"d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T12:11:58.1045988Z\",\r\n \"endTime\": \"2020-09-05T12:11:58.2608826Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cdb00eb7-3bfb-45c0-84cd-715a2890ba99\",\r\n \"name\": \"cdb00eb7-3bfb-45c0-84cd-715a2890ba99\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:03:30.3188531Z\",\r\n \"endTime\": \"2020-11-08T12:03:30.6313423Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d4edd4c3-7c97-4f16-bd3b-82c31c9fe37c?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZDRlZGQ0YzMtN2M5Ny00ZjE2LWJkM2ItODJjMzFjOWZlMzdjP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cdb00eb7-3bfb-45c0-84cd-715a2890ba99?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvY2RiMDBlYjctM2JmYi00NWMwLTg0Y2QtNzE1YTI4OTBiYTk5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -948,7 +948,7 @@ "no-cache" ], "x-ms-request-id": [ - "c2069926-0f7c-40d7-8c59-d6e45af40cbb" + "37f986d5-efc3-4908-9498-d0c5902e370b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -966,10 +966,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "deac53aa-6a09-413c-b52e-f7491e8bfaa7" + "8d62fa55-fa08-408c-ac16-4bfbd11375c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121228Z:deac53aa-6a09-413c-b52e-f7491e8bfaa7" + "FRANCESOUTH:20201108T120401Z:8d62fa55-fa08-408c-ac16-4bfbd11375c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,10 +978,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:12:28 GMT" + "Sun, 08 Nov 2020 12:04:00 GMT" ], "Content-Length": [ - "335" + "334" ], "Content-Type": [ "application/json; charset=utf-8" @@ -990,26 +990,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps9082/providers/Microsoft.NetApp/netAppAccounts/ps5228\",\r\n \"name\": \"ps5228\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T12%3A11%3A58.2360821Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps5228\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps754/providers/Microsoft.NetApp/netAppAccounts/ps5433\",\r\n \"name\": \"ps5433\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A03%3A30.5220771Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"name\": \"ps5433\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps9082?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzOTA4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps754?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9129749-1ca8-488c-8209-5c7ea2343365" + "6e15b558-b486-4f47-a3be-e63fb7e230de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1020,22 +1020,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-request-id": [ - "d21d1b3c-bfe8-4d06-b72e-1dc53da00bf5" + "95175d6d-71d2-416f-90fd-a0fa84045cb7" ], "x-ms-correlation-request-id": [ - "d21d1b3c-bfe8-4d06-b72e-1dc53da00bf5" + "95175d6d-71d2-416f-90fd-a0fa84045cb7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121232Z:d21d1b3c-bfe8-4d06-b72e-1dc53da00bf5" + "FRANCESOUTH:20201108T120404Z:95175d6d-71d2-416f-90fd-a0fa84045cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1044,7 +1044,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:12:31 GMT" + "Sun, 08 Nov 2020 12:04:03 GMT" ], "Expires": [ "-1" @@ -1057,16 +1057,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd09ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1077,22 +1077,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "6e080088-272d-4ff2-ab9c-0a3112594cc3" + "1d688585-a8a0-4e78-a3bf-d96f86c6bb61" ], "x-ms-correlation-request-id": [ - "6e080088-272d-4ff2-ab9c-0a3112594cc3" + "1d688585-a8a0-4e78-a3bf-d96f86c6bb61" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121247Z:6e080088-272d-4ff2-ab9c-0a3112594cc3" + "FRANCESOUTH:20201108T120419Z:1d688585-a8a0-4e78-a3bf-d96f86c6bb61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,7 +1101,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:12:46 GMT" + "Sun, 08 Nov 2020 12:04:19 GMT" ], "Expires": [ "-1" @@ -1114,16 +1114,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd09ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1134,22 +1134,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "778d4fd6-abb0-4adf-997d-21712ff4c798" + "c167532c-fdb8-419a-b461-6da1492bbec8" ], "x-ms-correlation-request-id": [ - "778d4fd6-abb0-4adf-997d-21712ff4c798" + "c167532c-fdb8-419a-b461-6da1492bbec8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121302Z:778d4fd6-abb0-4adf-997d-21712ff4c798" + "FRANCESOUTH:20201108T120435Z:c167532c-fdb8-419a-b461-6da1492bbec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,7 +1158,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:13:01 GMT" + "Sun, 08 Nov 2020 12:04:34 GMT" ], "Expires": [ "-1" @@ -1171,16 +1171,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd09ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1191,16 +1191,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-request-id": [ - "396d04e1-1b41-4087-a60a-3ed85396204e" + "10247c24-f9cc-404c-bfb1-e1c591630ecc" ], "x-ms-correlation-request-id": [ - "396d04e1-1b41-4087-a60a-3ed85396204e" + "10247c24-f9cc-404c-bfb1-e1c591630ecc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121317Z:396d04e1-1b41-4087-a60a-3ed85396204e" + "FRANCESOUTH:20201108T120450Z:10247c24-f9cc-404c-bfb1-e1c591630ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,7 +1209,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:13:17 GMT" + "Sun, 08 Nov 2020 12:04:50 GMT" ], "Expires": [ "-1" @@ -1222,16 +1222,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwODItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd09ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU5DMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -1242,16 +1242,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-request-id": [ - "f2736ce1-f5e5-487e-95c6-ee87780f1523" + "4d500c86-8278-4819-b59f-5bb9600e8f71" ], "x-ms-correlation-request-id": [ - "f2736ce1-f5e5-487e-95c6-ee87780f1523" + "4d500c86-8278-4819-b59f-5bb9600e8f71" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T121318Z:f2736ce1-f5e5-487e-95c6-ee87780f1523" + "FRANCESOUTH:20201108T120450Z:4d500c86-8278-4819-b59f-5bb9600e8f71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,7 +1260,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 12:13:18 GMT" + "Sun, 08 Nov 2020 12:04:50 GMT" ], "Expires": [ "-1" @@ -1275,12 +1275,12 @@ ], "Names": { "Test-AccountPipelines": [ - "ps9082", - "ps8670", - "ps5228" + "ps754", + "ps8933", + "ps5433" ] }, "Variables": { - "SubscriptionId": "0661B131-4A11-479B-96BF-2F95ACCA2F73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestCreateVolumeFromSnapshot.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestCreateVolumeFromSnapshot.json index 9c9ffa50300d..3f3d5b05808b 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestCreateVolumeFromSnapshot.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestCreateVolumeFromSnapshot.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1880?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTg4MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9857?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTg1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "75373a5e-1480-4d23-be00-a3f38e276549" + "3016b6ad-d219-4b65-b3b3-5131c645282f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ec1cd851-9711-4482-9b14-089612be3223" + "287e3752-6270-4c72-bcc5-d9bd18527af1" ], "x-ms-correlation-request-id": [ - "ec1cd851-9711-4482-9b14-089612be3223" + "287e3752-6270-4c72-bcc5-d9bd18527af1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233839Z:ec1cd851-9711-4482-9b14-089612be3223" + "FRANCESOUTH:20201108T120736Z:287e3752-6270-4c72-bcc5-d9bd18527af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:38 GMT" + "Sun, 08 Nov 2020 12:07:35 GMT" ], "Content-Length": [ "172" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880\",\r\n \"name\": \"ps1880\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857\",\r\n \"name\": \"ps9857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3997e8f0-8b14-4047-baf9-6fd777e586d3" + "b66fed40-d648-479a-a384-a7428e56e833" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b0da2d98-ac24-457a-bd61-a6aa107e2b66" + "28c0a2bd-786a-4052-bbf7-0b78d3754ae5" ], "x-ms-correlation-request-id": [ - "b0da2d98-ac24-457a-bd61-a6aa107e2b66" + "28c0a2bd-786a-4052-bbf7-0b78d3754ae5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233840Z:b0da2d98-ac24-457a-bd61-a6aa107e2b66" + "FRANCESOUTH:20201108T120737Z:28c0a2bd-786a-4052-bbf7-0b78d3754ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:39 GMT" + "Sun, 08 Nov 2020 12:07:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,20 +123,20 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps1880-vnet' under resource group 'ps1880' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9857-vnet' under resource group 'ps9857' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"100b1579-e92b-4393-97f3-98d630560c79\"" + "W/\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\"" ], "x-ms-request-id": [ - "64b4a7c1-4745-481e-a7a1-53bc35a03279" + "dafe9722-3d89-4e2d-8742-788c0cbbd37d" ], "x-ms-correlation-request-id": [ - "e0d5a527-f322-40e8-9720-fa057a1fe580" + "72e32544-3b49-4ffb-ae24-87a532ddb48f" ], "x-ms-arm-service-request-id": [ - "628b0c4f-a3e6-4aee-b37a-fb432375ada3" + "e1937791-5736-4bc6-a515-61dc824cbd92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,13 +169,13 @@ "11997" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233851Z:e0d5a527-f322-40e8-9720-fa057a1fe580" + "FRANCESOUTH:20201108T120751Z:72e32544-3b49-4ffb-ae24-87a532ddb48f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:50 GMT" + "Sun, 08 Nov 2020 12:07:50 GMT" ], "Content-Length": [ "648" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"100b1579-e92b-4393-97f3-98d630560c79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "759a28e3-7cdd-457e-b3f6-71d99e9efd4d" + "3f22117a-641f-4541-a712-c6798f8dfd0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"100b1579-e92b-4393-97f3-98d630560c79\"" + "W/\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\"" ], "x-ms-request-id": [ - "f77458f7-beb3-45a4-93f9-60cdb9ec8104" + "80b2ed3e-accc-4426-a79d-1ae3bab5a185" ], "x-ms-correlation-request-id": [ - "22c7a17d-b4b9-46ce-83c1-ff52ce5962ea" + "cf1a66af-f423-45b4-a742-14fb02f5cf12" ], "x-ms-arm-service-request-id": [ - "1c7c5510-0dec-42dc-be5c-4d2470cf8885" + "91cb7998-1d99-49c6-80d9-67fbabcf00ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,13 +239,13 @@ "11996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233851Z:22c7a17d-b4b9-46ce-83c1-ff52ce5962ea" + "FRANCESOUTH:20201108T120752Z:cf1a66af-f423-45b4-a742-14fb02f5cf12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:50 GMT" + "Sun, 08 Nov 2020 12:07:51 GMT" ], "Content-Length": [ "648" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"100b1579-e92b-4393-97f3-98d630560c79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ac2bcde-ca64-4bcf-b6a1-646041cf9e8b" + "768811da-aca7-4cff-a6e5-ba09675990c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"100b1579-e92b-4393-97f3-98d630560c79\"" + "W/\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\"" ], "x-ms-request-id": [ - "a73a254d-5d7f-4663-83b5-1f9d0ad5d802" + "9d0dbfba-8fa2-4a7e-9b37-6bb4088d52c1" ], "x-ms-correlation-request-id": [ - "6d5875e4-a5d0-48dc-ab5c-13c0b6b5316c" + "ef491672-f9af-47b7-92dd-d735054e1456" ], "x-ms-arm-service-request-id": [ - "a3e9d428-f0d6-43f9-b5b5-5bdff12ba845" + "a7d23a01-c141-490a-b961-9565d3346d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,13 +309,13 @@ "11995" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233852Z:6d5875e4-a5d0-48dc-ab5c-13c0b6b5316c" + "FRANCESOUTH:20201108T120752Z:ef491672-f9af-47b7-92dd-d735054e1456" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:51 GMT" + "Sun, 08 Nov 2020 12:07:51 GMT" ], "Content-Length": [ "648" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"100b1579-e92b-4393-97f3-98d630560c79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"45280fa8-4857-4b7b-91c9-2c3cd9c39490\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\"" + "W/\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\"" ], "x-ms-request-id": [ - "43bac780-f84d-44de-b88f-12ca45e0fd09" + "b03c3425-2e4c-4661-a613-823b6db2d3c7" ], "x-ms-correlation-request-id": [ - "b1467872-9bfc-41e0-b9f2-9fed3fad8f9f" + "6aee9bb9-b7be-48d5-8593-6cbd180a729c" ], "x-ms-arm-service-request-id": [ - "1a21de19-109e-44f2-a39d-01584cd85d95" + "9ea70ded-0d80-4a1f-b183-9513157ee1d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,13 +373,13 @@ "11993" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233856Z:b1467872-9bfc-41e0-b9f2-9fed3fad8f9f" + "FRANCESOUTH:20201108T120756Z:6aee9bb9-b7be-48d5-8593-6cbd180a729c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:56 GMT" + "Sun, 08 Nov 2020 12:07:56 GMT" ], "Content-Length": [ "2157" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "874bb353-32b5-453b-903f-846d984ecd27" + "aaa0303f-e54f-4fba-acb4-23b3b1cae0f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\"" + "W/\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\"" ], "x-ms-request-id": [ - "34cd01f1-d8fb-419e-87d7-256b3afbb6f3" + "c97c37a0-33bb-4e9e-a6c8-4e7cfe64e29e" ], "x-ms-correlation-request-id": [ - "c3ac348a-a8b7-4a43-aa4a-52d1150e5557" + "a20cad7a-80cc-41c9-b1fc-5b4c57985bac" ], "x-ms-arm-service-request-id": [ - "f5ca46c9-676f-43bd-aeb9-f329f36e12a9" + "c316352d-5866-4ac7-83cb-d7a94f2f9c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,13 +443,13 @@ "11992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233856Z:c3ac348a-a8b7-4a43-aa4a-52d1150e5557" + "FRANCESOUTH:20201108T120756Z:a20cad7a-80cc-41c9-b1fc-5b4c57985bac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:56 GMT" + "Sun, 08 Nov 2020 12:07:56 GMT" ], "Content-Length": [ "2157" @@ -461,26 +461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"c4e55847-3ab3-4aca-939a-d00e29c62cd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"150c4c8d-4f8c-4962-9bee-333ce6a14b9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1795a830-47f4-4dad-8c6e-2a228db81997" + "027c842e-e39d-4f88-b07d-7f7f801f27e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -500,16 +500,16 @@ "3" ], "x-ms-request-id": [ - "09f1d363-1955-469b-94a7-e950b2e3ce99" + "a4406921-1ba8-4d85-acc2-8233e9db423e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/09f1d363-1955-469b-94a7-e950b2e3ce99?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/a4406921-1ba8-4d85-acc2-8233e9db423e?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "7a8cee7a-80c5-434a-a707-72d6bdd516f1" + "19e69c69-c016-4a8f-8903-769e9afcaec5" ], "x-ms-arm-service-request-id": [ - "6d23c0c5-4354-49ef-ab79-f3cb5c839afa" + "daf9651f-87a9-4fc4-983a-56c25addc8c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,13 +522,13 @@ "1199" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233847Z:7a8cee7a-80c5-434a-a707-72d6bdd516f1" + "FRANCESOUTH:20201108T120747Z:19e69c69-c016-4a8f-8903-769e9afcaec5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:47 GMT" + "Sun, 08 Nov 2020 12:07:46 GMT" ], "Content-Length": [ "647" @@ -540,26 +540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"0f5674a2-e0d6-41bb-a4e0-60da50d33c32\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"dcaffea8-87ac-4233-a099-c4be0e3be5d0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTg4MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9f16a99d-d2cb-41a0-9bfb-421fc70c36d3" + "412a483b-3e33-42de-b368-c874226bbfd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -579,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "ffece29e-e307-4f32-907a-a76e96c5e758" + "e991f60e-fa5a-49b6-a689-8d5ac5c557d1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ffece29e-e307-4f32-907a-a76e96c5e758?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/e991f60e-fa5a-49b6-a689-8d5ac5c557d1?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "75608179-78ef-45ad-96c4-68b7b703989b" + "38e8715d-b810-4c9a-bced-90b42524b3da" ], "x-ms-arm-service-request-id": [ - "666659df-0ed2-42e1-836e-5f61b17f2de3" + "5316952e-f4d0-421e-983f-002e360f8dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,13 +601,13 @@ "1198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233853Z:75608179-78ef-45ad-96c4-68b7b703989b" + "FRANCESOUTH:20201108T120753Z:38e8715d-b810-4c9a-bced-90b42524b3da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:52 GMT" + "Sun, 08 Nov 2020 12:07:52 GMT" ], "Content-Length": [ "2155" @@ -619,20 +619,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1880-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet\",\r\n \"etag\": \"W/\\\"3579e27b-dee3-4fb5-9309-44f6bd576ddf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e902599a-8668-4d8b-9805-f02363195b5b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"3579e27b-dee3-4fb5-9309-44f6bd576ddf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"3579e27b-dee3-4fb5-9309-44f6bd576ddf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9857-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet\",\r\n \"etag\": \"W/\\\"ccccdfa7-1fc7-4f47-a6df-d0097d7992e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7822f582-df0d-4242-a9f1-34edc517ccaf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ccccdfa7-1fc7-4f47-a6df-d0097d7992e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ccccdfa7-1fc7-4f47-a6df-d0097d7992e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/09f1d363-1955-469b-94a7-e950b2e3ce99?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzA5ZjFkMzYzLTE5NTUtNDY5Yi05NGE3LWU5NTBiMmUzY2U5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/a4406921-1ba8-4d85-acc2-8233e9db423e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E0NDA2OTIxLTFiYTgtNGQ4NS1hY2MyLTgyMzNlOWRiNDIzZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -643,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "91713ad1-db0c-4034-87fe-d25f47106279" + "bbf923ee-bf08-44cf-96c3-2ebde466488f" ], "x-ms-correlation-request-id": [ - "acf73476-054f-477d-b662-f3e55a3b112c" + "53bfda7f-1a65-4361-ad29-83bca34306c0" ], "x-ms-arm-service-request-id": [ - "ce4b1712-8b6b-4896-acd0-eb6407f731aa" + "6eb6415b-5e57-4e49-89f1-228952c563da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,13 +662,13 @@ "11998" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233851Z:acf73476-054f-477d-b662-f3e55a3b112c" + "FRANCESOUTH:20201108T120751Z:53bfda7f-1a65-4361-ad29-83bca34306c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:50 GMT" + "Sun, 08 Nov 2020 12:07:50 GMT" ], "Content-Length": [ "29" @@ -684,16 +684,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ffece29e-e307-4f32-907a-a76e96c5e758?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZmZWNlMjllLWUzMDctNGYzMi05MDdhLWE3NmU5NmM1ZTc1OD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/e991f60e-fa5a-49b6-a689-8d5ac5c557d1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U5OTFmNjBlLWZhNWEtNDliNi1hNjg5LThkNWFjNWM1NTdkMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -704,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "e7006c63-a739-4ba0-9656-84c65a30c348" + "a6e9ca1b-4555-463a-b012-238bebdf270d" ], "x-ms-correlation-request-id": [ - "3b160aac-5155-4d9e-bd32-e6a473296253" + "d73e67ea-ed65-4600-a913-faf365039744" ], "x-ms-arm-service-request-id": [ - "65469d3b-1d31-4354-b60e-9cf92a84bc1d" + "ba03acdd-3a67-4494-ac4c-ccd3c2433550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,13 +723,13 @@ "11994" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233856Z:3b160aac-5155-4d9e-bd32-e6a473296253" + "FRANCESOUTH:20201108T120756Z:d73e67ea-ed65-4600-a913-faf365039744" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:38:56 GMT" + "Sun, 08 Nov 2020 12:07:56 GMT" ], "Content-Length": [ "29" @@ -745,22 +745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTE/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02780968-5f96-4215-a82e-b05ffa7b5d76" + "70f98b57-76ef-4041-905f-099f87579edc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A39%3A02.5923354Z'\"" + "W/\"datetime'2020-11-08T12%3A08%3A05.6667835Z'\"" ], "x-ms-request-id": [ - "46553ea3-a298-4c09-8426-d7cd6be33593" + "4f486546-9fd2-47ac-8fcc-07cbed6c68b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e285482d-19f0-4381-9a8d-26cf77191363?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9017f7b-fc67-4f53-a0e2-508279adf4c2?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -801,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "0209d79a-a5a1-4305-8859-343b02ce485c" + "d3bc219c-a1c9-4046-a9b6-f1ecef6a214d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233903Z:0209d79a-a5a1-4305-8859-343b02ce485c" + "FRANCESOUTH:20201108T120806Z:d3bc219c-a1c9-4046-a9b6-f1ecef6a214d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,7 +813,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:39:03 GMT" + "Sun, 08 Nov 2020 12:08:06 GMT" ], "Content-Length": [ "319" @@ -825,20 +825,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911\",\r\n \"name\": \"ps1911\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A39%3A02.5923354Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946\",\r\n \"name\": \"ps2946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A08%3A05.6667835Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e285482d-19f0-4381-9a8d-26cf77191363?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTI4NTQ4MmQtMTlmMC00MzgxLTlhOGQtMjZjZjc3MTkxMzYzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9017f7b-fc67-4f53-a0e2-508279adf4c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTkwMTdmN2ItZmM2Ny00ZjUzLWEwZTItNTA4Mjc5YWRmNGMyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -849,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "ae0d7cf9-2bf7-4e8a-81eb-558adbe82052" + "8525bb2c-0ff6-41fe-9681-409ff8fd7999" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -867,10 +867,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "98a7febf-e19f-4122-8a92-23c9ea115891" + "b3f13053-7db4-4a73-8241-8d1db8119394" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233934Z:98a7febf-e19f-4122-8a92-23c9ea115891" + "FRANCESOUTH:20201108T120837Z:b3f13053-7db4-4a73-8241-8d1db8119394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,7 +879,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:39:33 GMT" + "Sun, 08 Nov 2020 12:08:36 GMT" ], "Content-Length": [ "495" @@ -891,20 +891,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e285482d-19f0-4381-9a8d-26cf77191363\",\r\n \"name\": \"e285482d-19f0-4381-9a8d-26cf77191363\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T23:39:02.5139144Z\",\r\n \"endTime\": \"2020-09-07T23:39:02.6857353Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9017f7b-fc67-4f53-a0e2-508279adf4c2\",\r\n \"name\": \"a9017f7b-fc67-4f53-a0e2-508279adf4c2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:08:05.5726572Z\",\r\n \"endTime\": \"2020-11-08T12:08:05.7601934Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTE/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -915,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A39%3A02.6743938Z'\"" + "W/\"datetime'2020-11-08T12%3A08%3A05.7598492Z'\"" ], "x-ms-request-id": [ - "e9a7741d-a449-4558-acce-411da01401dc" + "e5d203b0-7803-426e-9818-504135f5f552" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -936,10 +936,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "a118c885-53ed-413b-8a93-c117ba2b1939" + "a7506d71-62ea-4ede-9855-1b544fa7f09f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233934Z:a118c885-53ed-413b-8a93-c117ba2b1939" + "FRANCESOUTH:20201108T120837Z:a7506d71-62ea-4ede-9855-1b544fa7f09f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:39:33 GMT" + "Sun, 08 Nov 2020 12:08:36 GMT" ], "Content-Length": [ "320" @@ -960,26 +960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911\",\r\n \"name\": \"ps1911\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A39%3A02.6743938Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946\",\r\n \"name\": \"ps2946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A08%3A05.7598492Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDY/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd78a33-2ab9-4c14-a332-6608b6257c5e" + "f79c77f4-cf97-4edd-a425-6ace94880f04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A39%3A37.117919Z'\"" + "W/\"datetime'2020-11-08T12%3A08%3A40.092273Z'\"" ], "x-ms-request-id": [ - "304404a6-0e89-4b85-94d0-7d126e662f19" + "8cc71f0b-4473-4abd-beea-4ba1d802c35c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f01b7d31-ce23-4779-87c3-e3159d3ea36d?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/89e054d1-f775-414f-ace8-5fc6f494c9e0?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1020,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "0eda63aa-57a6-4e89-b66b-2bbf6467154d" + "5f2aed65-a8d4-4f98-9f40-b63e2c79b68e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T233938Z:0eda63aa-57a6-4e89-b66b-2bbf6467154d" + "FRANCESOUTH:20201108T120841Z:5f2aed65-a8d4-4f98-9f40-b63e2c79b68e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1032,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:39:37 GMT" + "Sun, 08 Nov 2020 12:08:41 GMT" ], "Content-Length": [ - "406" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,20 +1044,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846\",\r\n \"name\": \"ps1911/ps4846\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A39%3A37.117919Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833\",\r\n \"name\": \"ps2946/ps2833\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A08%3A40.092273Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f01b7d31-ce23-4779-87c3-e3159d3ea36d?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjAxYjdkMzEtY2UyMy00Nzc5LTg3YzMtZTMxNTlkM2VhMzZkP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/89e054d1-f775-414f-ace8-5fc6f494c9e0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODllMDU0ZDEtZjc3NS00MTRmLWFjZTgtNWZjNmY0OTRjOWUwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1068,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "3d35ff65-4414-40e2-9177-8be33aa6a7ce" + "758b295e-02d9-442d-a870-7e86bd265bde" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1086,10 +1086,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "706987fe-2ce8-42bd-8322-22cb183e8fd5" + "32acd474-0a19-416a-b73b-189a9b100e1b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234008Z:706987fe-2ce8-42bd-8322-22cb183e8fd5" + "FRANCESOUTH:20201108T120911Z:32acd474-0a19-416a-b73b-189a9b100e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:40:08 GMT" + "Sun, 08 Nov 2020 12:09:11 GMT" ], "Content-Length": [ "516" @@ -1110,20 +1110,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f01b7d31-ce23-4779-87c3-e3159d3ea36d\",\r\n \"name\": \"f01b7d31-ce23-4779-87c3-e3159d3ea36d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T23:39:37.0023315Z\",\r\n \"endTime\": \"2020-09-07T23:39:37.3304785Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/89e054d1-f775-414f-ace8-5fc6f494c9e0\",\r\n \"name\": \"89e054d1-f775-414f-ace8-5fc6f494c9e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:08:39.9772646Z\",\r\n \"endTime\": \"2020-11-08T12:08:40.3523162Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDY/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1134,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A39%3A41.3919643Z'\"" + "W/\"datetime'2020-11-08T12%3A08%3A44.3923267Z'\"" ], "x-ms-request-id": [ - "85b49388-db72-4408-95b5-40a7e48edab4" + "89766410-52f7-459a-92a6-a596c58930c1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1155,10 +1155,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "ca19434f-8b8a-4f70-9331-d75defd3b88d" + "871f0c6d-0f00-4948-b26e-4b9369d1aa98" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234008Z:ca19434f-8b8a-4f70-9331-d75defd3b88d" + "FRANCESOUTH:20201108T120911Z:871f0c6d-0f00-4948-b26e-4b9369d1aa98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,10 +1167,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:40:08 GMT" + "Sun, 08 Nov 2020 12:09:11 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,32 +1179,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846\",\r\n \"name\": \"ps1911/ps4846\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A39%3A41.3919643Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"0db78c77-8b0b-9832-8cf5-07e6c3200a7b\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833\",\r\n \"name\": \"ps2946/ps2833\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A08%3A44.3923267Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"bb7cb02b-88f1-4c3f-2005-7823ba1eb129\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps9713\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps677\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46309253-c9d1-4ebe-9b6c-d2c31fb28c17" + "27c7bd06-6233-49ab-94b3-ff7f601c515e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "326" + "396" ] }, "ResponseHeaders": { @@ -1215,13 +1215,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A40%3A10.6858216Z'\"" + "W/\"datetime'2020-11-08T12%3A09%3A13.7962435Z'\"" ], "x-ms-request-id": [ - "00108f14-d03d-4f1b-b2f4-831e53c93bd7" + "a17b8229-9d7b-4d3d-a127-8180402845b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1239,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "e2beb83b-7d9a-426d-9210-9a1d3dc4688b" + "2591b54d-baad-47e1-b646-460f06106578" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234011Z:e2beb83b-7d9a-426d-9210-9a1d3dc4688b" + "FRANCESOUTH:20201108T120914Z:2591b54d-baad-47e1-b646-460f06106578" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1251,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:40:11 GMT" + "Sun, 08 Nov 2020 12:09:14 GMT" ], "Content-Length": [ - "630" + "684" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1263,32 +1263,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\",\r\n \"name\": \"ps1911/ps4846/ps9713\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A40%3A10.6858216Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9713\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\",\r\n \"name\": \"ps2946/ps2833/ps677\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A09%3A13.7962435Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps677\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps9713\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"snapshotId\": \"42e728a6-12b2-a367-1de9-c2e3eaccb8d7\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps677\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"snapshotId\": \"f2a7c386-65e2-1f93-54e4-fd619a154054\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "596ff627-051f-4a0d-8df0-03149926a239" + "2c153952-4410-43f4-a6a3-2b3c80323beb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "385" + "455" ] }, "ResponseHeaders": { @@ -1299,13 +1299,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A44%3A15.7703477Z'\"" + "W/\"datetime'2020-11-08T12%3A13%3A19.3729161Z'\"" ], "x-ms-request-id": [ - "3eb827ba-f31a-41c9-963f-6ff5dba709e3" + "588133d0-8538-4f90-b900-0cf43352074c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be7159d1-cb3a-4b47-aa72-328b86e7aa18?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a999c84c-0e18-4e60-935d-605d88139126?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1323,10 +1323,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "71406876-3605-46b2-8b95-713a837384ee" + "20bbf26f-1b75-40d8-86c0-656ffbb9d658" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234416Z:71406876-3605-46b2-8b95-713a837384ee" + "FRANCESOUTH:20201108T121319Z:20bbf26f-1b75-40d8-86c0-656ffbb9d658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,10 +1335,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:15 GMT" + "Sun, 08 Nov 2020 12:13:19 GMT" ], "Content-Length": [ - "1280" + "1502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1347,20 +1347,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\",\r\n \"name\": \"ps1911/ps4846/ps9713\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A44%3A15.7703477Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Updating\",\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"name\": \"ps9713\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9713\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_4aae8882\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\",\r\n \"name\": \"ps2946/ps2833/ps677\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A13%3A19.3729161Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Updating\",\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"name\": \"ps677\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps677\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_7892af55\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1371,7 +1371,7 @@ "no-cache" ], "x-ms-request-id": [ - "4151ea97-eead-4c50-8a4c-717bf9c03815" + "f8f04566-f67a-44d6-a82c-4167ab84f414" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1389,10 +1389,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "362395d2-9213-41ad-b6ae-d9bdd49ca589" + "09ed12ab-6fc6-48c3-b981-a5704976f612" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234041Z:362395d2-9213-41ad-b6ae-d9bdd49ca589" + "FRANCESOUTH:20201108T120944Z:09ed12ab-6fc6-48c3-b981-a5704976f612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,10 +1401,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:40:41 GMT" + "Sun, 08 Nov 2020 12:09:44 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1413,20 +1413,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1437,7 +1437,7 @@ "no-cache" ], "x-ms-request-id": [ - "ff34ae1b-7108-44ef-a6c2-f555add86223" + "3e2948a8-16af-43dc-92be-a8f59f7a79f1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1455,10 +1455,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "f8875911-4176-4bcc-ad27-492d3a5b72e7" + "af43742a-1486-43e9-982d-44f23ca70fe5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234111Z:f8875911-4176-4bcc-ad27-492d3a5b72e7" + "FRANCESOUTH:20201108T121015Z:af43742a-1486-43e9-982d-44f23ca70fe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,10 +1467,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:41:11 GMT" + "Sun, 08 Nov 2020 12:10:14 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1479,20 +1479,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1503,7 +1503,7 @@ "no-cache" ], "x-ms-request-id": [ - "5386bc6d-9536-44db-bbe5-5a19b3a9f2b6" + "645f626d-040d-41dd-86a3-fd9f31adac71" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1521,10 +1521,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "c81b3a7d-b3ef-4af9-8380-b473e3ce0bd1" + "ee26bf04-7d82-46f3-ac6a-edb56b28accd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234142Z:c81b3a7d-b3ef-4af9-8380-b473e3ce0bd1" + "FRANCESOUTH:20201108T121045Z:ee26bf04-7d82-46f3-ac6a-edb56b28accd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,10 +1533,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:41:41 GMT" + "Sun, 08 Nov 2020 12:10:45 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,20 +1545,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1569,7 +1569,7 @@ "no-cache" ], "x-ms-request-id": [ - "546c2a06-1dbc-4eb4-906a-6d9d83c7af32" + "adbfaf09-de5c-47a4-b5b3-cbbde61da0e3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1587,10 +1587,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "f2cef3cc-a18c-4b4a-a357-e32496ccebe1" + "5e617cbf-2d99-4720-97bc-9390d7d8d797" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234212Z:f2cef3cc-a18c-4b4a-a357-e32496ccebe1" + "FRANCESOUTH:20201108T121115Z:5e617cbf-2d99-4720-97bc-9390d7d8d797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,10 +1599,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:42:11 GMT" + "Sun, 08 Nov 2020 12:11:15 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,20 +1611,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1635,7 +1635,7 @@ "no-cache" ], "x-ms-request-id": [ - "594ffde1-f8f0-422c-b1cf-0c1be5247498" + "0f670117-5481-4567-a803-7aa0afe29ff3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1653,10 +1653,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "0a339d13-6e7e-4aa9-a40f-bbe0f71eef3a" + "c0455e94-d800-4329-a935-86b25d063295" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234242Z:0a339d13-6e7e-4aa9-a40f-bbe0f71eef3a" + "FRANCESOUTH:20201108T121145Z:c0455e94-d800-4329-a935-86b25d063295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,10 +1665,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:42:41 GMT" + "Sun, 08 Nov 2020 12:11:45 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1677,20 +1677,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1701,7 +1701,7 @@ "no-cache" ], "x-ms-request-id": [ - "0d6090b9-0b64-4af2-9007-db794fec0313" + "acc539a4-9968-485a-8442-dc44091667e3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1719,10 +1719,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "d8ef5fd2-29a3-4024-8659-7a571b3413b4" + "f2d53e89-6476-45fb-be46-2e03f5f86bdb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234312Z:d8ef5fd2-29a3-4024-8659-7a571b3413b4" + "FRANCESOUTH:20201108T121216Z:f2d53e89-6476-45fb-be46-2e03f5f86bdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,10 +1731,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:43:12 GMT" + "Sun, 08 Nov 2020 12:12:15 GMT" ], "Content-Length": [ - "520" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1743,20 +1743,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTRiZjZjZTMtMzY1Ny00MTU1LTgyM2UtYzAyNDU1MjhlM2Y0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzkwMzg3MTAtOGJkOC00ZTZhLWE3ZjAtN2ZjZTEzZjQ1OWYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1767,7 +1767,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6626353-77b1-4598-9bea-5f625e7131be" + "e6c17319-9685-494d-9ee2-dc94c2df30df" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1785,10 +1785,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "aa204f94-b5ff-4114-894a-98f22c5535f7" + "ffad5382-20d3-46ae-8f4d-3aadfc723bc4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234342Z:aa204f94-b5ff-4114-894a-98f22c5535f7" + "FRANCESOUTH:20201108T121246Z:ffad5382-20d3-46ae-8f4d-3aadfc723bc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,10 +1797,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:43:42 GMT" + "Sun, 08 Nov 2020 12:12:45 GMT" ], "Content-Length": [ - "531" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1809,20 +1809,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"name\": \"e4bf6ce3-3657-4155-823e-c0245528e3f4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T23:40:10.5511316Z\",\r\n \"endTime\": \"2020-09-07T23:43:28.2397405Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"name\": \"c9038710-8bd8-4e6a-a7f0-7fce13f459f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:09:13.7061468Z\",\r\n \"endTime\": \"2020-11-08T12:12:31.3990488Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1833,10 +1833,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A43%3A28.2344931Z'\"" + "W/\"datetime'2020-11-08T12%3A12%3A31.4007982Z'\"" ], "x-ms-request-id": [ - "cf95463d-3bde-46e2-b473-9fbdfd9cd559" + "5223dddf-ddba-4df8-acc5-8c6831b500b0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1854,10 +1854,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "8dee9ae6-dc15-420a-8657-094150976ed5" + "2fbaa6a1-4b81-474e-bc3a-2a04d4fe5a30" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234343Z:8dee9ae6-dc15-420a-8657-094150976ed5" + "FRANCESOUTH:20201108T121246Z:2fbaa6a1-4b81-474e-bc3a-2a04d4fe5a30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,10 +1866,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:43:42 GMT" + "Sun, 08 Nov 2020 12:12:46 GMT" ], "Content-Length": [ - "1281" + "1503" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1878,20 +1878,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\",\r\n \"name\": \"ps1911/ps4846/ps9713\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A43%3A28.2344931Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"name\": \"ps9713\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9713\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_4aae8882\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\",\r\n \"name\": \"ps2946/ps2833/ps677\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A12%3A31.4007982Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"name\": \"ps677\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps677\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_7892af55\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1902,10 +1902,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T23%3A44%3A20.1134361Z'\"" + "W/\"datetime'2020-11-08T12%3A13%3A37.103529Z'\"" ], "x-ms-request-id": [ - "a2aad645-f6cd-4e81-8773-cc482c64d056" + "94b20f41-d558-4d48-82da-e5cef96d16b5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1923,10 +1923,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "7a8d1aa2-7952-4caa-874c-e059a4668b09" + "f07c6c16-378b-4c0a-8498-5c7ca696cd6d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234446Z:7a8d1aa2-7952-4caa-874c-e059a4668b09" + "FRANCESOUTH:20201108T121350Z:f07c6c16-378b-4c0a-8498-5c7ca696cd6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,10 +1935,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:45 GMT" + "Sun, 08 Nov 2020 12:13:50 GMT" ], "Content-Length": [ - "1273" + "1532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1947,26 +1947,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\",\r\n \"name\": \"ps1911/ps4846/ps9713\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T23%3A44%3A20.1134361Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"fileSystemId\": \"41ce2979-352c-9b39-aa38-bf925c7009a7\",\r\n \"name\": \"ps9713\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9713\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"snapshotId\": \"42e728a6-12b2-a367-1de9-c2e3eaccb8d7\",\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_4aae8882\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.Network/virtualNetworks/ps1880-vnet/subnets/default\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\",\r\n \"name\": \"ps2946/ps2833/ps677\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A13%3A37.103529Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"fileSystemId\": \"a27fc982-8cc4-5951-07b4-44c82856a39b\",\r\n \"name\": \"ps677\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps677\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"snapshotId\": \"f2a7c386-65e2-1f93-54e4-fd619a154054\",\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_7892af55\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.Network/virtualNetworks/ps9857-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTMvc25hcHNob3RzL3BzNDE3ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Ny9zbmFwc2hvdHMvcHM3ODA1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "171b044c-0246-48ac-b7e6-f1aac57384d7" + "ddb45867-6e81-45a8-b8e8-6670d654c396" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1983,13 +1983,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/833f91b9-b6ca-493a-abc2-a0f4c99f7f36?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c25febc2-45f1-48a4-81d7-709a441bda89?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "c0c8d143-f268-4280-8c20-86e661e9f15f" + "3d093a98-20f9-4714-a0da-f7bb5c60ce23" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/833f91b9-b6ca-493a-abc2-a0f4c99f7f36?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c25febc2-45f1-48a4-81d7-709a441bda89?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2007,10 +2007,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "32cf043d-e1e5-4c99-9ead-34a529376423" + "02752002-c965-4a8f-ab85-73b8f877e2ea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234343Z:32cf043d-e1e5-4c99-9ead-34a529376423" + "FRANCESOUTH:20201108T121247Z:02752002-c965-4a8f-ab85-73b8f877e2ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2019,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:43:42 GMT" + "Sun, 08 Nov 2020 12:12:46 GMT" ], "Content-Length": [ - "383" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,20 +2031,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174\",\r\n \"name\": \"ps1911/ps4846/ps9713/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps4174\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805\",\r\n \"name\": \"ps2946/ps2833/ps677/ps7805\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps7805\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/833f91b9-b6ca-493a-abc2-a0f4c99f7f36?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODMzZjkxYjktYjZjYS00OTNhLWFiYzItYTBmNGM5OWY3ZjM2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c25febc2-45f1-48a4-81d7-709a441bda89?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzI1ZmViYzItNDVmMS00OGE0LTgxZDctNzA5YTQ0MWJkYTg5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2055,7 +2055,7 @@ "no-cache" ], "x-ms-request-id": [ - "68ae2820-ce93-4e47-b6e5-ab4c073cc645" + "58f5647c-8f02-4c6b-b32f-4ae86ea01720" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2063,20 +2063,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], "x-ms-correlation-request-id": [ - "7df443aa-05b9-4518-8384-f2ab9757413d" + "0f4eb8e1-0231-4b44-9e62-119addfd1176" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234413Z:7df443aa-05b9-4518-8384-f2ab9757413d" + "FRANCESOUTH:20201108T121317Z:0f4eb8e1-0231-4b44-9e62-119addfd1176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,10 +2085,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:13 GMT" + "Sun, 08 Nov 2020 12:13:17 GMT" ], "Content-Length": [ - "548" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,20 +2097,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/833f91b9-b6ca-493a-abc2-a0f4c99f7f36\",\r\n \"name\": \"833f91b9-b6ca-493a-abc2-a0f4c99f7f36\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T23:43:43.3778566Z\",\r\n \"endTime\": \"2020-09-07T23:43:46.2838484Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c25febc2-45f1-48a4-81d7-709a441bda89\",\r\n \"name\": \"c25febc2-45f1-48a4-81d7-709a441bda89\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:12:46.9172765Z\",\r\n \"endTime\": \"2020-11-08T12:12:53.654505Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTMvc25hcHNob3RzL3BzNDE3ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Ny9zbmFwc2hvdHMvcHM3ODA1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2121,7 +2121,7 @@ "no-cache" ], "x-ms-request-id": [ - "4f90c546-54c8-4ac7-8af1-373379367809" + "7ee447f4-8d09-46dc-9d4c-70ffe79643a2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2139,10 +2139,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "0866da4c-92b8-4cdd-92d3-5e731c5db616" + "6c9ef9de-7a5c-4a81-808a-c8c8209bd831" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234414Z:0866da4c-92b8-4cdd-92d3-5e731c5db616" + "FRANCESOUTH:20201108T121317Z:6c9ef9de-7a5c-4a81-808a-c8c8209bd831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,10 +2151,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:14 GMT" + "Sun, 08 Nov 2020 12:13:17 GMT" ], "Content-Length": [ - "469" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2163,26 +2163,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174\",\r\n \"name\": \"ps1911/ps4846/ps9713/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"42e728a6-12b2-a367-1de9-c2e3eaccb8d7\",\r\n \"name\": \"ps4174\",\r\n \"created\": \"2020-09-07T23:43:44Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805\",\r\n \"name\": \"ps2946/ps2833/ps677/ps7805\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f2a7c386-65e2-1f93-54e4-fd619a154054\",\r\n \"name\": \"ps7805\",\r\n \"created\": \"2020-11-08T12:12:47Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTMvc25hcHNob3RzL3BzNDE3ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Ny9zbmFwc2hvdHMvcHM3ODA1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13f8fabf-3876-4ea4-91ef-79d6de41101f" + "3914b59a-a571-483b-9be0-0b57ac3c8c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2193,7 +2193,7 @@ "no-cache" ], "x-ms-request-id": [ - "08760496-01be-461c-8e86-0423d9be0ff6" + "cf144e3f-7aa5-4d4e-ba9a-6d37a6fd132a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2211,10 +2211,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "645aa7bb-f686-453d-a77d-4e6c0c12c219" + "76994c4e-2a7c-4e67-b03b-c901397b240e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234415Z:645aa7bb-f686-453d-a77d-4e6c0c12c219" + "FRANCESOUTH:20201108T121318Z:76994c4e-2a7c-4e67-b03b-c901397b240e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,10 +2223,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:14 GMT" + "Sun, 08 Nov 2020 12:13:18 GMT" ], "Content-Length": [ - "469" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174\",\r\n \"name\": \"ps1911/ps4846/ps9713/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"42e728a6-12b2-a367-1de9-c2e3eaccb8d7\",\r\n \"name\": \"ps4174\",\r\n \"created\": \"2020-09-07T23:43:44Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805\",\r\n \"name\": \"ps2946/ps2833/ps677/ps7805\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f2a7c386-65e2-1f93-54e4-fd619a154054\",\r\n \"name\": \"ps7805\",\r\n \"created\": \"2020-11-08T12:12:47Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTg4MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE5MTEvY2FwYWNpdHlQb29scy9wczQ4NDYvdm9sdW1lcy9wczk3MTMvc25hcHNob3RzL3BzNDE3ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTg1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI5NDYvY2FwYWNpdHlQb29scy9wczI4MzMvdm9sdW1lcy9wczY3Ny9zbmFwc2hvdHMvcHM3ODA1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ced30bd-2838-4589-8e7b-0834ff64e1e9" + "0e95beab-0323-4346-a371-b1599ed1eb95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "x-ms-request-id": [ - "5a723542-b815-4ec4-884a-05bc1a20d544" + "4c10b82a-540f-4835-970b-6ce00d69911d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2283,10 +2283,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "546a2ebf-9ab0-4a2f-a467-cd30a6c8ac78" + "59a15c65-6b04-4c5a-a0ec-4cfebfe4bb64" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234415Z:546a2ebf-9ab0-4a2f-a467-cd30a6c8ac78" + "FRANCESOUTH:20201108T121318Z:59a15c65-6b04-4c5a-a0ec-4cfebfe4bb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,10 +2295,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:15 GMT" + "Sun, 08 Nov 2020 12:13:18 GMT" ], "Content-Length": [ - "469" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2307,20 +2307,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713/snapshots/ps4174\",\r\n \"name\": \"ps1911/ps4846/ps9713/ps4174\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"42e728a6-12b2-a367-1de9-c2e3eaccb8d7\",\r\n \"name\": \"ps4174\",\r\n \"created\": \"2020-09-07T23:43:44Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677/snapshots/ps7805\",\r\n \"name\": \"ps2946/ps2833/ps677/ps7805\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f2a7c386-65e2-1f93-54e4-fd619a154054\",\r\n \"name\": \"ps7805\",\r\n \"created\": \"2020-11-08T12:12:47Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be7159d1-cb3a-4b47-aa72-328b86e7aa18?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYmU3MTU5ZDEtY2IzYS00YjQ3LWFhNzItMzI4Yjg2ZTdhYTE4P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a999c84c-0e18-4e60-935d-605d88139126?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTk5OWM4NGMtMGUxOC00ZTYwLTkzNWQtNjA1ZDg4MTM5MTI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2331,7 +2331,7 @@ "no-cache" ], "x-ms-request-id": [ - "0bd42106-6086-419b-85dd-957c10c132f0" + "05eea790-5007-4eb6-a5d6-44e18cc3c063" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2339,20 +2339,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], "x-ms-correlation-request-id": [ - "22ee5b37-a0e7-480e-8e3c-7ab4998ed2ca" + "5ca4f32c-85af-419f-a090-846a7af9d10f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234446Z:22ee5b37-a0e7-480e-8e3c-7ab4998ed2ca" + "FRANCESOUTH:20201108T121349Z:5ca4f32c-85af-419f-a090-846a7af9d10f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,7 +2361,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:45 GMT" + "Sun, 08 Nov 2020 12:13:49 GMT" ], "Content-Length": [ "530" @@ -2373,26 +2373,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be7159d1-cb3a-4b47-aa72-328b86e7aa18\",\r\n \"name\": \"be7159d1-cb3a-4b47-aa72-328b86e7aa18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T23:44:15.7143184Z\",\r\n \"endTime\": \"2020-09-07T23:44:19.243161Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps1880/providers/Microsoft.NetApp/netAppAccounts/ps1911/capacityPools/ps4846/volumes/ps9713\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a999c84c-0e18-4e60-935d-605d88139126\",\r\n \"name\": \"a999c84c-0e18-4e60-935d-605d88139126\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:13:19.2625588Z\",\r\n \"endTime\": \"2020-11-08T12:13:23.3876179Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9857/providers/Microsoft.NetApp/netAppAccounts/ps2946/capacityPools/ps2833/volumes/ps677\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1880?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTg4MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9857?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTg1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "329ef5de-a355-4366-99ed-dc85e20af947" + "aa439805-fa70-44a8-b68d-a8bfe1562842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2403,22 +2403,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-request-id": [ - "93357a50-6d8b-4045-ae08-db5ec0da3832" + "eef80f35-bfbe-44a4-b1ac-880afc7600d6" ], "x-ms-correlation-request-id": [ - "93357a50-6d8b-4045-ae08-db5ec0da3832" + "eef80f35-bfbe-44a4-b1ac-880afc7600d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234449Z:93357a50-6d8b-4045-ae08-db5ec0da3832" + "FRANCESOUTH:20201108T121354Z:eef80f35-bfbe-44a4-b1ac-880afc7600d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2427,7 +2427,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:44:48 GMT" + "Sun, 08 Nov 2020 12:13:53 GMT" ], "Expires": [ "-1" @@ -2440,16 +2440,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2460,22 +2460,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-request-id": [ - "b5d93653-9b92-4b77-b83a-32f447701df0" + "890dd25b-8a53-4e3f-8e69-9edba37a6819" ], "x-ms-correlation-request-id": [ - "b5d93653-9b92-4b77-b83a-32f447701df0" + "890dd25b-8a53-4e3f-8e69-9edba37a6819" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234504Z:b5d93653-9b92-4b77-b83a-32f447701df0" + "FRANCESOUTH:20201108T121409Z:890dd25b-8a53-4e3f-8e69-9edba37a6819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,7 +2484,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:45:03 GMT" + "Sun, 08 Nov 2020 12:14:09 GMT" ], "Expires": [ "-1" @@ -2497,16 +2497,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2517,22 +2517,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "4371a6c2-10d8-4b21-ad7c-e65d772e9670" + "dbcbdff9-b7bc-4287-a315-dc52f47ba325" ], "x-ms-correlation-request-id": [ - "4371a6c2-10d8-4b21-ad7c-e65d772e9670" + "dbcbdff9-b7bc-4287-a315-dc52f47ba325" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234519Z:4371a6c2-10d8-4b21-ad7c-e65d772e9670" + "FRANCESOUTH:20201108T121424Z:dbcbdff9-b7bc-4287-a315-dc52f47ba325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2541,7 +2541,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:45:18 GMT" + "Sun, 08 Nov 2020 12:14:24 GMT" ], "Expires": [ "-1" @@ -2554,16 +2554,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2574,22 +2574,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11988" ], "x-ms-request-id": [ - "45a36036-a8ce-404d-aecd-0622ef185562" + "59ab0857-3b00-4776-9cb8-f1a798d9d374" ], "x-ms-correlation-request-id": [ - "45a36036-a8ce-404d-aecd-0622ef185562" + "59ab0857-3b00-4776-9cb8-f1a798d9d374" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234534Z:45a36036-a8ce-404d-aecd-0622ef185562" + "FRANCESOUTH:20201108T121440Z:59ab0857-3b00-4776-9cb8-f1a798d9d374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2598,7 +2598,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:45:34 GMT" + "Sun, 08 Nov 2020 12:14:40 GMT" ], "Expires": [ "-1" @@ -2611,16 +2611,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2631,22 +2631,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11987" ], "x-ms-request-id": [ - "142bbbfb-840f-4f2d-88f3-3facc8a37a16" + "1b56fe09-e616-4ccb-8729-c1cb7b49030b" ], "x-ms-correlation-request-id": [ - "142bbbfb-840f-4f2d-88f3-3facc8a37a16" + "1b56fe09-e616-4ccb-8729-c1cb7b49030b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234550Z:142bbbfb-840f-4f2d-88f3-3facc8a37a16" + "FRANCESOUTH:20201108T121455Z:1b56fe09-e616-4ccb-8729-c1cb7b49030b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2655,7 +2655,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:45:50 GMT" + "Sun, 08 Nov 2020 12:14:55 GMT" ], "Expires": [ "-1" @@ -2668,16 +2668,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2688,22 +2688,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11986" ], "x-ms-request-id": [ - "5d334753-9301-4b21-a86d-c81d85b69ee6" + "c7ee94fd-fda4-4ee1-81f3-8828aad9b75d" ], "x-ms-correlation-request-id": [ - "5d334753-9301-4b21-a86d-c81d85b69ee6" + "c7ee94fd-fda4-4ee1-81f3-8828aad9b75d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234605Z:5d334753-9301-4b21-a86d-c81d85b69ee6" + "FRANCESOUTH:20201108T121511Z:c7ee94fd-fda4-4ee1-81f3-8828aad9b75d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,7 +2712,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:46:05 GMT" + "Sun, 08 Nov 2020 12:15:10 GMT" ], "Expires": [ "-1" @@ -2725,16 +2725,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2745,22 +2745,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11985" ], "x-ms-request-id": [ - "5c8bd3ce-263d-4968-a599-7e97abe6cc83" + "15fe75b4-ff99-4ca6-8cf1-0a159ac8e12d" ], "x-ms-correlation-request-id": [ - "5c8bd3ce-263d-4968-a599-7e97abe6cc83" + "15fe75b4-ff99-4ca6-8cf1-0a159ac8e12d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234620Z:5c8bd3ce-263d-4968-a599-7e97abe6cc83" + "FRANCESOUTH:20201108T121526Z:15fe75b4-ff99-4ca6-8cf1-0a159ac8e12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2769,7 +2769,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:46:20 GMT" + "Sun, 08 Nov 2020 12:15:25 GMT" ], "Expires": [ "-1" @@ -2782,16 +2782,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2802,22 +2802,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11984" ], "x-ms-request-id": [ - "6a7569e3-0492-46fd-a4df-efe39f28c961" + "4e52583b-6b5d-4626-a7cc-5f3c78b041cf" ], "x-ms-correlation-request-id": [ - "6a7569e3-0492-46fd-a4df-efe39f28c961" + "4e52583b-6b5d-4626-a7cc-5f3c78b041cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234636Z:6a7569e3-0492-46fd-a4df-efe39f28c961" + "FRANCESOUTH:20201108T121541Z:4e52583b-6b5d-4626-a7cc-5f3c78b041cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2826,7 +2826,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:46:35 GMT" + "Sun, 08 Nov 2020 12:15:40 GMT" ], "Expires": [ "-1" @@ -2839,16 +2839,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2859,22 +2859,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11983" ], "x-ms-request-id": [ - "dea3acfe-5056-47ab-9d4e-21859013f6d3" + "4b60fa1c-85be-45af-b78d-4685bc9345a3" ], "x-ms-correlation-request-id": [ - "dea3acfe-5056-47ab-9d4e-21859013f6d3" + "4b60fa1c-85be-45af-b78d-4685bc9345a3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234651Z:dea3acfe-5056-47ab-9d4e-21859013f6d3" + "FRANCESOUTH:20201108T121557Z:4b60fa1c-85be-45af-b78d-4685bc9345a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2883,7 +2883,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:46:50 GMT" + "Sun, 08 Nov 2020 12:15:56 GMT" ], "Expires": [ "-1" @@ -2896,16 +2896,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2916,22 +2916,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11982" ], "x-ms-request-id": [ - "90cd3059-235c-4a5e-aa9b-c1f4e9197faa" + "dee14bc2-aa18-4871-b713-cc7ad9149ded" ], "x-ms-correlation-request-id": [ - "90cd3059-235c-4a5e-aa9b-c1f4e9197faa" + "dee14bc2-aa18-4871-b713-cc7ad9149ded" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234706Z:90cd3059-235c-4a5e-aa9b-c1f4e9197faa" + "FRANCESOUTH:20201108T121612Z:dee14bc2-aa18-4871-b713-cc7ad9149ded" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,7 +2940,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:47:05 GMT" + "Sun, 08 Nov 2020 12:16:12 GMT" ], "Expires": [ "-1" @@ -2953,16 +2953,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2973,22 +2973,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11981" ], "x-ms-request-id": [ - "49be8d83-fe49-4ddd-af06-332aa4a93109" + "225f143e-2269-4eeb-bbf1-57a96180685e" ], "x-ms-correlation-request-id": [ - "49be8d83-fe49-4ddd-af06-332aa4a93109" + "225f143e-2269-4eeb-bbf1-57a96180685e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234721Z:49be8d83-fe49-4ddd-af06-332aa4a93109" + "FRANCESOUTH:20201108T121627Z:225f143e-2269-4eeb-bbf1-57a96180685e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2997,7 +2997,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:47:21 GMT" + "Sun, 08 Nov 2020 12:16:27 GMT" ], "Expires": [ "-1" @@ -3010,16 +3010,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3030,22 +3030,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11980" ], "x-ms-request-id": [ - "ebb12e93-1aba-4e1c-a254-c5d34506250a" + "3ec78a8e-c446-4af1-b121-75a7d4a00249" ], "x-ms-correlation-request-id": [ - "ebb12e93-1aba-4e1c-a254-c5d34506250a" + "3ec78a8e-c446-4af1-b121-75a7d4a00249" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234737Z:ebb12e93-1aba-4e1c-a254-c5d34506250a" + "FRANCESOUTH:20201108T121643Z:3ec78a8e-c446-4af1-b121-75a7d4a00249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3054,7 +3054,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:47:36 GMT" + "Sun, 08 Nov 2020 12:16:42 GMT" ], "Expires": [ "-1" @@ -3067,16 +3067,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3087,22 +3087,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11979" ], "x-ms-request-id": [ - "3e40e923-b80b-4b40-a2a4-e674c0a5cd69" + "f9aa4feb-084f-4b72-93aa-f6027344ab16" ], "x-ms-correlation-request-id": [ - "3e40e923-b80b-4b40-a2a4-e674c0a5cd69" + "f9aa4feb-084f-4b72-93aa-f6027344ab16" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234752Z:3e40e923-b80b-4b40-a2a4-e674c0a5cd69" + "FRANCESOUTH:20201108T121658Z:f9aa4feb-084f-4b72-93aa-f6027344ab16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3111,7 +3111,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:47:51 GMT" + "Sun, 08 Nov 2020 12:16:57 GMT" ], "Expires": [ "-1" @@ -3124,16 +3124,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3144,22 +3144,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11978" ], "x-ms-request-id": [ - "f0bef1be-0de8-413b-814c-25b5d44eb92a" + "0e89c75b-f93b-4fe0-a361-ff554f2a5305" ], "x-ms-correlation-request-id": [ - "f0bef1be-0de8-413b-814c-25b5d44eb92a" + "0e89c75b-f93b-4fe0-a361-ff554f2a5305" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234807Z:f0bef1be-0de8-413b-814c-25b5d44eb92a" + "FRANCESOUTH:20201108T121713Z:0e89c75b-f93b-4fe0-a361-ff554f2a5305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3168,7 +3168,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:48:07 GMT" + "Sun, 08 Nov 2020 12:17:13 GMT" ], "Expires": [ "-1" @@ -3181,16 +3181,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3201,22 +3201,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11977" ], "x-ms-request-id": [ - "c2b3e206-fb2b-4f08-aa70-3d1f2f1f96b3" + "1cb71d7e-376a-4045-bc81-dcfe17c3a1bd" ], "x-ms-correlation-request-id": [ - "c2b3e206-fb2b-4f08-aa70-3d1f2f1f96b3" + "1cb71d7e-376a-4045-bc81-dcfe17c3a1bd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234823Z:c2b3e206-fb2b-4f08-aa70-3d1f2f1f96b3" + "FRANCESOUTH:20201108T121729Z:1cb71d7e-376a-4045-bc81-dcfe17c3a1bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3225,7 +3225,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:48:22 GMT" + "Sun, 08 Nov 2020 12:17:28 GMT" ], "Expires": [ "-1" @@ -3238,16 +3238,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3258,22 +3258,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11976" ], "x-ms-request-id": [ - "3b5072d3-b104-4b48-aa7a-ae4f0441bd09" + "3ba35cfa-d902-4604-9188-f16b4dc61318" ], "x-ms-correlation-request-id": [ - "3b5072d3-b104-4b48-aa7a-ae4f0441bd09" + "3ba35cfa-d902-4604-9188-f16b4dc61318" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234838Z:3b5072d3-b104-4b48-aa7a-ae4f0441bd09" + "FRANCESOUTH:20201108T121744Z:3ba35cfa-d902-4604-9188-f16b4dc61318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3282,7 +3282,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:48:37 GMT" + "Sun, 08 Nov 2020 12:17:43 GMT" ], "Expires": [ "-1" @@ -3295,16 +3295,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3315,22 +3315,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11975" ], "x-ms-request-id": [ - "dab0cb86-bfd7-4750-a025-2ea3097aa226" + "262a8681-9cba-4e2c-a1b3-3b1a6a1d3709" ], "x-ms-correlation-request-id": [ - "dab0cb86-bfd7-4750-a025-2ea3097aa226" + "262a8681-9cba-4e2c-a1b3-3b1a6a1d3709" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234853Z:dab0cb86-bfd7-4750-a025-2ea3097aa226" + "FRANCESOUTH:20201108T121759Z:262a8681-9cba-4e2c-a1b3-3b1a6a1d3709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3339,7 +3339,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:48:53 GMT" + "Sun, 08 Nov 2020 12:17:59 GMT" ], "Expires": [ "-1" @@ -3352,16 +3352,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3372,22 +3372,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11974" ], "x-ms-request-id": [ - "f17d9259-59b4-413e-87b7-b8ffb1dea93d" + "d35fd89f-f508-4a71-b983-984384ea2870" ], "x-ms-correlation-request-id": [ - "f17d9259-59b4-413e-87b7-b8ffb1dea93d" + "d35fd89f-f508-4a71-b983-984384ea2870" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234908Z:f17d9259-59b4-413e-87b7-b8ffb1dea93d" + "FRANCESOUTH:20201108T121815Z:d35fd89f-f508-4a71-b983-984384ea2870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3396,7 +3396,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:49:08 GMT" + "Sun, 08 Nov 2020 12:18:14 GMT" ], "Expires": [ "-1" @@ -3409,16 +3409,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3429,22 +3429,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11973" ], "x-ms-request-id": [ - "ba1d017b-784b-4bd8-af8e-217f5ab822a8" + "adbc21f3-3e0c-4cd5-9f52-b4ef905577f6" ], "x-ms-correlation-request-id": [ - "ba1d017b-784b-4bd8-af8e-217f5ab822a8" + "adbc21f3-3e0c-4cd5-9f52-b4ef905577f6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234924Z:ba1d017b-784b-4bd8-af8e-217f5ab822a8" + "FRANCESOUTH:20201108T121830Z:adbc21f3-3e0c-4cd5-9f52-b4ef905577f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3453,7 +3453,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:49:23 GMT" + "Sun, 08 Nov 2020 12:18:30 GMT" ], "Expires": [ "-1" @@ -3466,16 +3466,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3486,22 +3486,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11972" ], "x-ms-request-id": [ - "50015f1b-d5dd-494e-8e3d-ad6c05451f73" + "64352e13-cf65-47de-8d7b-941e84190605" ], "x-ms-correlation-request-id": [ - "50015f1b-d5dd-494e-8e3d-ad6c05451f73" + "64352e13-cf65-47de-8d7b-941e84190605" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234939Z:50015f1b-d5dd-494e-8e3d-ad6c05451f73" + "FRANCESOUTH:20201108T121846Z:64352e13-cf65-47de-8d7b-941e84190605" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3510,7 +3510,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:49:39 GMT" + "Sun, 08 Nov 2020 12:18:45 GMT" ], "Expires": [ "-1" @@ -3523,16 +3523,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3543,22 +3543,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11971" ], "x-ms-request-id": [ - "888131f9-8fa6-4870-9e57-1a1e9f33b506" + "9ce0134b-f4a6-4182-b3c7-583abfd00009" ], "x-ms-correlation-request-id": [ - "888131f9-8fa6-4870-9e57-1a1e9f33b506" + "9ce0134b-f4a6-4182-b3c7-583abfd00009" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T234955Z:888131f9-8fa6-4870-9e57-1a1e9f33b506" + "FRANCESOUTH:20201108T121901Z:9ce0134b-f4a6-4182-b3c7-583abfd00009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3567,7 +3567,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:49:54 GMT" + "Sun, 08 Nov 2020 12:19:01 GMT" ], "Expires": [ "-1" @@ -3580,16 +3580,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3600,22 +3600,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11970" ], "x-ms-request-id": [ - "81f87a12-bd6f-44a3-b5ed-150827d01115" + "2e7b878d-a15f-44d4-a991-91e1501fb34a" ], "x-ms-correlation-request-id": [ - "81f87a12-bd6f-44a3-b5ed-150827d01115" + "2e7b878d-a15f-44d4-a991-91e1501fb34a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235010Z:81f87a12-bd6f-44a3-b5ed-150827d01115" + "FRANCESOUTH:20201108T121916Z:2e7b878d-a15f-44d4-a991-91e1501fb34a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3624,7 +3624,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:50:09 GMT" + "Sun, 08 Nov 2020 12:19:16 GMT" ], "Expires": [ "-1" @@ -3637,16 +3637,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3657,22 +3657,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11969" ], "x-ms-request-id": [ - "3bcf54ed-4965-42c5-91dc-8689fb1de2c9" + "e94a90b5-e189-4368-abd3-11a7e0a0b809" ], "x-ms-correlation-request-id": [ - "3bcf54ed-4965-42c5-91dc-8689fb1de2c9" + "e94a90b5-e189-4368-abd3-11a7e0a0b809" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235025Z:3bcf54ed-4965-42c5-91dc-8689fb1de2c9" + "FRANCESOUTH:20201108T121932Z:e94a90b5-e189-4368-abd3-11a7e0a0b809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3681,7 +3681,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:50:25 GMT" + "Sun, 08 Nov 2020 12:19:31 GMT" ], "Expires": [ "-1" @@ -3694,16 +3694,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3714,22 +3714,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11968" ], "x-ms-request-id": [ - "de3dd065-5305-43ab-889b-6f589618c96f" + "0891032a-22b2-4985-92f2-b108df365ad7" ], "x-ms-correlation-request-id": [ - "de3dd065-5305-43ab-889b-6f589618c96f" + "0891032a-22b2-4985-92f2-b108df365ad7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235041Z:de3dd065-5305-43ab-889b-6f589618c96f" + "FRANCESOUTH:20201108T121947Z:0891032a-22b2-4985-92f2-b108df365ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3738,7 +3738,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:50:40 GMT" + "Sun, 08 Nov 2020 12:19:47 GMT" ], "Expires": [ "-1" @@ -3751,16 +3751,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3771,22 +3771,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11967" ], "x-ms-request-id": [ - "24e61e48-cd7e-49be-a434-5dc8f588f978" + "d6a29e36-f068-4399-9dbe-f4a7ef0e7c55" ], "x-ms-correlation-request-id": [ - "24e61e48-cd7e-49be-a434-5dc8f588f978" + "d6a29e36-f068-4399-9dbe-f4a7ef0e7c55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235056Z:24e61e48-cd7e-49be-a434-5dc8f588f978" + "FRANCESOUTH:20201108T122002Z:d6a29e36-f068-4399-9dbe-f4a7ef0e7c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3795,7 +3795,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:50:56 GMT" + "Sun, 08 Nov 2020 12:20:02 GMT" ], "Expires": [ "-1" @@ -3808,16 +3808,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3828,22 +3828,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11966" ], "x-ms-request-id": [ - "930ab982-57cc-4550-b6a2-7884d6572c82" + "a1852937-24cf-48f8-a7be-7d97fabd16ce" ], "x-ms-correlation-request-id": [ - "930ab982-57cc-4550-b6a2-7884d6572c82" + "a1852937-24cf-48f8-a7be-7d97fabd16ce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235111Z:930ab982-57cc-4550-b6a2-7884d6572c82" + "FRANCESOUTH:20201108T122018Z:a1852937-24cf-48f8-a7be-7d97fabd16ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3852,7 +3852,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:51:11 GMT" + "Sun, 08 Nov 2020 12:20:17 GMT" ], "Expires": [ "-1" @@ -3865,16 +3865,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3884,17 +3884,137 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11965" + ], + "x-ms-request-id": [ + "c5e1a25a-65e9-4669-9fb6-3505e3ff35fa" + ], + "x-ms-correlation-request-id": [ + "c5e1a25a-65e9-4669-9fb6-3505e3ff35fa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T122033Z:c5e1a25a-65e9-4669-9fb6-3505e3ff35fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:20:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "f85de49a-f845-4b27-8e2e-984f10534e73" + ], + "x-ms-correlation-request-id": [ + "f85de49a-f845-4b27-8e2e-984f10534e73" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T122048Z:f85de49a-f845-4b27-8e2e-984f10534e73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:20:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" ], "x-ms-request-id": [ - "021e7e22-6e54-451b-b0e8-717281340203" + "41ecfa72-0a4b-475e-a74b-84d61faca8c2" ], "x-ms-correlation-request-id": [ - "021e7e22-6e54-451b-b0e8-717281340203" + "41ecfa72-0a4b-475e-a74b-84d61faca8c2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235126Z:021e7e22-6e54-451b-b0e8-717281340203" + "FRANCESOUTH:20201108T122104Z:41ecfa72-0a4b-475e-a74b-84d61faca8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3903,7 +4023,115 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:51:26 GMT" + "Sun, 08 Nov 2020 12:21:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "613113dc-e0a4-41c2-aa23-d300c3b979aa" + ], + "x-ms-correlation-request-id": [ + "613113dc-e0a4-41c2-aa23-d300c3b979aa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T122119Z:613113dc-e0a4-41c2-aa23-d300c3b979aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:21:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "1fa02940-ebe2-43bb-9870-e1aca4f6ca31" + ], + "x-ms-correlation-request-id": [ + "1fa02940-ebe2-43bb-9870-e1aca4f6ca31" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T122134Z:1fa02940-ebe2-43bb-9870-e1aca4f6ca31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:21:34 GMT" ], "Expires": [ "-1" @@ -3916,16 +4144,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4ODAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE9EQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk4NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNE5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3936,16 +4164,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11960" ], "x-ms-request-id": [ - "93accb67-6d64-4cb2-bb47-59dcea43c996" + "d1c62f5d-faa7-46f4-9244-e2ec62594a2d" ], "x-ms-correlation-request-id": [ - "93accb67-6d64-4cb2-bb47-59dcea43c996" + "d1c62f5d-faa7-46f4-9244-e2ec62594a2d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T235127Z:93accb67-6d64-4cb2-bb47-59dcea43c996" + "FRANCESOUTH:20201108T122135Z:d1c62f5d-faa7-46f4-9244-e2ec62594a2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3954,7 +4182,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 23:51:26 GMT" + "Sun, 08 Nov 2020 12:21:35 GMT" ], "Expires": [ "-1" @@ -3969,12 +4197,12 @@ ], "Names": { "Test-CreateVolumeFromSnapshot": [ - "ps1880", - "ps1911", - "ps4846", - "ps9713", - "ps4174", - "ps3655" + "ps9857", + "ps2946", + "ps2833", + "ps677", + "ps7805", + "ps2912" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestRestoreVolumeFromSnapshot.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestRestoreVolumeFromSnapshot.json index 8c29d4cb7c8a..da023e778854 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestRestoreVolumeFromSnapshot.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestRestoreVolumeFromSnapshot.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps167?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTY3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2624?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c62fbd40-e9ce-4684-a0d1-b07b0182a916" + "cdc43d69-b01d-4788-90d8-af8da884f72e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b3d7ea05-75e0-4a76-9860-cd7c439f4686" + "c6357189-7fda-4274-a607-18ef74d53741" ], "x-ms-correlation-request-id": [ - "b3d7ea05-75e0-4a76-9860-cd7c439f4686" + "c6357189-7fda-4274-a607-18ef74d53741" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105115Z:b3d7ea05-75e0-4a76-9860-cd7c439f4686" + "FRANCESOUTH:20201108T125125Z:c6357189-7fda-4274-a607-18ef74d53741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:14 GMT" + "Sun, 08 Nov 2020 12:51:25 GMT" ], "Content-Length": [ - "170" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167\",\r\n \"name\": \"ps167\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624\",\r\n \"name\": \"ps2624\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b39308e-acc4-42f0-9d56-dca735cae0a0" + "ecbbc93a-e164-4178-b35f-822f993e9e3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "e5df831f-f15c-47b0-8778-e02a73d67ec3" + "be465b26-4775-4aa5-9c7f-d2dfdf9de832" ], "x-ms-correlation-request-id": [ - "e5df831f-f15c-47b0-8778-e02a73d67ec3" + "be465b26-4775-4aa5-9c7f-d2dfdf9de832" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105116Z:e5df831f-f15c-47b0-8778-e02a73d67ec3" + "FRANCESOUTH:20201108T125126Z:be465b26-4775-4aa5-9c7f-d2dfdf9de832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:15 GMT" + "Sun, 08 Nov 2020 12:51:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "-1" ], "Content-Length": [ - "221" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps167-vnet' under resource group 'ps167' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps2624-vnet' under resource group 'ps2624' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\"" + "W/\"67b3e075-9e77-46be-81aa-39b38958b65d\"" ], "x-ms-request-id": [ - "3e1cab8e-db87-4315-9522-d328d84a8985" + "c9785773-8508-42f6-b255-65dd25ff1046" ], "x-ms-correlation-request-id": [ - "ea65072b-6e36-4705-b3a1-862528e37672" + "09d2574d-7646-42f3-9119-5ebfd4a45975" ], "x-ms-arm-service-request-id": [ - "b2a38919-6350-4fd9-a9e7-601631550b01" + "6cde4acf-9dc6-40a1-9e4c-a363348e8e77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,16 +169,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105127Z:ea65072b-6e36-4705-b3a1-862528e37672" + "FRANCESOUTH:20201108T125139Z:09d2574d-7646-42f3-9119-5ebfd4a45975" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:26 GMT" + "Sun, 08 Nov 2020 12:51:39 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"67b3e075-9e77-46be-81aa-39b38958b65d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a6d104-7af8-4dd9-891d-684113ea999d" + "77d2bd6c-f988-493b-9c65-06ce4b1be365" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\"" + "W/\"67b3e075-9e77-46be-81aa-39b38958b65d\"" ], "x-ms-request-id": [ - "9ae7bc75-95f1-4c3c-b39e-574388bb503b" + "7afe75bd-d877-422a-8a66-729640b65e30" ], "x-ms-correlation-request-id": [ - "f86ae91d-a553-433b-b25a-7b05192d67b2" + "0da2290d-5c3f-47f5-85e8-2fc8a125eaa5" ], "x-ms-arm-service-request-id": [ - "787d6c7e-0644-4bee-9423-77bf462a3048" + "f3f37015-43c3-4c54-a8d3-b236596307be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,16 +239,16 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105127Z:f86ae91d-a553-433b-b25a-7b05192d67b2" + "FRANCESOUTH:20201108T125140Z:0da2290d-5c3f-47f5-85e8-2fc8a125eaa5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:27 GMT" + "Sun, 08 Nov 2020 12:51:39 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"67b3e075-9e77-46be-81aa-39b38958b65d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89f81991-6e30-47b3-b78c-1fbee804d6eb" + "0c4c0451-546e-4362-9bfa-a9a578f800ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\"" + "W/\"67b3e075-9e77-46be-81aa-39b38958b65d\"" ], "x-ms-request-id": [ - "17aa326c-b3bc-4eb2-98b5-8dcf237290b2" + "804038b9-ce46-4766-9b86-6414d5c06071" ], "x-ms-correlation-request-id": [ - "6945178d-2766-43dd-bb1f-40694cc14dee" + "7f07d891-8532-46f9-b1fe-153a03dc7fb5" ], "x-ms-arm-service-request-id": [ - "0d572c50-7d64-4981-846d-c2f665878ad9" + "407ef812-3e56-43b5-a8fa-791092337def" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +309,16 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105127Z:6945178d-2766-43dd-bb1f-40694cc14dee" + "FRANCESOUTH:20201108T125140Z:7f07d891-8532-46f9-b1fe-153a03dc7fb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:27 GMT" + "Sun, 08 Nov 2020 12:51:40 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"33a6a1e1-0bd3-4681-a02e-e5e35776ab5e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"67b3e075-9e77-46be-81aa-39b38958b65d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"72ec3d76-698e-4dad-98a5-1bed99126e57\"" + "W/\"b625545f-405c-451f-a171-4b1d1729622a\"" ], "x-ms-request-id": [ - "12536130-e6db-41b6-8eb5-afb7208666ad" + "481b3579-9a4c-4c6e-9e26-bd1dd99247e2" ], "x-ms-correlation-request-id": [ - "096744ca-76b5-42f3-8295-9fa03d18c273" + "16c537db-725f-4fbb-82a5-314d49cabb75" ], "x-ms-arm-service-request-id": [ - "f6645f64-97ad-41be-b936-30ffa554146b" + "be544415-f274-4d2a-a0ac-38de2be968b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,16 +373,16 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105132Z:096744ca-76b5-42f3-8295-9fa03d18c273" + "FRANCESOUTH:20201108T125144Z:16c537db-725f-4fbb-82a5-314d49cabb75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:31 GMT" + "Sun, 08 Nov 2020 12:51:44 GMT" ], "Content-Length": [ - "2150" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4eb6ed5-ac6a-45c2-aaf9-e48a9b9661e5" + "8ca198d3-a4e3-4b33-b979-2a357d725ed2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"72ec3d76-698e-4dad-98a5-1bed99126e57\"" + "W/\"b625545f-405c-451f-a171-4b1d1729622a\"" ], "x-ms-request-id": [ - "2dc1f858-78c7-4acb-a2aa-d68dbe8b7550" + "c336ae3f-3218-41f4-bd38-3b2b9f7115e3" ], "x-ms-correlation-request-id": [ - "120009b3-d30d-4bfd-ad5d-a3cfb374f685" + "504518fe-926a-4e21-92cf-02c85a8f6f9c" ], "x-ms-arm-service-request-id": [ - "6b49eb06-c0e4-404d-a356-47908946f7d6" + "b2805198-4700-457f-ae97-4cf8287a2e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,16 +443,16 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105132Z:120009b3-d30d-4bfd-ad5d-a3cfb374f685" + "FRANCESOUTH:20201108T125144Z:504518fe-926a-4e21-92cf-02c85a8f6f9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:31 GMT" + "Sun, 08 Nov 2020 12:51:44 GMT" ], "Content-Length": [ - "2150" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -461,26 +461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"72ec3d76-698e-4dad-98a5-1bed99126e57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"b625545f-405c-451f-a171-4b1d1729622a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8c2591d-2abf-4013-9983-b3ae9a239860" + "e450d6d9-64f7-48de-888f-d42cd2869167" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -500,16 +500,16 @@ "3" ], "x-ms-request-id": [ - "ef591313-d147-448a-9de3-1286afc68e2c" + "d8d61e01-65c2-47e8-8054-4add9de62506" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ef591313-d147-448a-9de3-1286afc68e2c?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8d61e01-65c2-47e8-8054-4add9de62506?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "3c5bb4c1-7f7d-43ce-8997-ac1f72aa1a75" + "f11fe462-3d7d-429f-ba11-cfebba9eb217" ], "x-ms-arm-service-request-id": [ - "c626f76f-a4f5-41bc-9b3b-ca2b83c0e25a" + "c2dd2109-f501-4302-aa91-78b11ab24d49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,16 +522,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105123Z:3c5bb4c1-7f7d-43ce-8997-ac1f72aa1a75" + "FRANCESOUTH:20201108T125136Z:f11fe462-3d7d-429f-ba11-cfebba9eb217" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:22 GMT" + "Sun, 08 Nov 2020 12:51:35 GMT" ], "Content-Length": [ - "644" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,32 +540,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"b4f53249-f229-4924-badb-44a77c267cbc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"9a1bd816-63f3-4395-9724-101dbfb54e5b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHMxNjctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMjYyNC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ccbd4ccb-c696-4396-9e3a-663f7a029cbe" + "c1fa0ad2-766a-4035-b0a2-8b377b2bcfbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1068" + "1070" ] }, "ResponseHeaders": { @@ -579,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "abed8bbb-0023-4882-89a8-58abdfcb749b" + "ccd81a6d-291c-4d85-92ef-f36ba2a57e7e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/abed8bbb-0023-4882-89a8-58abdfcb749b?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ccd81a6d-291c-4d85-92ef-f36ba2a57e7e?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "b1594cdd-6a21-4c29-b895-23d9ab3a72d5" + "e7b7878f-87bb-4dad-8a2c-b659927b093b" ], "x-ms-arm-service-request-id": [ - "47fed8bd-64f1-4cf9-b027-6a880ccbb32f" + "e2cac076-2613-4002-87ff-aed680122d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,16 +601,16 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105128Z:b1594cdd-6a21-4c29-b895-23d9ab3a72d5" + "FRANCESOUTH:20201108T125141Z:e7b7878f-87bb-4dad-8a2c-b659927b093b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:28 GMT" + "Sun, 08 Nov 2020 12:51:40 GMT" ], "Content-Length": [ - "2148" + "2155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -619,20 +619,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps167-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet\",\r\n \"etag\": \"W/\\\"6ff380c6-4ead-4562-93d1-9c0e0020b666\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5cb90140-0f45-4e82-9d98-0bc265f33f76\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"6ff380c6-4ead-4562-93d1-9c0e0020b666\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"6ff380c6-4ead-4562-93d1-9c0e0020b666\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2624-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet\",\r\n \"etag\": \"W/\\\"1865494a-0e45-443d-9d3c-fce3b5d503b4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0c015dab-cbff-4c61-9438-65d7ddc9a107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1865494a-0e45-443d-9d3c-fce3b5d503b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1865494a-0e45-443d-9d3c-fce3b5d503b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ef591313-d147-448a-9de3-1286afc68e2c?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VmNTkxMzEzLWQxNDctNDQ4YS05ZGUzLTEyODZhZmM2OGUyYz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/d8d61e01-65c2-47e8-8054-4add9de62506?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q4ZDYxZTAxLTY1YzItNDdlOC04MDU0LTRhZGQ5ZGU2MjUwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -643,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "d99bc3dc-7dbc-49b2-b4b0-f2e632cb79fc" + "c06ed2b4-7809-4f79-8f2a-37c877b3da6a" ], "x-ms-correlation-request-id": [ - "ee771ea6-4e0e-4da9-b388-dc62c956b17a" + "d78623e1-bf45-41e5-b816-4659b9ddb3c2" ], "x-ms-arm-service-request-id": [ - "75f5d1f6-73a0-4387-8b51-a3b888f87293" + "e62da987-b2e6-409b-aae4-8decdf0e3219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,13 +662,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105127Z:ee771ea6-4e0e-4da9-b388-dc62c956b17a" + "FRANCESOUTH:20201108T125139Z:d78623e1-bf45-41e5-b816-4659b9ddb3c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:26 GMT" + "Sun, 08 Nov 2020 12:51:39 GMT" ], "Content-Length": [ "29" @@ -684,16 +684,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/abed8bbb-0023-4882-89a8-58abdfcb749b?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2FiZWQ4YmJiLTAwMjMtNDg4Mi04OWE4LTU4YWJkZmNiNzQ5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/ccd81a6d-291c-4d85-92ef-f36ba2a57e7e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NjZDgxYTZkLTI5MWMtNGQ4NS05MmVmLWYzNmJhMmE1N2U3ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -704,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "edb22219-f902-4d54-80a4-87932f318499" + "4c634947-595e-4b3d-8938-1d07d08d199a" ], "x-ms-correlation-request-id": [ - "db119cce-0c15-4562-bdb9-cdd26d94a360" + "d9e6061a-3f6f-447d-89fc-8e56ba167739" ], "x-ms-arm-service-request-id": [ - "8a644c49-79fd-4cd5-877b-f0a9050c6dfc" + "5efb40dc-1a03-42ff-bca5-ece28a4f54cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,13 +723,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105132Z:db119cce-0c15-4562-bdb9-cdd26d94a360" + "FRANCESOUTH:20201108T125144Z:d9e6061a-3f6f-447d-89fc-8e56ba167739" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:31 GMT" + "Sun, 08 Nov 2020 12:51:43 GMT" ], "Content-Length": [ "29" @@ -745,22 +745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Nj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fd50b506-8032-4359-97c7-0c4f9bc81c54" + "6714cb23-e68f-4a7a-a55e-31ce1112c2fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-08T10%3A51%3A39.1434092Z'\"" + "W/\"datetime'2020-11-08T12%3A51%3A52.5779038Z'\"" ], "x-ms-request-id": [ - "d896680d-4262-40bd-b0fa-a844bf903f6b" + "005cc725-55e3-415f-8f70-41f551ca0753" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53d31e99-54fc-4571-ad19-6bcfda143047?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/781d09c4-bce5-4b00-b977-5c3d1fe93d6a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -801,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "99d1874f-9a6b-4d86-8ea0-5de6a64fdede" + "74ba9b5d-f4ad-4201-a008-759a87a5270e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105140Z:99d1874f-9a6b-4d86-8ea0-5de6a64fdede" + "FRANCESOUTH:20201108T125153Z:74ba9b5d-f4ad-4201-a008-759a87a5270e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +813,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:51:40 GMT" + "Sun, 08 Nov 2020 12:51:53 GMT" ], "Content-Length": [ - "318" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,20 +825,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546\",\r\n \"name\": \"ps1546\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T10%3A51%3A39.1434092Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407\",\r\n \"name\": \"ps1407\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A51%3A52.5779038Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53d31e99-54fc-4571-ad19-6bcfda143047?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTNkMzFlOTktNTRmYy00NTcxLWFkMTktNmJjZmRhMTQzMDQ3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/781d09c4-bce5-4b00-b977-5c3d1fe93d6a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzgxZDA5YzQtYmNlNS00YjAwLWI5NzctNWMzZDFmZTkzZDZhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -849,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "066032b1-3352-424d-866e-ae91141923a6" + "001c8599-754b-4050-afc3-9f87f93b2edf" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -867,10 +867,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "2da938fd-fcef-4e25-9261-b3b3fb75f552" + "7557cc6b-2ecb-4d37-acab-1313674823d0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105210Z:2da938fd-fcef-4e25-9261-b3b3fb75f552" + "FRANCESOUTH:20201108T125223Z:7557cc6b-2ecb-4d37-acab-1313674823d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,10 +879,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:10 GMT" + "Sun, 08 Nov 2020 12:52:23 GMT" ], "Content-Length": [ - "494" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -891,20 +891,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/53d31e99-54fc-4571-ad19-6bcfda143047\",\r\n \"name\": \"53d31e99-54fc-4571-ad19-6bcfda143047\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-08T10:51:39.0567876Z\",\r\n \"endTime\": \"2020-09-08T10:51:39.2299491Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/781d09c4-bce5-4b00-b977-5c3d1fe93d6a\",\r\n \"name\": \"781d09c4-bce5-4b00-b977-5c3d1fe93d6a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:51:52.5091994Z\",\r\n \"endTime\": \"2020-11-08T12:51:52.6654335Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Nj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -915,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-08T10%3A51%3A39.2254671Z'\"" + "W/\"datetime'2020-11-08T12%3A51%3A52.6539582Z'\"" ], "x-ms-request-id": [ - "31029fda-5752-4103-ade3-776cfe573dac" + "79bcdb3e-af96-4b8c-922d-2b0ec0fc947e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -936,10 +936,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "441f6f5c-b310-47fa-bc1d-efb6c16f106d" + "6ad8c46a-e460-4b57-b507-724c5a10bf91" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105211Z:441f6f5c-b310-47fa-bc1d-efb6c16f106d" + "FRANCESOUTH:20201108T125224Z:6ad8c46a-e460-4b57-b507-724c5a10bf91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,10 +948,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:10 GMT" + "Sun, 08 Nov 2020 12:52:23 GMT" ], "Content-Length": [ - "319" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,26 +960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546\",\r\n \"name\": \"ps1546\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T10%3A51%3A39.2254671Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407\",\r\n \"name\": \"ps1407\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A51%3A52.6539582Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NT9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "38da708a-15bc-4a75-b61e-1e2f26e5b63c" + "18853a38-c09a-4db8-8435-e10bf2a4f9f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-08T10%3A52%3A13.7150316Z'\"" + "W/\"datetime'2020-11-08T12%3A52%3A27.1264747Z'\"" ], "x-ms-request-id": [ - "71856774-73cf-4a85-bcde-39232d79abb3" + "d057bb8a-c7ad-4ed0-9de6-b6b8b17abecc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba664361-fd88-4ea0-b4e2-dda002a4432b?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd563319-8ee1-42e8-8e9a-8df61264b35b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1020,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "03cd679a-4f82-48bf-b575-807f700c50ac" + "afa621a7-854e-4085-9c18-8362592db959" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105214Z:03cd679a-4f82-48bf-b575-807f700c50ac" + "FRANCESOUTH:20201108T125228Z:afa621a7-854e-4085-9c18-8362592db959" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,10 +1032,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:14 GMT" + "Sun, 08 Nov 2020 12:52:27 GMT" ], "Content-Length": [ - "406" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,20 +1044,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075\",\r\n \"name\": \"ps1546/ps5075\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T10%3A52%3A13.7150316Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964\",\r\n \"name\": \"ps1407/ps964\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A52%3A27.1264747Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba664361-fd88-4ea0-b4e2-dda002a4432b?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYmE2NjQzNjEtZmQ4OC00ZWEwLWI0ZTItZGRhMDAyYTQ0MzJiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd563319-8ee1-42e8-8e9a-8df61264b35b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYmQ1NjMzMTktOGVlMS00MmU4LThlOWEtOGRmNjEyNjRiMzViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1068,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "25392f0f-4926-40a8-840e-ef0c48466ac4" + "cae83786-c760-4fd3-bfb3-23d754cf20d6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1086,10 +1086,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "c98bf05e-7dca-4507-92f8-600589af8fb0" + "b52827a3-3829-4272-b554-345c38b8e05c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105245Z:c98bf05e-7dca-4507-92f8-600589af8fb0" + "FRANCESOUTH:20201108T125259Z:b52827a3-3829-4272-b554-345c38b8e05c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,10 +1098,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:44 GMT" + "Sun, 08 Nov 2020 12:52:59 GMT" ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1110,20 +1110,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba664361-fd88-4ea0-b4e2-dda002a4432b\",\r\n \"name\": \"ba664361-fd88-4ea0-b4e2-dda002a4432b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-08T10:52:13.5563128Z\",\r\n \"endTime\": \"2020-09-08T10:52:13.9833625Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bd563319-8ee1-42e8-8e9a-8df61264b35b\",\r\n \"name\": \"bd563319-8ee1-42e8-8e9a-8df61264b35b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:52:26.871976Z\",\r\n \"endTime\": \"2020-11-08T12:52:27.4188033Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NT9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1134,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-08T10%3A52%3A18.8306735Z'\"" + "W/\"datetime'2020-11-08T12%3A52%3A32.5113054Z'\"" ], "x-ms-request-id": [ - "6e2feef3-8f81-41a6-a5d8-a2bec72df051" + "3ac0913c-4098-45a9-95a6-80422922cdca" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1155,10 +1155,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "3af5c679-944b-490f-b974-576cfbcee193" + "02b956aa-6021-46e7-8078-84f40bede1d9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105245Z:3af5c679-944b-490f-b974-576cfbcee193" + "FRANCESOUTH:20201108T125259Z:02b956aa-6021-46e7-8078-84f40bede1d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,10 +1167,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:44 GMT" + "Sun, 08 Nov 2020 12:52:59 GMT" ], "Content-Length": [ - "455" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,32 +1179,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075\",\r\n \"name\": \"ps1546/ps5075\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T10%3A52%3A18.8306735Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"c4374b3e-b587-dfc9-cca6-7866f597bb14\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964\",\r\n \"name\": \"ps1407/ps964\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A52%3A32.5113054Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"dbece954-01a2-6a55-5dd4-7663ce8323b8\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps9154\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps638\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2aef20-2e2a-4c2a-8792-f9f7ee70ae3c" + "06cc66f8-2079-423d-b1e6-0e73386f1a12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "396" ] }, "ResponseHeaders": { @@ -1215,13 +1215,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-08T10%3A52%3A47.0988028Z'\"" + "W/\"datetime'2020-11-08T12%3A53%3A02.0983453Z'\"" ], "x-ms-request-id": [ - "ff4a16fb-651e-450c-954e-85ea7a1acc75" + "61f2cdc3-7d93-4319-a54d-8edec79de603" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1239,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "2834ea30-d3a5-4326-bdb5-bf695d1a2c18" + "7e195a20-3108-46f8-9408-693a08b28456" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105248Z:2834ea30-d3a5-4326-bdb5-bf695d1a2c18" + "FRANCESOUTH:20201108T125303Z:7e195a20-3108-46f8-9408-693a08b28456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1251,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:52:47 GMT" + "Sun, 08 Nov 2020 12:53:02 GMT" ], "Content-Length": [ - "627" + "682" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1263,20 +1263,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\",\r\n \"name\": \"ps1546/ps5075/ps9154\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T10%3A52%3A47.0988028Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9154\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\",\r\n \"name\": \"ps1407/ps964/ps638\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A53%3A02.0983453Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps638\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1287,7 +1287,7 @@ "no-cache" ], "x-ms-request-id": [ - "9bb59da4-98a5-41a3-a14c-2740e7707c09" + "52b5d3a5-a27e-4504-905f-2e61d3228159" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1305,10 +1305,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "903f9b72-1426-4c39-b402-174b4236088c" + "01edbd19-9b83-47f6-93c8-2bfbe755af01" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105318Z:903f9b72-1426-4c39-b402-174b4236088c" + "FRANCESOUTH:20201108T125333Z:01edbd19-9b83-47f6-93c8-2bfbe755af01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1317,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:53:17 GMT" + "Sun, 08 Nov 2020 12:53:32 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,20 +1329,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1353,7 +1353,7 @@ "no-cache" ], "x-ms-request-id": [ - "f96e51ec-ea26-42d8-a869-adf5b8e9a19c" + "10d5fb31-d30a-4d6c-b4eb-4d31472f9144" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1371,10 +1371,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "1fd37229-7b0a-4fbd-8ef9-24be73d20126" + "8dbd0344-144d-4c00-a406-ea460ec6c08e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105348Z:1fd37229-7b0a-4fbd-8ef9-24be73d20126" + "FRANCESOUTH:20201108T125403Z:8dbd0344-144d-4c00-a406-ea460ec6c08e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1383,10 +1383,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:53:48 GMT" + "Sun, 08 Nov 2020 12:54:03 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1395,20 +1395,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1419,7 +1419,7 @@ "no-cache" ], "x-ms-request-id": [ - "0005886c-9e72-4fd1-8e6a-125a4fdac0af" + "f78dfdc0-1198-42e7-a77d-14005c63788e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1437,10 +1437,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "0e6bb003-3170-4065-9ac2-817da86e15b0" + "031dbf52-658b-451e-807c-727902c47498" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105418Z:0e6bb003-3170-4065-9ac2-817da86e15b0" + "FRANCESOUTH:20201108T125433Z:031dbf52-658b-451e-807c-727902c47498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,10 +1449,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:54:18 GMT" + "Sun, 08 Nov 2020 12:54:33 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1461,20 +1461,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1485,7 +1485,7 @@ "no-cache" ], "x-ms-request-id": [ - "35d9d8fb-2ee0-4b38-8162-6dfd2b62170c" + "55212842-e8ce-4f93-be50-05e5299918b2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1503,10 +1503,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "9ceebe98-2d2e-4282-9557-b16834953675" + "b7860935-dd9d-4c4b-965f-a15b1e2136a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105449Z:9ceebe98-2d2e-4282-9557-b16834953675" + "FRANCESOUTH:20201108T125504Z:b7860935-dd9d-4c4b-965f-a15b1e2136a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,10 +1515,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:54:48 GMT" + "Sun, 08 Nov 2020 12:55:04 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1527,20 +1527,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1551,7 +1551,7 @@ "no-cache" ], "x-ms-request-id": [ - "2118a023-620c-47f0-a9d9-fff542c4f149" + "9140ff16-face-4aa8-a669-b93cea541cb1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1569,10 +1569,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "961388c6-8823-4e84-9030-7dfa8d8caa18" + "d3c6e022-582c-4479-bd3e-6c22e62a876d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105519Z:961388c6-8823-4e84-9030-7dfa8d8caa18" + "FRANCESOUTH:20201108T125534Z:d3c6e022-582c-4479-bd3e-6c22e62a876d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,10 +1581,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:55:18 GMT" + "Sun, 08 Nov 2020 12:55:34 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1593,20 +1593,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1617,7 +1617,7 @@ "no-cache" ], "x-ms-request-id": [ - "f8cda9ce-2f8f-489a-9c28-dcad0b2970a1" + "78d3254b-23fd-47a7-b5a4-edac207c4760" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1635,76 +1635,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "ecb9e412-37a5-48bf-b56b-403320db4d8d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105549Z:ecb9e412-37a5-48bf-b56b-403320db4d8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 10:55:48 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8d4ebee4-9e17-4018-80cc-2c705ad04393" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "c7ae2517-d616-40e7-98cd-ff7e8c68b823" + "9886723d-3bed-44b2-9d95-25d22e9ef345" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105619Z:c7ae2517-d616-40e7-98cd-ff7e8c68b823" + "FRANCESOUTH:20201108T125604Z:9886723d-3bed-44b2-9d95-25d22e9ef345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,10 +1647,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:56:19 GMT" + "Sun, 08 Nov 2020 12:56:04 GMT" ], "Content-Length": [ - "519" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1725,20 +1659,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjE5N2IxYzUtNjkyMS00ZmI5LWFkYzMtN2EzMWY0NTJlODhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1749,7 +1683,7 @@ "no-cache" ], "x-ms-request-id": [ - "5f7966bc-8452-4f56-8bf8-8207103dbf6e" + "f436025c-15b0-4507-bee2-02c1d795e45b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1764,13 +1698,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "0e4f7265-c2f2-48f8-9066-236e975d5d23" + "9b1e2a76-be91-4851-8c6d-862da0281bff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105650Z:0e4f7265-c2f2-48f8-9066-236e975d5d23" + "FRANCESOUTH:20201108T125634Z:9b1e2a76-be91-4851-8c6d-862da0281bff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,10 +1713,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:56:50 GMT" + "Sun, 08 Nov 2020 12:56:34 GMT" ], "Content-Length": [ - "519" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1791,20 +1725,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"name\": \"2197b1c5-6921-4fb9-adc3-7a31f452e88c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:53:02.0149193Z\",\r\n \"endTime\": \"2020-11-08T12:56:21.9742171Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1814,74 +1748,11 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "51a3a4c7-0fc9-4edc-864b-6167de2d80a2" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "90573154-9b3b-46a1-b2e0-ed526d582c38" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105720Z:90573154-9b3b-46a1-b2e0-ed526d582c38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 10:57:20 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "ETag": [ + "W/\"datetime'2020-11-08T12%3A56%3A21.9734955Z'\"" ], "x-ms-request-id": [ - "f4140d2f-c3a9-4558-8023-e7ae7c4e8ffa" + "9027efec-71fb-411d-bd0f-e1fdb3da7ca6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1896,13 +1767,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-correlation-request-id": [ - "45c619a6-5304-4f5d-9991-ccee4b7c39b7" + "a75d7d60-d5a0-46bd-967a-f3867a8ef234" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105750Z:45c619a6-5304-4f5d-9991-ccee4b7c39b7" + "FRANCESOUTH:20201108T125635Z:a75d7d60-d5a0-46bd-967a-f3867a8ef234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,10 +1782,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:57:50 GMT" + "Sun, 08 Nov 2020 12:56:34 GMT" ], "Content-Length": [ - "519" + "1501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,152 +1794,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\",\r\n \"name\": \"ps1407/ps964/ps638\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A56%3A21.9734955Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"fileSystemId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"name\": \"ps638\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps638\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_6e63c8c0\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4L3NuYXBzaG90cy9wczE5MTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "99e1add2-0adf-4075-bf28-a4ec900f2392" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "4df894fc-3bd1-40f9-83fc-005d8785da2c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105821Z:4df894fc-3bd1-40f9-83fc-005d8785da2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 10:58:20 GMT" - ], - "Content-Length": [ - "519" + "x-ms-client-request-id": [ + "b60f9d1f-8da2-4cfb-be60-e4c2cc61d78d" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Accept-Language": [ + "en-US" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "328bbce1-d7c4-48f8-8f58-798f51df60df" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "4df62db8-081c-4990-9aaf-031f7c9e5532" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105851Z:4df62db8-081c-4990-9aaf-031f7c9e5532" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 10:58:51 GMT" - ], - "Content-Length": [ - "519" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Content-Length": [ + "35" ] }, "ResponseHeaders": { @@ -2078,8 +1829,14 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62621e41-d8af-48c5-8dad-98fbac7fa34f?api-version=2020-06-01&operationResultResponseType=Location" + ], "x-ms-request-id": [ - "611b5d76-8931-4646-a7a7-6af870dcec4b" + "7f58635a-1d3d-4de5-acd8-28149d312352" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62621e41-d8af-48c5-8dad-98fbac7fa34f?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2093,14 +1850,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "82300fe9-37b1-40ce-b2eb-85dc117fdf70" + "9becd29a-1eb3-4500-90f2-34fd6c0e8793" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105921Z:82300fe9-37b1-40ce-b2eb-85dc117fdf70" + "FRANCESOUTH:20201108T125635Z:9becd29a-1eb3-4500-90f2-34fd6c0e8793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,10 +1866,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 10:59:21 GMT" + "Sun, 08 Nov 2020 12:56:35 GMT" ], "Content-Length": [ - "519" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2121,20 +1878,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917\",\r\n \"name\": \"ps1407/ps964/ps638/ps1917\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps1917\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62621e41-d8af-48c5-8dad-98fbac7fa34f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjI2MjFlNDEtZDhhZi00OGM1LThkYWQtOThmYmFjN2ZhMzRmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2145,7 +1902,7 @@ "no-cache" ], "x-ms-request-id": [ - "db743857-29a3-4ec8-a55e-ef0e29bf7b23" + "d3778498-642a-4aab-82af-6ae51f433b7a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2154,2986 +1911,19 @@ "Request-Context" ], "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "ec748a72-a59a-4506-a2e4-372358d559bb" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T105951Z:ec748a72-a59a-4506-a2e4-372358d559bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 10:59:51 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c7fb266-afea-46e1-a16d-f8b664e624ee" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "7dc06da2-531f-4b2f-a772-6a00811afeee" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110021Z:7dc06da2-531f-4b2f-a772-6a00811afeee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:00:21 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb424329-6da9-40cc-9330-0d3c6e1e5828" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "e53fa5ad-334f-4126-b642-0fac57d09174" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110052Z:e53fa5ad-334f-4126-b642-0fac57d09174" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:00:52 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aaf3fd9d-91c5-4f7c-87d6-211a0ff1e747" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "20e6ce46-c626-4301-b2fd-05017e3db9cf" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110122Z:20e6ce46-c626-4301-b2fd-05017e3db9cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:01:22 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6c3124a7-8fd0-4140-b5d9-3a302a5d222f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "04a29abe-aec4-4c39-a8fe-10b2a2eb9752" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110153Z:04a29abe-aec4-4c39-a8fe-10b2a2eb9752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:01:52 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6bed672e-5b04-4ef9-8035-d14b23c2e37a" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "26d56242-a613-4802-bef5-bf9e23cb9da6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110223Z:26d56242-a613-4802-bef5-bf9e23cb9da6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:02:22 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ee02ad6d-d0fc-42b7-86cc-f33a1fb6cec1" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "10077cf5-c7e5-4de3-9ae9-faeb84827743" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110253Z:10077cf5-c7e5-4de3-9ae9-faeb84827743" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:02:53 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "24619ffd-40f5-4b1f-86e9-fbcd81c32d1c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "c4240551-96e1-4720-b08d-b456da1ab050" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110323Z:c4240551-96e1-4720-b08d-b456da1ab050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:03:23 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ac5e4e1-0702-4716-9340-e57dc4f43784" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "64dddda3-566a-4039-9836-318c982082e4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110354Z:64dddda3-566a-4039-9836-318c982082e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:03:53 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7dbbb3e8-9169-4f5b-bd1b-a501ea6a0021" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "b360389c-60c0-4359-9f26-430f3683ebe7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110424Z:b360389c-60c0-4359-9f26-430f3683ebe7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:04:23 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "294e5da2-3b4f-4c4b-9d8d-e71326aa5aef" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "d72b6df2-fee8-4729-a6a4-89f13a046ecc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110454Z:d72b6df2-fee8-4729-a6a4-89f13a046ecc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:04:53 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bf25469a-e0be-47b9-b613-fc99f14049a0" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "5c055d3a-0176-4ea3-9015-671ff0ff314a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110524Z:5c055d3a-0176-4ea3-9015-671ff0ff314a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:05:24 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ef02637-f8a3-4345-9e20-a0a469f71880" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "643e1170-6f1a-4ec1-9611-a6483d4ce583" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110554Z:643e1170-6f1a-4ec1-9611-a6483d4ce583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:05:54 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a72a5526-6cd3-421e-a35c-653984df1cd3" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "17fbd9b5-6a86-4347-b7e3-72e25b7570f3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110625Z:17fbd9b5-6a86-4347-b7e3-72e25b7570f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:06:24 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fabb6459-2830-4aa0-9ed2-26c9b704e1fa" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "621ce95f-80cb-4cc2-840e-725b497235be" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110655Z:621ce95f-80cb-4cc2-840e-725b497235be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:06:55 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "64f39333-71d7-4d57-96cf-524de8ec5363" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "daf135c0-07e7-4bd6-bd81-7913bc4ea5de" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110726Z:daf135c0-07e7-4bd6-bd81-7913bc4ea5de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:07:25 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0e92403e-d302-44dd-923d-f646f9afb37d" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "0b3604fe-2bae-4047-948f-24de9ba0589c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110756Z:0b3604fe-2bae-4047-948f-24de9ba0589c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:07:55 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "474af703-b676-49b0-8489-74ea6e153269" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "0e0b4406-2478-4014-8e87-120600f16bf3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110826Z:0e0b4406-2478-4014-8e87-120600f16bf3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:08:26 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "53b930e9-2188-4aa4-9b4f-ffb85cf39b84" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "c990aef0-97b1-4035-8272-ddea2862bcb7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110856Z:c990aef0-97b1-4035-8272-ddea2862bcb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:08:56 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "08981e6b-a115-47ee-9e6f-f9c70bdc576f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "3d4e324c-65d5-4779-88f0-e034c5625c43" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110927Z:3d4e324c-65d5-4779-88f0-e034c5625c43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:09:26 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f0c253d-5e73-416f-9b2e-32f2adc1fc14" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "a81f023a-086d-4ed1-b03e-afbbc338f4b7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T110957Z:a81f023a-086d-4ed1-b03e-afbbc338f4b7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:09:56 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5eded8c8-1406-4e3d-bd83-5f29be7a4848" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "0562dd3d-5354-49a5-a2bd-adb2f5cb1d2f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111027Z:0562dd3d-5354-49a5-a2bd-adb2f5cb1d2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:10:27 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96923840-deca-4f58-bf7e-76ec78ed791e" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "1b531ae9-d4ae-4a1a-8191-7510a462a30f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111057Z:1b531ae9-d4ae-4a1a-8191-7510a462a30f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:10:57 GMT" - ], - "Content-Length": [ - "519" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYTM2YzMwZjgtNWZkZi00ZjZmLWFjYzEtMjA4OWIxM2Y5NjJhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2cee9a28-dfb8-4f88-8b29-9b802ddf38f7" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "117f5da5-ca65-43e7-9a50-748780cd2b8b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111127Z:117f5da5-ca65-43e7-9a50-748780cd2b8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:27 GMT" - ], - "Content-Length": [ - "530" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"name\": \"a36c30f8-5fdf-4f6f-acc1-2089b13f962a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-08T10:52:47.0108643Z\",\r\n \"endTime\": \"2020-09-08T11:11:06.9709912Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1ND9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "W/\"datetime'2020-09-08T11%3A11%3A06.968349Z'\"" - ], - "x-ms-request-id": [ - "6e2c53cd-d890-4376-95d4-44eacfe7ad89" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "ceac3ad6-dd6f-49f2-84aa-2f50b3d49677" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111128Z:ceac3ad6-dd6f-49f2-84aa-2f50b3d49677" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:28 GMT" - ], - "Content-Length": [ - "1277" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\",\r\n \"name\": \"ps1546/ps5075/ps9154\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T11%3A11%3A06.968349Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"fileSystemId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"name\": \"ps9154\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9154\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_199a3b9d\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1NC9zbmFwc2hvdHMvcHM2MjEyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0fc79d36-2405-4634-8bed-994e60d741b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9f61dee7-5126-466f-93f9-094d3e3d1ab4?api-version=2020-02-01&operationResultResponseType=Location" - ], - "x-ms-request-id": [ - "09a9d3a7-ba39-40ae-973e-883eca2e88c1" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9f61dee7-5126-466f-93f9-094d3e3d1ab4?api-version=2020-02-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "0273add9-8677-4d73-8d71-eaa44f2c84f1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111129Z:0273add9-8677-4d73-8d71-eaa44f2c84f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:28 GMT" - ], - "Content-Length": [ - "382" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212\",\r\n \"name\": \"ps1546/ps5075/ps9154/ps6212\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps6212\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9f61dee7-5126-466f-93f9-094d3e3d1ab4?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOWY2MWRlZTctNTEyNi00NjZmLTkzZjktMDk0ZDNlM2QxYWI0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ce6f27b2-ba78-4885-8483-49e517537628" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "b26eb994-6e4b-4bb5-b8df-6b4424381224" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111159Z:b26eb994-6e4b-4bb5-b8df-6b4424381224" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:58 GMT" - ], - "Content-Length": [ - "547" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9f61dee7-5126-466f-93f9-094d3e3d1ab4\",\r\n \"name\": \"9f61dee7-5126-466f-93f9-094d3e3d1ab4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-08T11:11:28.9156927Z\",\r\n \"endTime\": \"2020-09-08T11:11:32.1534752Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1NC9zbmFwc2hvdHMvcHM2MjEyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4a8d86cc-dc42-4c63-b823-193ced1828aa" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "e5bcf056-ced6-412c-a2e6-02d14b7bd28b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111159Z:e5bcf056-ced6-412c-a2e6-02d14b7bd28b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:59 GMT" - ], - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212\",\r\n \"name\": \"ps1546/ps5075/ps9154/ps6212\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"7d6e4069-6c78-6c61-7bf6-c60968e45fbf\",\r\n \"name\": \"ps6212\",\r\n \"created\": \"2020-09-08T11:11:29Z\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1NC9zbmFwc2hvdHMvcHM2MjEyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9fac0ea1-f87e-4368-b531-5ee87fdcda5f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c9ee0d90-cbc7-4775-b36f-2caca16db3a0" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "f11835e0-c6bd-47bf-a056-5fc6c21f4bdf" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111200Z:f11835e0-c6bd-47bf-a056-5fc6c21f4bdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:59 GMT" - ], - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212\",\r\n \"name\": \"ps1546/ps5075/ps9154/ps6212\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"7d6e4069-6c78-6c61-7bf6-c60968e45fbf\",\r\n \"name\": \"ps6212\",\r\n \"created\": \"2020-09-08T11:11:29Z\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1NC9zbmFwc2hvdHMvcHM2MjEyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc4bf129-8823-49c8-9e99-3a7ff215423f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94aa798e-4d81-409e-8c2e-20333d46fd6f" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "1a3f3175-165c-465b-bc5d-beb7448480d3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111200Z:1a3f3175-165c-465b-bc5d-beb7448480d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:11:59 GMT" - ], - "Content-Length": [ - "468" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/snapshots/ps6212\",\r\n \"name\": \"ps1546/ps5075/ps9154/ps6212\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"7d6e4069-6c78-6c61-7bf6-c60968e45fbf\",\r\n \"name\": \"ps6212\",\r\n \"created\": \"2020-09-08T11:11:29Z\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154/revert?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzMTU0Ni9jYXBhY2l0eVBvb2xzL3BzNTA3NS92b2x1bWVzL3BzOTE1NC9yZXZlcnQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"snapshotId\": \"7d6e4069-6c78-6c61-7bf6-c60968e45fbf\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7420efc9-1312-4003-b32d-9be56a07db16" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "60" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f81dd24-c205-42e1-a759-26ae001c164a?api-version=2020-02-01&operationResultResponseType=Location" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f81dd24-c205-42e1-a759-26ae001c164a?api-version=2020-02-01" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "0375abda-4e11-4606-9093-3188a9d5053d" - ], - "x-ms-correlation-request-id": [ - "0375abda-4e11-4606-9093-3188a9d5053d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111201Z:0375abda-4e11-4606-9093-3188a9d5053d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:12:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f81dd24-c205-42e1-a759-26ae001c164a?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMmY4MWRkMjQtYzIwNS00MmUxLWE3NTktMjZhZTAwMWMxNjRhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0bb1a647-f313-4957-8795-f0f676eee7f9" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "a8067630-9f63-49d5-80bc-08e1652f0bb6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111231Z:a8067630-9f63-49d5-80bc-08e1652f0bb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:12:31 GMT" - ], - "Content-Length": [ - "530" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f81dd24-c205-42e1-a759-26ae001c164a\",\r\n \"name\": \"2f81dd24-c205-42e1-a759-26ae001c164a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-08T11:12:00.9237938Z\",\r\n \"endTime\": \"2020-09-08T11:12:09.3211759Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f81dd24-c205-42e1-a759-26ae001c164a?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMmY4MWRkMjQtYzIwNS00MmUxLWE3NTktMjZhZTAwMWMxNjRhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "852bf4bb-9254-4666-bdef-41d80374159c" - ], - "Request-Context": [ - "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" - ], - "Access-Control-Expose-Headers": [ - "Request-Context" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "03803fc9-e0d9-40e3-8377-f71c921e1af9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111231Z:03803fc9-e0d9-40e3-8377-f71c921e1af9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:12:31 GMT" - ], - "Content-Length": [ - "1870" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\",\r\n \"name\": \"ps1546/ps5075/ps9154\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-08T11%3A12%3A00.9808083Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"name\": \"ps9154\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9154\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_199a3b9d\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.Network/virtualNetworks/ps167-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps167/providers/Microsoft.NetApp/netAppAccounts/ps1546/capacityPools/ps5075/volumes/ps9154\",\r\n \"poolId\": \"c4374b3e-b587-dfc9-cca6-7866f597bb14\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"fileSystemId\": \"669066ef-b9b3-2321-40ba-58ba39070d63\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps167?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTY3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba882496-a0c3-4304-aedf-e71aede15c81" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "fc137c02-f66e-48aa-a994-bc6dc8f0c029" - ], - "x-ms-correlation-request-id": [ - "fc137c02-f66e-48aa-a994-bc6dc8f0c029" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111235Z:fc137c02-f66e-48aa-a994-bc6dc8f0c029" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:12:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "f457b10a-a5d0-4817-a1e1-922dd8262343" - ], - "x-ms-correlation-request-id": [ - "f457b10a-a5d0-4817-a1e1-922dd8262343" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111250Z:f457b10a-a5d0-4817-a1e1-922dd8262343" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:12:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "19d01439-af43-4fb4-bff0-e027da419d16" - ], - "x-ms-correlation-request-id": [ - "19d01439-af43-4fb4-bff0-e027da419d16" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111306Z:19d01439-af43-4fb4-bff0-e027da419d16" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:13:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "3a1414ab-f48f-408c-8c18-bc027dbd03cd" - ], - "x-ms-correlation-request-id": [ - "3a1414ab-f48f-408c-8c18-bc027dbd03cd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111321Z:3a1414ab-f48f-408c-8c18-bc027dbd03cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:13:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "ee5436a8-130d-40ea-a759-b5563f0e8304" - ], - "x-ms-correlation-request-id": [ - "ee5436a8-130d-40ea-a759-b5563f0e8304" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111336Z:ee5436a8-130d-40ea-a759-b5563f0e8304" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:13:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "8ec382e1-a0fa-4bac-8362-5260889bd5f4" - ], - "x-ms-correlation-request-id": [ - "8ec382e1-a0fa-4bac-8362-5260889bd5f4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111351Z:8ec382e1-a0fa-4bac-8362-5260889bd5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:13:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "0bad988f-3af0-49cf-8357-2c220c4a2c57" - ], - "x-ms-correlation-request-id": [ - "0bad988f-3af0-49cf-8357-2c220c4a2c57" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111407Z:0bad988f-3af0-49cf-8357-2c220c4a2c57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:14:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "af1f8cd0-e61f-4998-a1bc-6e439e6bd433" - ], - "x-ms-correlation-request-id": [ - "af1f8cd0-e61f-4998-a1bc-6e439e6bd433" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111422Z:af1f8cd0-e61f-4998-a1bc-6e439e6bd433" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:14:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "6f629f11-a664-4ff7-93e2-16c8ac0ad351" - ], - "x-ms-correlation-request-id": [ - "6f629f11-a664-4ff7-93e2-16c8ac0ad351" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111437Z:6f629f11-a664-4ff7-93e2-16c8ac0ad351" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:14:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "c0251014-5019-484c-91a0-3a1f4ca8dd4e" - ], - "x-ms-correlation-request-id": [ - "c0251014-5019-484c-91a0-3a1f4ca8dd4e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111453Z:c0251014-5019-484c-91a0-3a1f4ca8dd4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:14:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "bfcdab80-0742-4c7c-a09e-8b2f46079509" - ], - "x-ms-correlation-request-id": [ - "bfcdab80-0742-4c7c-a09e-8b2f46079509" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111508Z:bfcdab80-0742-4c7c-a09e-8b2f46079509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:15:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "d2e5f84e-0635-43e2-adbe-e312b8b1c065" - ], - "x-ms-correlation-request-id": [ - "d2e5f84e-0635-43e2-adbe-e312b8b1c065" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111523Z:d2e5f84e-0635-43e2-adbe-e312b8b1c065" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:15:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "2f9b2608-a1b6-4d3e-a4aa-02ff7e5b441c" - ], - "x-ms-correlation-request-id": [ - "2f9b2608-a1b6-4d3e-a4aa-02ff7e5b441c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111539Z:2f9b2608-a1b6-4d3e-a4aa-02ff7e5b441c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Sep 2020 11:15:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "Microsoft-IIS/10.0" ], - "Retry-After": [ - "15" + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-request-id": [ - "75558b53-142f-4e2c-946d-f0a9ed82954c" - ], "x-ms-correlation-request-id": [ - "75558b53-142f-4e2c-946d-f0a9ed82954c" + "f762da95-2fdd-4d10-8594-54b7c07f41ea" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111554Z:75558b53-142f-4e2c-946d-f0a9ed82954c" + "FRANCESOUTH:20201108T125705Z:f762da95-2fdd-4d10-8594-54b7c07f41ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5142,29 +1932,32 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:15:53 GMT" + "Sun, 08 Nov 2020 12:57:05 GMT" + ], + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62621e41-d8af-48c5-8dad-98fbac7fa34f\",\r\n \"name\": \"62621e41-d8af-48c5-8dad-98fbac7fa34f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:56:35.3054965Z\",\r\n \"endTime\": \"2020-11-08T12:56:41.9260287Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4L3NuYXBzaG90cy9wczE5MTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -5174,23 +1967,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "040176e4-7844-4d34-ae02-150e03538bf7" ], - "Retry-After": [ - "15" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-request-id": [ - "b708164a-4aa1-4f3a-913d-abb423dc3d66" - ], "x-ms-correlation-request-id": [ - "b708164a-4aa1-4f3a-913d-abb423dc3d66" + "4749b053-2445-4ea2-9d46-589217330625" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111609Z:b708164a-4aa1-4f3a-913d-abb423dc3d66" + "FRANCESOUTH:20201108T125706Z:4749b053-2445-4ea2-9d46-589217330625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5199,29 +1998,38 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:16:09 GMT" + "Sun, 08 Nov 2020 12:57:05 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917\",\r\n \"name\": \"ps1407/ps964/ps638/ps1917\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f79aa390-1791-f005-64af-0959e8e61b26\",\r\n \"name\": \"ps1917\",\r\n \"created\": \"2020-11-08T12:56:35Z\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4L3NuYXBzaG90cy9wczE5MTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2098216d-3e73-4de0-a059-62a7e5c48aec" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -5231,23 +2039,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "83d330eb-152b-4cba-9375-301f23f58904" ], - "Retry-After": [ - "15" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-request-id": [ - "a2f048c4-027d-4bc4-a2b3-c3ade207f9cf" - ], "x-ms-correlation-request-id": [ - "a2f048c4-027d-4bc4-a2b3-c3ade207f9cf" + "caffa4a4-f4f2-4573-8590-cf3bdad1ea4e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111625Z:a2f048c4-027d-4bc4-a2b3-c3ade207f9cf" + "FRANCESOUTH:20201108T125706Z:caffa4a4-f4f2-4573-8590-cf3bdad1ea4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5256,29 +2070,38 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:16:25 GMT" + "Sun, 08 Nov 2020 12:57:06 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917\",\r\n \"name\": \"ps1407/ps964/ps638/ps1917\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f79aa390-1791-f005-64af-0959e8e61b26\",\r\n \"name\": \"ps1917\",\r\n \"created\": \"2020-11-08T12:56:35Z\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4L3NuYXBzaG90cy9wczE5MTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c32b7413-e7a7-4c8f-990c-d1ddc597d047" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -5288,23 +2111,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "2217b73c-db15-4323-b956-c393eead9c59" ], - "Retry-After": [ - "15" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-request-id": [ - "b07712eb-ebe9-4250-8c31-3b4b965ae16f" - ], "x-ms-correlation-request-id": [ - "b07712eb-ebe9-4250-8c31-3b4b965ae16f" + "c465109a-f603-45c5-aa5a-31e2077df26f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111640Z:b07712eb-ebe9-4250-8c31-3b4b965ae16f" + "FRANCESOUTH:20201108T125706Z:c465109a-f603-45c5-aa5a-31e2077df26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5313,29 +2142,44 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:16:40 GMT" + "Sun, 08 Nov 2020 12:57:06 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/snapshots/ps1917\",\r\n \"name\": \"ps1407/ps964/ps638/ps1917\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f79aa390-1791-f005-64af-0959e8e61b26\",\r\n \"name\": \"ps1917\",\r\n \"created\": \"2020-11-08T12:56:35Z\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638/revert?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMjYyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczE0MDcvY2FwYWNpdHlQb29scy9wczk2NC92b2x1bWVzL3BzNjM4L3JldmVydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"snapshotId\": \"f79aa390-1791-f005-64af-0959e8e61b26\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "95770037-b146-46cf-9112-7cd291406ebd" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "60" ] }, "ResponseHeaders": { @@ -5346,22 +2190,34 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/54f3deb3-d330-4793-9426-8f20a191efc3?api-version=2020-06-01&operationResultResponseType=Location" ], - "Retry-After": [ - "15" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/54f3deb3-d330-4793-9426-8f20a191efc3?api-version=2020-06-01" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "0e30e2aa-b74c-48a7-a5c6-cbeabcc95ec9" + "bfaf3bf5-b6e4-4e28-b4b7-178fb9aa4831" ], "x-ms-correlation-request-id": [ - "0e30e2aa-b74c-48a7-a5c6-cbeabcc95ec9" + "bfaf3bf5-b6e4-4e28-b4b7-178fb9aa4831" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111655Z:0e30e2aa-b74c-48a7-a5c6-cbeabcc95ec9" + "FRANCESOUTH:20201108T125707Z:bfaf3bf5-b6e4-4e28-b4b7-178fb9aa4831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5370,7 +2226,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:16:55 GMT" + "Sun, 08 Nov 2020 12:57:07 GMT" ], "Expires": [ "-1" @@ -5383,16 +2239,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/54f3deb3-d330-4793-9426-8f20a191efc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTRmM2RlYjMtZDMzMC00NzkzLTk0MjYtOGYyMGExOTFlZmMzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -5402,23 +2258,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "4b5c0dbc-daaa-4711-a7ef-780a65ffdaab" ], - "Retry-After": [ - "15" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], - "x-ms-request-id": [ - "1ccbbcbd-7269-4bb6-8d6a-fb4d501d3a43" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "1ccbbcbd-7269-4bb6-8d6a-fb4d501d3a43" + "1a7e8fdd-8cc2-4a9a-ae62-abe3efa652cc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111711Z:1ccbbcbd-7269-4bb6-8d6a-fb4d501d3a43" + "FRANCESOUTH:20201108T125737Z:1a7e8fdd-8cc2-4a9a-ae62-abe3efa652cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5427,29 +2289,32 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:17:10 GMT" + "Sun, 08 Nov 2020 12:57:37 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/54f3deb3-d330-4793-9426-8f20a191efc3\",\r\n \"name\": \"54f3deb3-d330-4793-9426-8f20a191efc3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:57:07.3544993Z\",\r\n \"endTime\": \"2020-11-08T12:57:16.3318043Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/54f3deb3-d330-4793-9426-8f20a191efc3?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNTRmM2RlYjMtZDMzMC00NzkzLTk0MjYtOGYyMGExOTFlZmMzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -5459,23 +2324,29 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "b65c1087-c3a5-4730-be2f-851a0212ec86" ], - "Retry-After": [ - "15" + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "Access-Control-Expose-Headers": [ + "Request-Context" ], - "x-ms-request-id": [ - "113ee1c2-fd21-48a8-8c46-b30e869927fe" + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "x-ms-correlation-request-id": [ - "113ee1c2-fd21-48a8-8c46-b30e869927fe" + "770ecdaf-6b87-49c3-ab0c-5e49fac53f34" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111727Z:113ee1c2-fd21-48a8-8c46-b30e869927fe" + "FRANCESOUTH:20201108T125738Z:770ecdaf-6b87-49c3-ab0c-5e49fac53f34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5484,29 +2355,38 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:17:26 GMT" + "Sun, 08 Nov 2020 12:57:38 GMT" + ], + "Content-Length": [ + "1866" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\",\r\n \"name\": \"ps1407/ps964/ps638\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A57%3A07.5419045Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"name\": \"ps638\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps638\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_6e63c8c0\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.Network/virtualNetworks/ps2624-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps2624/providers/Microsoft.NetApp/netAppAccounts/ps1407/capacityPools/ps964/volumes/ps638\",\r\n \"poolId\": \"dbece954-01a2-6a55-5dd4-7663ce8323b8\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"fileSystemId\": \"31bc780d-a0ae-6f3f-c5ed-9c165aec0f37\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps2624?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMjYyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "41610f3f-89e1-402c-aee8-afb0ca843b87" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5517,22 +2397,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "80227c91-812d-4edf-8639-8d07d5b90d47" + "98b3ae6d-5455-4ec0-ada5-3bc4a57d0194" ], "x-ms-correlation-request-id": [ - "80227c91-812d-4edf-8639-8d07d5b90d47" + "98b3ae6d-5455-4ec0-ada5-3bc4a57d0194" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111742Z:80227c91-812d-4edf-8639-8d07d5b90d47" + "FRANCESOUTH:20201108T125743Z:98b3ae6d-5455-4ec0-ada5-3bc4a57d0194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5541,7 +2421,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:17:41 GMT" + "Sun, 08 Nov 2020 12:57:42 GMT" ], "Expires": [ "-1" @@ -5554,16 +2434,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5574,22 +2454,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "5d6c1087-2af8-433c-9586-0f6222ed258c" + "249ac309-3ab7-431b-ad18-b667363e86c8" ], "x-ms-correlation-request-id": [ - "5d6c1087-2af8-433c-9586-0f6222ed258c" + "249ac309-3ab7-431b-ad18-b667363e86c8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111757Z:5d6c1087-2af8-433c-9586-0f6222ed258c" + "FRANCESOUTH:20201108T125758Z:249ac309-3ab7-431b-ad18-b667363e86c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5598,7 +2478,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:17:56 GMT" + "Sun, 08 Nov 2020 12:57:57 GMT" ], "Expires": [ "-1" @@ -5611,16 +2491,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5631,22 +2511,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "63be58f3-3c8b-45de-92ce-6b1734e28110" + "6f24856c-0b9e-4c80-ba47-dae0cf212ba8" ], "x-ms-correlation-request-id": [ - "63be58f3-3c8b-45de-92ce-6b1734e28110" + "6f24856c-0b9e-4c80-ba47-dae0cf212ba8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111813Z:63be58f3-3c8b-45de-92ce-6b1734e28110" + "FRANCESOUTH:20201108T125813Z:6f24856c-0b9e-4c80-ba47-dae0cf212ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5655,7 +2535,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:18:12 GMT" + "Sun, 08 Nov 2020 12:58:13 GMT" ], "Expires": [ "-1" @@ -5668,16 +2548,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5688,22 +2568,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11997" ], "x-ms-request-id": [ - "0de35dbc-a6ea-44fb-b128-53857a73ea7c" + "aa58d54f-96ec-4797-b739-b5d80df22792" ], "x-ms-correlation-request-id": [ - "0de35dbc-a6ea-44fb-b128-53857a73ea7c" + "aa58d54f-96ec-4797-b739-b5d80df22792" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111828Z:0de35dbc-a6ea-44fb-b128-53857a73ea7c" + "FRANCESOUTH:20201108T125829Z:aa58d54f-96ec-4797-b739-b5d80df22792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5712,7 +2592,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:18:27 GMT" + "Sun, 08 Nov 2020 12:58:28 GMT" ], "Expires": [ "-1" @@ -5725,16 +2605,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5745,22 +2625,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11996" ], "x-ms-request-id": [ - "ddb0f613-44f0-4f10-8603-9308c8c99292" + "a2fb76b1-9a2e-4874-90c4-226a1e4d1485" ], "x-ms-correlation-request-id": [ - "ddb0f613-44f0-4f10-8603-9308c8c99292" + "a2fb76b1-9a2e-4874-90c4-226a1e4d1485" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111843Z:ddb0f613-44f0-4f10-8603-9308c8c99292" + "FRANCESOUTH:20201108T125844Z:a2fb76b1-9a2e-4874-90c4-226a1e4d1485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5769,7 +2649,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:18:43 GMT" + "Sun, 08 Nov 2020 12:58:44 GMT" ], "Expires": [ "-1" @@ -5782,16 +2662,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5802,22 +2682,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11995" ], "x-ms-request-id": [ - "444d5f16-1fde-4642-9923-f1facdcb033b" + "14cd1d4e-5d89-42cd-ac5e-8e60431584ee" ], "x-ms-correlation-request-id": [ - "444d5f16-1fde-4642-9923-f1facdcb033b" + "14cd1d4e-5d89-42cd-ac5e-8e60431584ee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111858Z:444d5f16-1fde-4642-9923-f1facdcb033b" + "FRANCESOUTH:20201108T125859Z:14cd1d4e-5d89-42cd-ac5e-8e60431584ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5826,7 +2706,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:18:58 GMT" + "Sun, 08 Nov 2020 12:58:59 GMT" ], "Expires": [ "-1" @@ -5839,16 +2719,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5859,22 +2739,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11994" ], "x-ms-request-id": [ - "da78a86f-0a31-4c97-828e-e211d799d085" + "be75f586-6e57-498b-a780-5e731692d900" ], "x-ms-correlation-request-id": [ - "da78a86f-0a31-4c97-828e-e211d799d085" + "be75f586-6e57-498b-a780-5e731692d900" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111914Z:da78a86f-0a31-4c97-828e-e211d799d085" + "FRANCESOUTH:20201108T125915Z:be75f586-6e57-498b-a780-5e731692d900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5883,7 +2763,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:19:14 GMT" + "Sun, 08 Nov 2020 12:59:14 GMT" ], "Expires": [ "-1" @@ -5896,16 +2776,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5916,22 +2796,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11993" ], "x-ms-request-id": [ - "9ad31323-87f6-4ee2-a4b8-6de204a1c24a" + "f24f873a-1d47-40e7-986a-f73de5ea501a" ], "x-ms-correlation-request-id": [ - "9ad31323-87f6-4ee2-a4b8-6de204a1c24a" + "f24f873a-1d47-40e7-986a-f73de5ea501a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111929Z:9ad31323-87f6-4ee2-a4b8-6de204a1c24a" + "FRANCESOUTH:20201108T125930Z:f24f873a-1d47-40e7-986a-f73de5ea501a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5940,7 +2820,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:19:29 GMT" + "Sun, 08 Nov 2020 12:59:30 GMT" ], "Expires": [ "-1" @@ -5953,16 +2833,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5973,22 +2853,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11992" ], "x-ms-request-id": [ - "b1e9a41d-256f-45d5-a840-97f96fc9e2bd" + "a7a936df-c8b4-44f2-a715-01e8a35b1c51" ], "x-ms-correlation-request-id": [ - "b1e9a41d-256f-45d5-a840-97f96fc9e2bd" + "a7a936df-c8b4-44f2-a715-01e8a35b1c51" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T111944Z:b1e9a41d-256f-45d5-a840-97f96fc9e2bd" + "FRANCESOUTH:20201108T125945Z:a7a936df-c8b4-44f2-a715-01e8a35b1c51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5997,7 +2877,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:19:44 GMT" + "Sun, 08 Nov 2020 12:59:45 GMT" ], "Expires": [ "-1" @@ -6010,16 +2890,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6030,22 +2910,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11991" ], "x-ms-request-id": [ - "6ecd0b6c-ac44-4a08-b4bf-03779c528731" + "612ff344-912c-4ee8-aad2-daf40d9e70d1" ], "x-ms-correlation-request-id": [ - "6ecd0b6c-ac44-4a08-b4bf-03779c528731" + "612ff344-912c-4ee8-aad2-daf40d9e70d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112000Z:6ecd0b6c-ac44-4a08-b4bf-03779c528731" + "FRANCESOUTH:20201108T130001Z:612ff344-912c-4ee8-aad2-daf40d9e70d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6054,7 +2934,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:19:59 GMT" + "Sun, 08 Nov 2020 13:00:00 GMT" ], "Expires": [ "-1" @@ -6067,16 +2947,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6087,22 +2967,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11990" ], "x-ms-request-id": [ - "082afe95-badf-46a1-948d-5d6339ff282a" + "1ef4cb3f-80ae-485f-a2c4-bd878d4a2d7c" ], "x-ms-correlation-request-id": [ - "082afe95-badf-46a1-948d-5d6339ff282a" + "1ef4cb3f-80ae-485f-a2c4-bd878d4a2d7c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112015Z:082afe95-badf-46a1-948d-5d6339ff282a" + "FRANCESOUTH:20201108T130016Z:1ef4cb3f-80ae-485f-a2c4-bd878d4a2d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6111,7 +2991,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:20:14 GMT" + "Sun, 08 Nov 2020 13:00:15 GMT" ], "Expires": [ "-1" @@ -6124,16 +3004,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6144,22 +3024,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11989" ], "x-ms-request-id": [ - "23e44306-149e-4ceb-b61b-87b4e71668d1" + "46676a9b-f724-404a-8c0e-55e37c02a291" ], "x-ms-correlation-request-id": [ - "23e44306-149e-4ceb-b61b-87b4e71668d1" + "46676a9b-f724-404a-8c0e-55e37c02a291" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112030Z:23e44306-149e-4ceb-b61b-87b4e71668d1" + "FRANCESOUTH:20201108T130031Z:46676a9b-f724-404a-8c0e-55e37c02a291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6168,7 +3048,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:20:30 GMT" + "Sun, 08 Nov 2020 13:00:31 GMT" ], "Expires": [ "-1" @@ -6181,16 +3061,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6201,22 +3081,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11988" ], "x-ms-request-id": [ - "d487476c-03db-403b-8b12-a2c3f0755cde" + "1e8f9815-1ed9-44ab-a95a-b971e6987359" ], "x-ms-correlation-request-id": [ - "d487476c-03db-403b-8b12-a2c3f0755cde" + "1e8f9815-1ed9-44ab-a95a-b971e6987359" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112046Z:d487476c-03db-403b-8b12-a2c3f0755cde" + "FRANCESOUTH:20201108T130047Z:1e8f9815-1ed9-44ab-a95a-b971e6987359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6225,7 +3105,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:20:45 GMT" + "Sun, 08 Nov 2020 13:00:47 GMT" ], "Expires": [ "-1" @@ -6238,16 +3118,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6258,22 +3138,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11987" ], "x-ms-request-id": [ - "8a84401b-c5aa-4290-bed9-a48f0a7a62d3" + "a79fca93-2370-4b09-9ef1-cbd8e4c89590" ], "x-ms-correlation-request-id": [ - "8a84401b-c5aa-4290-bed9-a48f0a7a62d3" + "a79fca93-2370-4b09-9ef1-cbd8e4c89590" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112101Z:8a84401b-c5aa-4290-bed9-a48f0a7a62d3" + "FRANCESOUTH:20201108T130102Z:a79fca93-2370-4b09-9ef1-cbd8e4c89590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6282,7 +3162,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:21:00 GMT" + "Sun, 08 Nov 2020 13:01:01 GMT" ], "Expires": [ "-1" @@ -6295,16 +3175,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6315,22 +3195,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11986" ], "x-ms-request-id": [ - "94388642-1c19-4165-8f25-340538a10e9b" + "49796a9d-1f70-4200-ad5c-ed940835766f" ], "x-ms-correlation-request-id": [ - "94388642-1c19-4165-8f25-340538a10e9b" + "49796a9d-1f70-4200-ad5c-ed940835766f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112116Z:94388642-1c19-4165-8f25-340538a10e9b" + "FRANCESOUTH:20201108T130117Z:49796a9d-1f70-4200-ad5c-ed940835766f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6339,7 +3219,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:21:15 GMT" + "Sun, 08 Nov 2020 13:01:17 GMT" ], "Expires": [ "-1" @@ -6352,16 +3232,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6372,22 +3252,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11985" ], "x-ms-request-id": [ - "2c02d58b-6c7b-4a74-b6c8-bc8b8a7a959b" + "52718d76-f41a-43d5-b5d2-026922be430c" ], "x-ms-correlation-request-id": [ - "2c02d58b-6c7b-4a74-b6c8-bc8b8a7a959b" + "52718d76-f41a-43d5-b5d2-026922be430c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112132Z:2c02d58b-6c7b-4a74-b6c8-bc8b8a7a959b" + "FRANCESOUTH:20201108T130133Z:52718d76-f41a-43d5-b5d2-026922be430c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6396,7 +3276,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:21:31 GMT" + "Sun, 08 Nov 2020 13:01:32 GMT" ], "Expires": [ "-1" @@ -6409,16 +3289,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6429,22 +3309,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11984" ], "x-ms-request-id": [ - "25e9357b-739b-49bd-8a77-e44257b6b98d" + "7a22b6a4-091c-4fe6-a48b-1811ce20259e" ], "x-ms-correlation-request-id": [ - "25e9357b-739b-49bd-8a77-e44257b6b98d" + "7a22b6a4-091c-4fe6-a48b-1811ce20259e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112147Z:25e9357b-739b-49bd-8a77-e44257b6b98d" + "FRANCESOUTH:20201108T130148Z:7a22b6a4-091c-4fe6-a48b-1811ce20259e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6453,7 +3333,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:21:47 GMT" + "Sun, 08 Nov 2020 13:01:48 GMT" ], "Expires": [ "-1" @@ -6466,16 +3346,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6486,22 +3366,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11983" ], "x-ms-request-id": [ - "a0566d10-3459-4e60-9c2c-829ba4dfc92c" + "6e1bd804-4b58-4796-be15-1b57b13e633a" ], "x-ms-correlation-request-id": [ - "a0566d10-3459-4e60-9c2c-829ba4dfc92c" + "6e1bd804-4b58-4796-be15-1b57b13e633a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112202Z:a0566d10-3459-4e60-9c2c-829ba4dfc92c" + "FRANCESOUTH:20201108T130203Z:6e1bd804-4b58-4796-be15-1b57b13e633a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6510,7 +3390,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:22:02 GMT" + "Sun, 08 Nov 2020 13:02:03 GMT" ], "Expires": [ "-1" @@ -6523,16 +3403,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6543,22 +3423,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11982" ], "x-ms-request-id": [ - "27cce67a-0299-4826-afa4-47f579d0047a" + "989b7b02-c54b-40c8-b88b-a14051602541" ], "x-ms-correlation-request-id": [ - "27cce67a-0299-4826-afa4-47f579d0047a" + "989b7b02-c54b-40c8-b88b-a14051602541" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112218Z:27cce67a-0299-4826-afa4-47f579d0047a" + "FRANCESOUTH:20201108T130219Z:989b7b02-c54b-40c8-b88b-a14051602541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6567,7 +3447,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:22:17 GMT" + "Sun, 08 Nov 2020 13:02:18 GMT" ], "Expires": [ "-1" @@ -6580,16 +3460,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6600,22 +3480,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11981" ], "x-ms-request-id": [ - "1942ed51-4fa7-448e-8cf4-2eaf56dba82b" + "8c8a0d4b-5e55-42c9-ba7e-4f8b73899e5c" ], "x-ms-correlation-request-id": [ - "1942ed51-4fa7-448e-8cf4-2eaf56dba82b" + "8c8a0d4b-5e55-42c9-ba7e-4f8b73899e5c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112233Z:1942ed51-4fa7-448e-8cf4-2eaf56dba82b" + "FRANCESOUTH:20201108T130234Z:8c8a0d4b-5e55-42c9-ba7e-4f8b73899e5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6624,7 +3504,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:22:33 GMT" + "Sun, 08 Nov 2020 13:02:34 GMT" ], "Expires": [ "-1" @@ -6637,16 +3517,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6657,22 +3537,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11980" ], "x-ms-request-id": [ - "faabadaa-4661-43ce-829b-55c565bb5e80" + "f4f50c8b-fd4b-4fbf-9f57-135a63e54c38" ], "x-ms-correlation-request-id": [ - "faabadaa-4661-43ce-829b-55c565bb5e80" + "f4f50c8b-fd4b-4fbf-9f57-135a63e54c38" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112249Z:faabadaa-4661-43ce-829b-55c565bb5e80" + "FRANCESOUTH:20201108T130250Z:f4f50c8b-fd4b-4fbf-9f57-135a63e54c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6681,7 +3561,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:22:48 GMT" + "Sun, 08 Nov 2020 13:02:49 GMT" ], "Expires": [ "-1" @@ -6694,16 +3574,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6714,22 +3594,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11979" ], "x-ms-request-id": [ - "23f5bb61-13b9-4540-baca-9d65c1911645" + "9dfda3b5-3c98-4ff6-a36a-a64ce7e21fa5" ], "x-ms-correlation-request-id": [ - "23f5bb61-13b9-4540-baca-9d65c1911645" + "9dfda3b5-3c98-4ff6-a36a-a64ce7e21fa5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112304Z:23f5bb61-13b9-4540-baca-9d65c1911645" + "FRANCESOUTH:20201108T130305Z:9dfda3b5-3c98-4ff6-a36a-a64ce7e21fa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6738,7 +3618,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:23:03 GMT" + "Sun, 08 Nov 2020 13:03:05 GMT" ], "Expires": [ "-1" @@ -6751,16 +3631,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6771,22 +3651,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11978" ], "x-ms-request-id": [ - "e1a42a2d-a543-4816-95d5-33f589540d88" + "5fa2d174-d753-4226-8035-6237536abd54" ], "x-ms-correlation-request-id": [ - "e1a42a2d-a543-4816-95d5-33f589540d88" + "5fa2d174-d753-4226-8035-6237536abd54" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112319Z:e1a42a2d-a543-4816-95d5-33f589540d88" + "FRANCESOUTH:20201108T130321Z:5fa2d174-d753-4226-8035-6237536abd54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6795,7 +3675,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:23:19 GMT" + "Sun, 08 Nov 2020 13:03:20 GMT" ], "Expires": [ "-1" @@ -6808,16 +3688,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6828,22 +3708,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11977" ], "x-ms-request-id": [ - "deb34193-727d-48d8-a2ee-9aee31f60777" + "92a60d9e-1925-4477-8f53-8beee4c067d4" ], "x-ms-correlation-request-id": [ - "deb34193-727d-48d8-a2ee-9aee31f60777" + "92a60d9e-1925-4477-8f53-8beee4c067d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112335Z:deb34193-727d-48d8-a2ee-9aee31f60777" + "FRANCESOUTH:20201108T130336Z:92a60d9e-1925-4477-8f53-8beee4c067d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6852,7 +3732,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:23:34 GMT" + "Sun, 08 Nov 2020 13:03:35 GMT" ], "Expires": [ "-1" @@ -6865,16 +3745,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6885,22 +3765,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11976" ], "x-ms-request-id": [ - "6c038d2a-a236-44df-b11b-485ceba73fc5" + "0997b0dc-51d6-4c66-8fd2-fab58a0a15f9" ], "x-ms-correlation-request-id": [ - "6c038d2a-a236-44df-b11b-485ceba73fc5" + "0997b0dc-51d6-4c66-8fd2-fab58a0a15f9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112350Z:6c038d2a-a236-44df-b11b-485ceba73fc5" + "FRANCESOUTH:20201108T130351Z:0997b0dc-51d6-4c66-8fd2-fab58a0a15f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6909,7 +3789,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:23:50 GMT" + "Sun, 08 Nov 2020 13:03:51 GMT" ], "Expires": [ "-1" @@ -6922,16 +3802,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6942,22 +3822,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11975" ], "x-ms-request-id": [ - "0936353d-4fe2-4fa5-b075-c1a17ba5d67a" + "d79ec047-ebce-489a-adca-bbb1ecda011b" ], "x-ms-correlation-request-id": [ - "0936353d-4fe2-4fa5-b075-c1a17ba5d67a" + "d79ec047-ebce-489a-adca-bbb1ecda011b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112405Z:0936353d-4fe2-4fa5-b075-c1a17ba5d67a" + "FRANCESOUTH:20201108T130407Z:d79ec047-ebce-489a-adca-bbb1ecda011b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6966,7 +3846,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:24:05 GMT" + "Sun, 08 Nov 2020 13:04:06 GMT" ], "Expires": [ "-1" @@ -6979,16 +3859,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -6999,22 +3879,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11974" ], "x-ms-request-id": [ - "cfd419e0-6f9c-4214-8cc2-7c02646d97e6" + "a761c5df-e10b-4480-86ce-ee2e440ba158" ], "x-ms-correlation-request-id": [ - "cfd419e0-6f9c-4214-8cc2-7c02646d97e6" + "a761c5df-e10b-4480-86ce-ee2e440ba158" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112420Z:cfd419e0-6f9c-4214-8cc2-7c02646d97e6" + "FRANCESOUTH:20201108T130422Z:a761c5df-e10b-4480-86ce-ee2e440ba158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7023,7 +3903,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:24:20 GMT" + "Sun, 08 Nov 2020 13:04:21 GMT" ], "Expires": [ "-1" @@ -7036,16 +3916,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -7056,22 +3936,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11973" ], "x-ms-request-id": [ - "7d441c4e-9a69-4c0d-ac23-3aa4e7ca3cd2" + "e751ff97-b55a-43c3-afa3-c43f18b250ab" ], "x-ms-correlation-request-id": [ - "7d441c4e-9a69-4c0d-ac23-3aa4e7ca3cd2" + "e751ff97-b55a-43c3-afa3-c43f18b250ab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112436Z:7d441c4e-9a69-4c0d-ac23-3aa4e7ca3cd2" + "FRANCESOUTH:20201108T130437Z:e751ff97-b55a-43c3-afa3-c43f18b250ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7080,7 +3960,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:24:35 GMT" + "Sun, 08 Nov 2020 13:04:37 GMT" ], "Expires": [ "-1" @@ -7093,16 +3973,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -7113,22 +3993,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11972" ], "x-ms-request-id": [ - "c2a9229e-ed35-470a-8659-151f244884bd" + "5fb7b953-1d34-410b-9d36-ab5601a40bcc" ], "x-ms-correlation-request-id": [ - "c2a9229e-ed35-470a-8659-151f244884bd" + "5fb7b953-1d34-410b-9d36-ab5601a40bcc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112451Z:c2a9229e-ed35-470a-8659-151f244884bd" + "FRANCESOUTH:20201108T130453Z:5fb7b953-1d34-410b-9d36-ab5601a40bcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7137,7 +4017,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:24:50 GMT" + "Sun, 08 Nov 2020 13:04:52 GMT" ], "Expires": [ "-1" @@ -7150,16 +4030,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -7170,22 +4050,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11971" ], "x-ms-request-id": [ - "ee07748d-c7d9-4904-8e03-83532f5bd94e" + "a79dbbef-a63e-4840-a487-889f21870e3a" ], "x-ms-correlation-request-id": [ - "ee07748d-c7d9-4904-8e03-83532f5bd94e" + "a79dbbef-a63e-4840-a487-889f21870e3a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112506Z:ee07748d-c7d9-4904-8e03-83532f5bd94e" + "FRANCESOUTH:20201108T130508Z:a79dbbef-a63e-4840-a487-889f21870e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7194,7 +4074,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:25:06 GMT" + "Sun, 08 Nov 2020 13:05:07 GMT" ], "Expires": [ "-1" @@ -7207,16 +4087,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -7227,16 +4107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11970" ], "x-ms-request-id": [ - "0e11dc9e-4178-4ad6-9db4-3b5eeaec2820" + "23168247-2cd2-4f84-9ce0-e03b88d1dc7a" ], "x-ms-correlation-request-id": [ - "0e11dc9e-4178-4ad6-9db4-3b5eeaec2820" + "23168247-2cd2-4f84-9ce0-e03b88d1dc7a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112522Z:0e11dc9e-4178-4ad6-9db4-3b5eeaec2820" + "FRANCESOUTH:20201108T130523Z:23168247-2cd2-4f84-9ce0-e03b88d1dc7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7245,7 +4125,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:25:21 GMT" + "Sun, 08 Nov 2020 13:05:23 GMT" ], "Expires": [ "-1" @@ -7258,16 +4138,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk55MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2MjQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk1qUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -7278,16 +4158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11969" ], "x-ms-request-id": [ - "f7a9c470-8364-4482-ac8b-eb827ad405b8" + "19c7f4c3-e407-47ba-84a0-66f4508bfae7" ], "x-ms-correlation-request-id": [ - "f7a9c470-8364-4482-ac8b-eb827ad405b8" + "19c7f4c3-e407-47ba-84a0-66f4508bfae7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200908T112522Z:f7a9c470-8364-4482-ac8b-eb827ad405b8" + "FRANCESOUTH:20201108T130524Z:19c7f4c3-e407-47ba-84a0-66f4508bfae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7296,7 +4176,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Sep 2020 11:25:21 GMT" + "Sun, 08 Nov 2020 13:05:23 GMT" ], "Expires": [ "-1" @@ -7311,12 +4191,12 @@ ], "Names": { "Test-RestoreVolumeFromSnapshot": [ - "ps167", - "ps1546", - "ps5075", - "ps9154", - "ps6212", - "ps9424" + "ps2624", + "ps1407", + "ps964", + "ps638", + "ps1917", + "ps975" ] }, "Variables": { diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json index 1e95ddf80b84..cc5d8473d075 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps8257?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzODI1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3354?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzM1ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5aecd368-c705-4c56-8004-083e698c4179" + "190a3a7c-619e-4cdd-8bb4-0050ea48835d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "be74a8fc-ae03-4760-808e-f6edb3a00bfb" + "592f518c-a302-40b0-b79d-5ca5af4021e1" ], "x-ms-correlation-request-id": [ - "be74a8fc-ae03-4760-808e-f6edb3a00bfb" + "592f518c-a302-40b0-b79d-5ca5af4021e1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133251Z:be74a8fc-ae03-4760-808e-f6edb3a00bfb" + "FRANCESOUTH:20201108T122144Z:592f518c-a302-40b0-b79d-5ca5af4021e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:32:51 GMT" + "Sun, 08 Nov 2020 12:21:44 GMT" ], "Content-Length": [ "172" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257\",\r\n \"name\": \"ps8257\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354\",\r\n \"name\": \"ps3354\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a365a32c-56ec-4aba-b2fe-311d86c1826f" + "9de58cc6-8118-4981-af21-2417c59c0f8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8d78f167-b43b-470b-83a3-217515760493" + "ec39c384-a579-4a92-ac55-bb122508f8a1" ], "x-ms-correlation-request-id": [ - "8d78f167-b43b-470b-83a3-217515760493" + "ec39c384-a579-4a92-ac55-bb122508f8a1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133252Z:8d78f167-b43b-470b-83a3-217515760493" + "FRANCESOUTH:20201108T122145Z:ec39c384-a579-4a92-ac55-bb122508f8a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:32:52 GMT" + "Sun, 08 Nov 2020 12:21:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,20 +123,20 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps8257-vnet' under resource group 'ps8257' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps3354-vnet' under resource group 'ps3354' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"ee741418-acb5-4608-aab9-3f03a50825f8\"" + "W/\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\"" ], "x-ms-request-id": [ - "f272afe5-a651-4ec4-a769-881bace90949" + "a202378c-144c-4cc0-8aab-f7bd00e67e51" ], "x-ms-correlation-request-id": [ - "4f0088e1-6235-4456-99b0-6e9f3ebefcca" + "72f35f1e-0453-4969-95ef-ce4263a42db8" ], "x-ms-arm-service-request-id": [ - "e47b1c30-8352-42d1-8fc4-5dd08f0b54ee" + "120c3f64-160e-477d-b990-5cd84c3cbe86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,13 +169,13 @@ "11997" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133304Z:4f0088e1-6235-4456-99b0-6e9f3ebefcca" + "FRANCESOUTH:20201108T122157Z:72f35f1e-0453-4969-95ef-ce4263a42db8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:03 GMT" + "Sun, 08 Nov 2020 12:21:56 GMT" ], "Content-Length": [ "648" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"ee741418-acb5-4608-aab9-3f03a50825f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ed148bc-3212-45df-98b5-b1c160d8c489" + "aa982fe0-175e-4dee-8e92-00c08a77c4db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"ee741418-acb5-4608-aab9-3f03a50825f8\"" + "W/\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\"" ], "x-ms-request-id": [ - "a17c8695-d11c-47e7-86b6-463a26fea15c" + "e3b2b2b4-1e3e-4ae1-9e59-3dc6cd6aeb1c" ], "x-ms-correlation-request-id": [ - "90ec3934-0d77-4465-b681-97120bf5accc" + "12108d26-366a-4632-9592-76ba80bb41b3" ], "x-ms-arm-service-request-id": [ - "df8041b1-9767-443a-a2a6-e752a7644ba6" + "5c5d4e84-4514-493d-8e92-a9ad271c74c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,13 +239,13 @@ "11996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133304Z:90ec3934-0d77-4465-b681-97120bf5accc" + "FRANCESOUTH:20201108T122157Z:12108d26-366a-4632-9592-76ba80bb41b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:03 GMT" + "Sun, 08 Nov 2020 12:21:57 GMT" ], "Content-Length": [ "648" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"ee741418-acb5-4608-aab9-3f03a50825f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d98cfeed-0cd5-4261-8146-23e641d6aa9a" + "d06a17bc-fce8-4fe1-a05d-4753d2e8f1d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"ee741418-acb5-4608-aab9-3f03a50825f8\"" + "W/\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\"" ], "x-ms-request-id": [ - "95d1180c-b87b-4a6e-9638-e126064382e0" + "928efbb9-9112-4704-973b-0fa60c8d539e" ], "x-ms-correlation-request-id": [ - "76a89518-cdee-41da-8d9d-e39d105b3f16" + "49ce6b7f-5813-4090-a507-0992cbc82235" ], "x-ms-arm-service-request-id": [ - "df381afe-501e-423b-a97e-6e94ddffb0cd" + "edabe471-47cc-4c00-8775-d5de34f365ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,13 +309,13 @@ "11995" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133304Z:76a89518-cdee-41da-8d9d-e39d105b3f16" + "FRANCESOUTH:20201108T122157Z:49ce6b7f-5813-4090-a507-0992cbc82235" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:03 GMT" + "Sun, 08 Nov 2020 12:21:57 GMT" ], "Content-Length": [ "648" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"ee741418-acb5-4608-aab9-3f03a50825f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"d0aac090-f8ef-4b25-8849-d618df7fbe3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"3929dc62-7873-4afd-97b2-109650df31ec\"" + "W/\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\"" ], "x-ms-request-id": [ - "de03ff14-5834-4fb5-9881-f82271636137" + "807f63ff-4dc6-41ab-aaf6-7d65e8d6d3a2" ], "x-ms-correlation-request-id": [ - "d3c5ada0-dd02-4da5-bee6-b07a32973e91" + "f352db97-c8f6-414c-b7cc-72ec0abc8510" ], "x-ms-arm-service-request-id": [ - "897da6b5-0430-431c-90ed-1f5a2337c683" + "ef16486d-527d-4e26-aecf-3e70e8c38477" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,13 +373,13 @@ "11993" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133308Z:d3c5ada0-dd02-4da5-bee6-b07a32973e91" + "FRANCESOUTH:20201108T122202Z:f352db97-c8f6-414c-b7cc-72ec0abc8510" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:07 GMT" + "Sun, 08 Nov 2020 12:22:01 GMT" ], "Content-Length": [ "2157" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68a65c51-499a-4ad2-b175-415b89a2d3c2" + "0feae1c5-7645-4665-8e38-ca8a5d0a650c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"3929dc62-7873-4afd-97b2-109650df31ec\"" + "W/\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\"" ], "x-ms-request-id": [ - "50067173-6628-43aa-a4af-85d9f54c9913" + "9f4801bb-4e12-4efc-a2cd-6836244213ec" ], "x-ms-correlation-request-id": [ - "51d84699-5c1d-42b6-ab43-efb567c42bcb" + "8491f420-e2e1-4047-9d33-8f5f623a00d8" ], "x-ms-arm-service-request-id": [ - "080d96d0-98eb-438f-8a8f-5ce3bef60684" + "fe929964-594a-492a-a03a-fed11273a55b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,13 +443,13 @@ "11992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133308Z:51d84699-5c1d-42b6-ab43-efb567c42bcb" + "FRANCESOUTH:20201108T122202Z:8491f420-e2e1-4047-9d33-8f5f623a00d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:08 GMT" + "Sun, 08 Nov 2020 12:22:01 GMT" ], "Content-Length": [ "2157" @@ -461,26 +461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"3929dc62-7873-4afd-97b2-109650df31ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"74d20524-1e2e-4d64-8ed9-7f5a74e8287f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "86fd8cef-ac9e-4e54-a1aa-a41b20f64178" + "3544a8b1-1334-41a8-9c51-cff515bd3c58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -500,19 +500,16 @@ "3" ], "x-ms-request-id": [ - "a56d5bb0-13a4-457e-af6e-20b8a16a510b" + "643d94f1-c489-41e2-aaf8-76974334ab19" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/a56d5bb0-13a4-457e-af6e-20b8a16a510b?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/643d94f1-c489-41e2-aaf8-76974334ab19?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "f12d9cbb-b820-4ab0-bee6-a4539fb239a4" - ], - "Azure-AsyncNotification": [ - "Enabled" + "0b351f8c-39ff-4447-ae3f-23cbfcb9eb8d" ], "x-ms-arm-service-request-id": [ - "a3150fb1-b970-4df9-a611-a4d4cb6fb0ed" + "4bd9ce3e-9827-4c89-b672-7c4a2f252603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133300Z:f12d9cbb-b820-4ab0-bee6-a4539fb239a4" + "FRANCESOUTH:20201108T122153Z:0b351f8c-39ff-4447-ae3f-23cbfcb9eb8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:32:59 GMT" + "Sun, 08 Nov 2020 12:21:53 GMT" ], "Content-Length": [ "647" @@ -543,26 +540,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"1bc79c6c-17b4-4ca0-af1f-5f6e884a4ec6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"f4c30409-593d-45c4-b9b3-1cd53ad712b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODI1Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM1NC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd1cb0a3-2f98-4640-94bd-34f5a46f4969" + "fb874f74-15b5-4129-a6e9-ad26a4706496" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "84ea8379-1e0f-4e5e-bd3a-657e979e68c1" + "f8bea85f-a04a-4f80-82c3-8efc9e199ce6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/84ea8379-1e0f-4e5e-bd3a-657e979e68c1?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/f8bea85f-a04a-4f80-82c3-8efc9e199ce6?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "322209c8-6546-4639-9dc3-69dc93a7fd15" + "8becc0c7-13a8-4950-a8bb-416493ec46da" ], "x-ms-arm-service-request-id": [ - "13e4a3a6-f77b-4038-8200-ab81f6d283f4" + "b05af4e1-1d47-453c-a413-408d1766e213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -601,16 +598,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133305Z:322209c8-6546-4639-9dc3-69dc93a7fd15" + "FRANCESOUTH:20201108T122158Z:8becc0c7-13a8-4950-a8bb-416493ec46da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:04 GMT" + "Sun, 08 Nov 2020 12:21:58 GMT" ], "Content-Length": [ "2155" @@ -622,20 +619,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8257-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"etag\": \"W/\\\"be48a6fc-f9a4-4bb6-9e5e-572c49a42991\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f3231330-d07a-4523-a7d5-03dbc3caa95e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"be48a6fc-f9a4-4bb6-9e5e-572c49a42991\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"be48a6fc-f9a4-4bb6-9e5e-572c49a42991\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3354-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet\",\r\n \"etag\": \"W/\\\"91d6c99a-e6c4-4bbc-bb4b-fd05f7b03a94\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"24dda756-aa86-4eac-9def-cfcbe17c8774\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"91d6c99a-e6c4-4bbc-bb4b-fd05f7b03a94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"91d6c99a-e6c4-4bbc-bb4b-fd05f7b03a94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/a56d5bb0-13a4-457e-af6e-20b8a16a510b?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E1NmQ1YmIwLTEzYTQtNDU3ZS1hZjZlLTIwYjhhMTZhNTEwYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/643d94f1-c489-41e2-aaf8-76974334ab19?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY0M2Q5NGYxLWM0ODktNDFlMi1hYWY4LTc2OTc0MzM0YWIxOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -646,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "6ecd52bd-f8ab-4c18-9784-0562b8f48067" + "61475b7d-2cc0-4ffe-8124-3b54482dba6e" ], "x-ms-correlation-request-id": [ - "fe44fdca-4c34-4ba0-86e2-f5243b9725e9" + "6dd79e75-b1ed-45f8-ac56-62a8956caef2" ], "x-ms-arm-service-request-id": [ - "bd42abd3-841d-4397-adbd-f35f9b8c666e" + "efe08a40-f10d-4bcc-be31-0b9e473259df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,13 +662,13 @@ "11998" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133303Z:fe44fdca-4c34-4ba0-86e2-f5243b9725e9" + "FRANCESOUTH:20201108T122157Z:6dd79e75-b1ed-45f8-ac56-62a8956caef2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:02 GMT" + "Sun, 08 Nov 2020 12:21:56 GMT" ], "Content-Length": [ "29" @@ -687,16 +684,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/84ea8379-1e0f-4e5e-bd3a-657e979e68c1?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg0ZWE4Mzc5LTFlMGYtNGU1ZS1iZDNhLTY1N2U5NzllNjhjMT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/f8bea85f-a04a-4f80-82c3-8efc9e199ce6?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4YmVhODVmLWEwNGEtNGY4MC04MmMzLThlZmM5ZTE5OWNlNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -707,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "f37e00ab-1d76-46ae-be4a-e86fdf8ce4c3" + "6539920f-d7d3-426f-b3c9-bb4d85cc2548" ], "x-ms-correlation-request-id": [ - "4436b7b2-644c-4316-8fc1-16ffcbb3603a" + "1fced1f8-fbb6-4065-8a21-86b5a13756ec" ], "x-ms-arm-service-request-id": [ - "63cf7623-04cb-4bc9-96d6-e83bcc1b4e61" + "94480771-f116-4115-9d08-15a6c64d6bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +723,13 @@ "11994" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133308Z:4436b7b2-644c-4316-8fc1-16ffcbb3603a" + "FRANCESOUTH:20201108T122201Z:1fced1f8-fbb6-4065-8a21-86b5a13756ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:07 GMT" + "Sun, 08 Nov 2020 12:22:01 GMT" ], "Content-Length": [ "29" @@ -748,22 +745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e9283a02-5fe0-4072-96ba-df03ea666cf2" + "afdb8aeb-e4b5-4a93-99e6-a8e1acc2c220" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A33%3A16.1355802Z'\"" + "W/\"datetime'2020-11-08T12%3A22%3A10.5923628Z'\"" ], "x-ms-request-id": [ - "fab6309e-c8dc-488b-887e-1f9c4a8d628b" + "c04fec89-b644-4b49-a60e-d41df1c91854" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b5723be7-358a-4bea-a0ea-4dff4c259eb8?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/48d10753-e5a7-44d3-a754-3da638ac8e05?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -804,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "4c7bea1f-5a4b-4604-a992-615bb1a49453" + "0a3eb313-422b-45f2-ab63-ba50f612a8b9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133317Z:4c7bea1f-5a4b-4604-a992-615bb1a49453" + "FRANCESOUTH:20201108T122212Z:0a3eb313-422b-45f2-ab63-ba50f612a8b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,7 +813,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:17 GMT" + "Sun, 08 Nov 2020 12:22:11 GMT" ], "Content-Length": [ "319" @@ -828,20 +825,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849\",\r\n \"name\": \"ps5849\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A33%3A16.1355802Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725\",\r\n \"name\": \"ps6725\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A22%3A10.5923628Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b5723be7-358a-4bea-a0ea-4dff4c259eb8?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYjU3MjNiZTctMzU4YS00YmVhLWEwZWEtNGRmZjRjMjU5ZWI4P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/48d10753-e5a7-44d3-a754-3da638ac8e05?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNDhkMTA3NTMtZTVhNy00NGQzLWE3NTQtM2RhNjM4YWM4ZTA1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -852,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "a6eb5688-f63e-46dc-9a12-d9e9e1bea833" + "357ca9cf-768f-44f5-9102-72ba92c50e53" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -870,10 +867,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "c062a19b-7948-4033-b4c2-2560966b5b34" + "3d960a05-5dc5-4c14-aaf4-b7df3e453cf8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133347Z:c062a19b-7948-4033-b4c2-2560966b5b34" + "FRANCESOUTH:20201108T122242Z:3d960a05-5dc5-4c14-aaf4-b7df3e453cf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,7 +879,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:46 GMT" + "Sun, 08 Nov 2020 12:22:42 GMT" ], "Content-Length": [ "495" @@ -894,20 +891,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b5723be7-358a-4bea-a0ea-4dff4c259eb8\",\r\n \"name\": \"b5723be7-358a-4bea-a0ea-4dff4c259eb8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:33:16.0134232Z\",\r\n \"endTime\": \"2020-09-05T13:33:16.2008977Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/48d10753-e5a7-44d3-a754-3da638ac8e05\",\r\n \"name\": \"48d10753-e5a7-44d3-a754-3da638ac8e05\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:22:10.4729291Z\",\r\n \"endTime\": \"2020-11-08T12:22:10.6604157Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -918,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A33%3A16.1966243Z'\"" + "W/\"datetime'2020-11-08T12%3A22%3A10.6624125Z'\"" ], "x-ms-request-id": [ - "237a25dd-52f2-4fec-b15b-8a87d361aefe" + "ced35459-dea8-42c0-88ed-d3e6428e79b9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -939,10 +936,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "62e33a0a-0e67-46df-801a-9cb50f3b4c79" + "cff5d060-af88-450f-8c2f-e23c20cf654e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133347Z:62e33a0a-0e67-46df-801a-9cb50f3b4c79" + "FRANCESOUTH:20201108T122242Z:cff5d060-af88-450f-8c2f-e23c20cf654e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +948,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:47 GMT" + "Sun, 08 Nov 2020 12:22:42 GMT" ], "Content-Length": [ "320" @@ -963,26 +960,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849\",\r\n \"name\": \"ps5849\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A33%3A16.1966243Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725\",\r\n \"name\": \"ps6725\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A22%3A10.6624125Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ee79e1-ff3c-468f-8060-b6b016bd667e" + "943635eb-b6de-4e90-9ff3-0925dd2f1e75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -999,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A33%3A49.2522791Z'\"" + "W/\"datetime'2020-11-08T12%3A22%3A45.2860431Z'\"" ], "x-ms-request-id": [ - "ae2ae5b3-8c37-4854-bcfa-0db4e0659fc7" + "45fd91db-bbf7-4c51-8aa5-59bc64843799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/945b0b33-3fdf-4b90-9e83-3d6b60fbbb9d?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b7707f13-145e-425a-867b-5b983351ea8a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1023,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "100b7a30-4129-45bd-a8bb-7f0165ca06f2" + "cba37f74-9cc1-4e38-ba9a-f21eb45033e8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133350Z:100b7a30-4129-45bd-a8bb-7f0165ca06f2" + "FRANCESOUTH:20201108T122246Z:cba37f74-9cc1-4e38-ba9a-f21eb45033e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1032,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:33:49 GMT" + "Sun, 08 Nov 2020 12:22:46 GMT" ], "Content-Length": [ - "407" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,20 +1044,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370\",\r\n \"name\": \"ps5849/ps1370\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A33%3A49.2522791Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709\",\r\n \"name\": \"ps6725/ps3709\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A22%3A45.2860431Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/945b0b33-3fdf-4b90-9e83-3d6b60fbbb9d?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTQ1YjBiMzMtM2ZkZi00YjkwLTllODMtM2Q2YjYwZmJiYjlkP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b7707f13-145e-425a-867b-5b983351ea8a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYjc3MDdmMTMtMTQ1ZS00MjVhLTg2N2ItNWI5ODMzNTFlYThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1071,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "5ae03cb7-b179-4e3c-935b-aa671432e70c" + "e97c234a-4a89-4b53-91e5-f9e9941a452f" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1089,10 +1086,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "ba9a671c-d849-4f73-b16e-754b151fb275" + "b97d3acb-c121-4265-908d-05b9136cdfdc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133420Z:ba9a671c-d849-4f73-b16e-754b151fb275" + "FRANCESOUTH:20201108T122316Z:b97d3acb-c121-4265-908d-05b9136cdfdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,7 +1098,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:34:20 GMT" + "Sun, 08 Nov 2020 12:23:15 GMT" ], "Content-Length": [ "516" @@ -1113,20 +1110,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/945b0b33-3fdf-4b90-9e83-3d6b60fbbb9d\",\r\n \"name\": \"945b0b33-3fdf-4b90-9e83-3d6b60fbbb9d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:33:49.1827344Z\",\r\n \"endTime\": \"2020-09-05T13:33:49.4171287Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b7707f13-145e-425a-867b-5b983351ea8a\",\r\n \"name\": \"b7707f13-145e-425a-867b-5b983351ea8a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:22:45.2101364Z\",\r\n \"endTime\": \"2020-11-08T12:22:45.6476218Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1137,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A33%3A56.3533622Z'\"" + "W/\"datetime'2020-11-08T12%3A22%3A49.3259156Z'\"" ], "x-ms-request-id": [ - "ed8aa78f-461f-4de1-bded-dbfff0ce92cd" + "f79b7c54-11c5-40f6-821d-37f278e41c43" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1158,10 +1155,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "91c3760f-d62c-49a2-8c1b-0dd2a4d7baef" + "3543a460-5ed8-4f96-96f0-4e7e6efc79bd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133420Z:91c3760f-d62c-49a2-8c1b-0dd2a4d7baef" + "FRANCESOUTH:20201108T122317Z:3543a460-5ed8-4f96-96f0-4e7e6efc79bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,10 +1167,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:34:20 GMT" + "Sun, 08 Nov 2020 12:23:16 GMT" ], "Content-Length": [ - "456" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,32 +1179,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370\",\r\n \"name\": \"ps5849/ps1370\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A33%3A56.3533622Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"f1f5b989-b5b9-f0cf-24bf-6e3ce7cb781f\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709\",\r\n \"name\": \"ps6725/ps3709\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A22%3A49.3259156Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"1210961e-4303-8f92-b5d7-511de93e3e0e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1332\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps4222\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "310c08ca-c822-4323-ac0f-787408379406" + "7aa2e078-8af5-455b-a4c2-56efb5a6efaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "326" + "397" ] }, "ResponseHeaders": { @@ -1218,13 +1215,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A34%3A22.7082269Z'\"" + "W/\"datetime'2020-11-08T12%3A23%3A19.499375Z'\"" ], "x-ms-request-id": [ - "c80a5a4f-b23d-4ea7-a15d-b974a9cd4676" + "79d4688a-85f3-4c94-bfa2-9e7bbe823f9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1242,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "11baea55-7447-4f9c-8cc5-a330077f7f81" + "c976ab63-2dde-4e8e-a727-7334645b4af2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133424Z:11baea55-7447-4f9c-8cc5-a330077f7f81" + "FRANCESOUTH:20201108T122320Z:c976ab63-2dde-4e8e-a727-7334645b4af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1251,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:34:24 GMT" + "Sun, 08 Nov 2020 12:23:19 GMT" ], "Content-Length": [ - "630" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,20 +1263,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\",\r\n \"name\": \"ps5849/ps1370/ps1332\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A34%3A22.7082269Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1332\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\",\r\n \"name\": \"ps6725/ps3709/ps4222\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A23%3A19.499375Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4222\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1290,7 +1287,7 @@ "no-cache" ], "x-ms-request-id": [ - "8da95a37-b62c-4f45-b517-cd1b46b343cc" + "ebc2f9a4-19b9-42fa-a196-15f4fefacdf3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1308,10 +1305,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "155b436b-e73e-4853-ad77-a8e46d54f8e8" + "7d02f838-133a-458a-89a1-7d03037ddeea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133454Z:155b436b-e73e-4853-ad77-a8e46d54f8e8" + "FRANCESOUTH:20201108T122350Z:7d02f838-133a-458a-89a1-7d03037ddeea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1320,10 +1317,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:34:54 GMT" + "Sun, 08 Nov 2020 12:23:50 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,20 +1329,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1356,7 +1353,7 @@ "no-cache" ], "x-ms-request-id": [ - "9cd523e3-ec97-4d6c-9807-3626360737da" + "4a0bf6da-2adb-44a2-82d9-91c5151b59c9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1374,10 +1371,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "3cb3df3d-9f4b-41fd-8491-c388687a4cc6" + "fba64421-6d51-431f-a1b1-9d0a4d011d57" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133524Z:3cb3df3d-9f4b-41fd-8491-c388687a4cc6" + "FRANCESOUTH:20201108T122421Z:fba64421-6d51-431f-a1b1-9d0a4d011d57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,10 +1383,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:35:23 GMT" + "Sun, 08 Nov 2020 12:24:20 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,20 +1395,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1422,7 +1419,7 @@ "no-cache" ], "x-ms-request-id": [ - "a05a16ad-2098-47a2-baf5-c4a3bb56dd43" + "0b7b732e-8cf4-43b4-b8a8-5b07b6dcbb35" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1440,10 +1437,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "c4d3b391-4e5c-4d70-9c22-83c6395aac83" + "251fc086-5c34-4dd4-809f-5c67f609d8e2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133554Z:c4d3b391-4e5c-4d70-9c22-83c6395aac83" + "FRANCESOUTH:20201108T122451Z:251fc086-5c34-4dd4-809f-5c67f609d8e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,10 +1449,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:35:54 GMT" + "Sun, 08 Nov 2020 12:24:51 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1464,20 +1461,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1488,7 +1485,7 @@ "no-cache" ], "x-ms-request-id": [ - "dca97b77-0052-4405-8f3f-cc7d5eed8e06" + "d74b97a4-5f6c-49f1-b97d-5c082c5b27c2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1506,10 +1503,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "66880605-f14c-4c82-bce5-a9708a668928" + "f83fc425-9ae1-4645-b636-b36cc2927441" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133625Z:66880605-f14c-4c82-bce5-a9708a668928" + "FRANCESOUTH:20201108T122521Z:f83fc425-9ae1-4645-b636-b36cc2927441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,10 +1515,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:36:24 GMT" + "Sun, 08 Nov 2020 12:25:20 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,20 +1527,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1554,7 +1551,7 @@ "no-cache" ], "x-ms-request-id": [ - "4f840c2d-71e9-49ab-9c99-e8af680b167c" + "66bea513-9de8-4c70-9f48-5b0b7ef2b7fc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1572,10 +1569,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "bed2488a-b178-4650-8881-066b4031273d" + "99d0a2ef-801d-4887-aff0-80093eae30b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133655Z:bed2488a-b178-4650-8881-066b4031273d" + "FRANCESOUTH:20201108T122551Z:99d0a2ef-801d-4887-aff0-80093eae30b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,10 +1581,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:36:55 GMT" + "Sun, 08 Nov 2020 12:25:51 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,20 +1593,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1620,7 +1617,7 @@ "no-cache" ], "x-ms-request-id": [ - "6139d956-14e3-416c-8061-6da3c0b7787d" + "038a929f-3df3-461c-8e25-01e8f6a697fc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1638,10 +1635,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "e0e824a9-f4e5-4f1a-a3fe-c4e29d307c2b" + "a17c4638-59d9-430e-95e7-0b2ab105acfb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133725Z:e0e824a9-f4e5-4f1a-a3fe-c4e29d307c2b" + "FRANCESOUTH:20201108T122622Z:a17c4638-59d9-430e-95e7-0b2ab105acfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,10 +1647,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:37:24 GMT" + "Sun, 08 Nov 2020 12:26:21 GMT" ], "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,20 +1659,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzZjNTg1MGEtNjIzNC00M2RjLWFjNDctNTY4ODk2ZGYwMGU2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWE0YThjZmUtZmYwNy00ZTcyLTljNzYtOThmYjg1MDVmYzRhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1686,7 +1683,7 @@ "no-cache" ], "x-ms-request-id": [ - "19b2e5ee-2261-4be4-a511-843d1405771a" + "ec34ccb7-1974-458e-a106-e76c6c2dbd8a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1694,20 +1691,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], "x-ms-correlation-request-id": [ - "114b2d6e-f8b2-48ea-98b2-53ffbbefe721" + "b01b9cab-74ef-4085-81e4-157103d82515" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133755Z:114b2d6e-f8b2-48ea-98b2-53ffbbefe721" + "FRANCESOUTH:20201108T122652Z:b01b9cab-74ef-4085-81e4-157103d82515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1713,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:37:54 GMT" + "Sun, 08 Nov 2020 12:26:52 GMT" ], "Content-Length": [ - "531" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,20 +1725,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"name\": \"76c5850a-6234-43dc-ac47-568896df00e6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:34:22.5982058Z\",\r\n \"endTime\": \"2020-09-05T13:37:35.1629384Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"name\": \"1a4a8cfe-ff07-4e72-9c76-98fb8505fc4a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:23:19.4076Z\",\r\n \"endTime\": \"2020-11-08T12:26:45.0426643Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1752,10 +1749,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A37%3A35.1559644Z'\"" + "W/\"datetime'2020-11-08T12%3A26%3A45.0365644Z'\"" ], "x-ms-request-id": [ - "7d5d1491-f827-4846-b7dd-f8666e61717b" + "41b5c27a-9f74-4db0-be20-d0bf9a6d2c1a" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1773,10 +1770,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "43c1f6ca-0ab1-437a-961b-65deb2505a27" + "e6444adb-9f89-47a4-aec9-d706a396af80" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133756Z:43c1f6ca-0ab1-437a-961b-65deb2505a27" + "FRANCESOUTH:20201108T122652Z:e6444adb-9f89-47a4-aec9-d706a396af80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1785,10 +1782,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:37:55 GMT" + "Sun, 08 Nov 2020 12:26:52 GMT" ], "Content-Length": [ - "1281" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,26 +1794,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332\",\r\n \"name\": \"ps5849/ps1370/ps1332\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A37%3A35.1559644Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"f8a743d1-1727-394e-5791-e703b686f7a4\",\r\n \"fileSystemId\": \"f8a743d1-1727-394e-5791-e703b686f7a4\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"f8a743d1-1727-394e-5791-e703b686f7a4\",\r\n \"name\": \"ps1332\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1332\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_dab4629f\",\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222\",\r\n \"name\": \"ps6725/ps3709/ps4222\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A26%3A45.0365644Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"830dd767-1014-083d-7bbc-34bbf24ca69c\",\r\n \"fileSystemId\": \"830dd767-1014-083d-7bbc-34bbf24ca69c\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"830dd767-1014-083d-7bbc-34bbf24ca69c\",\r\n \"name\": \"ps4222\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps4222\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_d01d4b68\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.Network/virtualNetworks/ps3354-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzOTI2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzMTM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7dbe86fa-2c29-4ff9-99a1-3457fc36be8b" + "eb2228e2-e9b9-457e-9d2b-57f15eb1097b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,13 +1830,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd586a3a-c0ee-4eab-9586-2cc62d6601b0?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2b843d8c-0263-4d35-acf7-0ed43c69ac0b?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "a89cb42a-dbea-47fc-82b4-03aae9c8e4c0" + "5d492d4e-ef64-4f42-96e9-a659832bb6fb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd586a3a-c0ee-4eab-9586-2cc62d6601b0?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2b843d8c-0263-4d35-acf7-0ed43c69ac0b?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1857,10 +1854,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "e2865e48-9700-4437-b454-bc7f98322c82" + "b79a11d9-097f-4b3f-9856-58bf221ed462" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133757Z:e2865e48-9700-4437-b454-bc7f98322c82" + "FRANCESOUTH:20201108T122652Z:b79a11d9-097f-4b3f-9856-58bf221ed462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1869,10 +1866,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:37:56 GMT" + "Sun, 08 Nov 2020 12:26:52 GMT" ], "Content-Length": [ - "383" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1881,20 +1878,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps9262\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps138\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd586a3a-c0ee-4eab-9586-2cc62d6601b0?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmQ1ODZhM2EtYzBlZS00ZWFiLTk1ODYtMmNjNjJkNjYwMWIwP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2b843d8c-0263-4d35-acf7-0ed43c69ac0b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMmI4NDNkOGMtMDI2My00ZDM1LWFjZjctMGVkNDNjNjlhYzBiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1905,7 +1902,7 @@ "no-cache" ], "x-ms-request-id": [ - "1df75506-76d3-4097-9b08-0efc3d4e54bc" + "44e74448-7909-4da3-88bb-5e851a9f2779" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1923,10 +1920,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "1e753520-d17c-467e-9c7d-a4d9ae7646ff" + "375c5fa8-e233-4a5e-a0d4-f170d1b4d101" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133827Z:1e753520-d17c-467e-9c7d-a4d9ae7646ff" + "FRANCESOUTH:20201108T122723Z:375c5fa8-e233-4a5e-a0d4-f170d1b4d101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,10 +1932,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:27 GMT" + "Sun, 08 Nov 2020 12:27:22 GMT" ], "Content-Length": [ - "548" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1947,20 +1944,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd586a3a-c0ee-4eab-9586-2cc62d6601b0\",\r\n \"name\": \"fd586a3a-c0ee-4eab-9586-2cc62d6601b0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:37:56.7214892Z\",\r\n \"endTime\": \"2020-09-05T13:37:59.8938888Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2b843d8c-0263-4d35-acf7-0ed43c69ac0b\",\r\n \"name\": \"2b843d8c-0263-4d35-acf7-0ed43c69ac0b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:26:52.7885185Z\",\r\n \"endTime\": \"2020-11-08T12:26:59.2569557Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzOTI2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzMTM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1971,7 +1968,7 @@ "no-cache" ], "x-ms-request-id": [ - "cb4ca0ee-ab3c-4879-9e9a-d5fffcd80e5c" + "cdffc932-4104-4c62-b899-ab97111e17f1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1989,10 +1986,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "2a9fa373-c9b0-4045-833a-9945b6aafc9b" + "fe9e362c-2f9a-4b6e-b7c6-95b69f47fac3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133828Z:2a9fa373-c9b0-4045-833a-9945b6aafc9b" + "FRANCESOUTH:20201108T122723Z:fe9e362c-2f9a-4b6e-b7c6-95b69f47fac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,10 +1998,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:28 GMT" + "Sun, 08 Nov 2020 12:27:22 GMT" ], "Content-Length": [ - "469" + "466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,26 +2010,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"82f4a0c2-94d8-55ba-4f2e-37c83a150a2f\",\r\n \"name\": \"ps9262\",\r\n \"created\": \"2020-09-05T13:37:57Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f0e0d6f9-8b71-2fdc-1a7c-ea73f6d888f9\",\r\n \"name\": \"ps138\",\r\n \"created\": \"2020-11-08T12:26:53Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzOTI2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzMTM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9918d5d8-c62a-4db9-8f8a-e0ad39a54422" + "8043d12f-f4aa-4004-95f4-4d5d92cc37db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2043,7 +2040,7 @@ "no-cache" ], "x-ms-request-id": [ - "45a1ea36-8708-4eb7-b1ee-4913f3fd465b" + "04ff2e59-fba5-45d1-8f30-bb0b318d3480" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2061,10 +2058,10 @@ "11982" ], "x-ms-correlation-request-id": [ - "d6ef343a-1523-4c89-8a46-af389748376b" + "8ae90a36-bcfd-446c-846e-19e9f6cf5b9d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133900Z:d6ef343a-1523-4c89-8a46-af389748376b" + "FRANCESOUTH:20201108T122755Z:8ae90a36-bcfd-446c-846e-19e9f6cf5b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2073,10 +2070,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:00 GMT" + "Sun, 08 Nov 2020 12:27:55 GMT" ], "Content-Length": [ - "469" + "466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,26 +2082,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"82f4a0c2-94d8-55ba-4f2e-37c83a150a2f\",\r\n \"name\": \"ps9262\",\r\n \"created\": \"2020-09-05T13:37:57Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f0e0d6f9-8b71-2fdc-1a7c-ea73f6d888f9\",\r\n \"name\": \"ps138\",\r\n \"created\": \"2020-11-08T12:26:53Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzOTI2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzMTM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cc12c8e-4e5f-43e4-b192-fd3a19f3dc8c" + "0efb38ca-1303-495f-bbec-67ee4f6336f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2115,7 +2112,7 @@ "no-cache" ], "x-ms-request-id": [ - "c1a66036-3e44-4b2b-bbf2-f878a69e36f7" + "aa5d6f21-4e6d-41c4-9f6f-e98ba00f1c14" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2133,10 +2130,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "509cc2c2-eb21-46cc-8130-0277afac9935" + "1d936654-6d42-451a-9566-180288298ed2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133900Z:509cc2c2-eb21-46cc-8130-0277afac9935" + "FRANCESOUTH:20201108T122755Z:1d936654-6d42-451a-9566-180288298ed2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,10 +2142,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:00 GMT" + "Sun, 08 Nov 2020 12:27:55 GMT" ], "Content-Length": [ - "469" + "466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2157,26 +2154,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"82f4a0c2-94d8-55ba-4f2e-37c83a150a2f\",\r\n \"name\": \"ps9262\",\r\n \"created\": \"2020-09-05T13:37:57Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f0e0d6f9-8b71-2fdc-1a7c-ea73f6d888f9\",\r\n \"name\": \"ps138\",\r\n \"created\": \"2020-11-08T12:26:53Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzNDk0Nj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7c837f75-c80f-4f9e-8fa5-3d54c2dd5f28" + "5bd0f241-1295-4678-92b3-ad9651d204e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2193,13 +2190,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e85c7387-2ce9-495c-880e-1379fc0305ae?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ac62625-6934-4e9f-a6a8-121d6380e4d8?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "eaf654be-21cf-4ba1-a6a9-60d5f37e9ce9" + "74dbc354-9cc5-42c2-bc63-bb6b95480f75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e85c7387-2ce9-495c-880e-1379fc0305ae?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ac62625-6934-4e9f-a6a8-121d6380e4d8?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2217,10 +2214,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "3e89c01c-4c90-481a-ab43-6b9859e82756" + "97b1adcd-7cf1-4814-855e-90b243ed4d8e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133829Z:3e89c01c-4c90-481a-ab43-6b9859e82756" + "FRANCESOUTH:20201108T122724Z:97b1adcd-7cf1-4814-855e-90b243ed4d8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,7 +2226,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:29 GMT" + "Sun, 08 Nov 2020 12:27:23 GMT" ], "Content-Length": [ "383" @@ -2241,20 +2238,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps4946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps4946\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps9245\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps9245\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e85c7387-2ce9-495c-880e-1379fc0305ae?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTg1YzczODctMmNlOS00OTVjLTg4MGUtMTM3OWZjMDMwNWFlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ac62625-6934-4e9f-a6a8-121d6380e4d8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNWFjNjI2MjUtNjkzNC00ZTlmLWE2YTgtMTIxZDYzODBlNGQ4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2265,7 +2262,7 @@ "no-cache" ], "x-ms-request-id": [ - "1d7ffe5d-520e-458f-affd-11642fe99cf5" + "ef209425-5b12-47a7-a670-4f8176c9b9e9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2283,10 +2280,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "67bee1b8-7d60-4f1a-8094-01feec04f307" + "82b9ae8e-4263-4dca-89ff-df2d994cd54e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133859Z:67bee1b8-7d60-4f1a-8094-01feec04f307" + "FRANCESOUTH:20201108T122754Z:82b9ae8e-4263-4dca-89ff-df2d994cd54e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,7 +2292,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:59 GMT" + "Sun, 08 Nov 2020 12:27:54 GMT" ], "Content-Length": [ "548" @@ -2307,20 +2304,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e85c7387-2ce9-495c-880e-1379fc0305ae\",\r\n \"name\": \"e85c7387-2ce9-495c-880e-1379fc0305ae\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:38:29.1437071Z\",\r\n \"endTime\": \"2020-09-05T13:38:34.4457476Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ac62625-6934-4e9f-a6a8-121d6380e4d8\",\r\n \"name\": \"5ac62625-6934-4e9f-a6a8-121d6380e4d8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:27:23.9281457Z\",\r\n \"endTime\": \"2020-11-08T12:27:30.9508554Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzNDk0Nj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2331,7 +2328,7 @@ "no-cache" ], "x-ms-request-id": [ - "5147697e-927f-42b5-baf8-a7b42bdfb0f9" + "baad5642-a740-4ee7-a3d0-5752268a32b6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2349,10 +2346,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "91a9bc09-bdd6-44b1-b59c-fae6d5c3f9ad" + "d1ffa3fb-1fa4-478d-92f9-0d2621333988" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133859Z:91a9bc09-bdd6-44b1-b59c-fae6d5c3f9ad" + "FRANCESOUTH:20201108T122754Z:d1ffa3fb-1fa4-478d-92f9-0d2621333988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,7 +2358,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:59 GMT" + "Sun, 08 Nov 2020 12:27:54 GMT" ], "Content-Length": [ "469" @@ -2373,26 +2370,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps4946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"c7c0330a-375d-f6ba-db34-38c7f0dc848f\",\r\n \"name\": \"ps4946\",\r\n \"created\": \"2020-09-05T13:38:32Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps9245\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"3d34ff2a-a02e-ba3e-9e74-88db3930a371\",\r\n \"name\": \"ps9245\",\r\n \"created\": \"2020-11-08T12:27:24Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8db5fdb5-1fc6-45ca-8a24-5d244213eaf8" + "3cac91d3-da87-4a5d-9b37-12f99af8770a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2403,7 +2400,7 @@ "no-cache" ], "x-ms-request-id": [ - "eed43ee9-7577-46b8-b85e-19a7a2b9237f" + "ea3bf3b6-cfca-43a0-852b-5e2b9971b444" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2421,10 +2418,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "aeccb072-d5a0-466f-bebf-d0c7d0e6cc66" + "53eb9883-c05e-4ff0-a3d7-3f30d38e8cd1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133900Z:aeccb072-d5a0-466f-bebf-d0c7d0e6cc66" + "FRANCESOUTH:20201108T122755Z:53eb9883-c05e-4ff0-a3d7-3f30d38e8cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2433,10 +2430,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:38:59 GMT" + "Sun, 08 Nov 2020 12:27:54 GMT" ], "Content-Length": [ - "1059" + "1056" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2445,26 +2442,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"82f4a0c2-94d8-55ba-4f2e-37c83a150a2f\",\r\n \"fileSystemId\": \"f8a743d1-1727-394e-5791-e703b686f7a4\",\r\n \"name\": \"ps9262\",\r\n \"created\": \"2020-09-05T13:37:57Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps4946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"c7c0330a-375d-f6ba-db34-38c7f0dc848f\",\r\n \"fileSystemId\": \"f8a743d1-1727-394e-5791-e703b686f7a4\",\r\n \"name\": \"ps4946\",\r\n \"created\": \"2020-09-05T13:38:32Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"f0e0d6f9-8b71-2fdc-1a7c-ea73f6d888f9\",\r\n \"fileSystemId\": \"830dd767-1014-083d-7bbc-34bbf24ca69c\",\r\n \"name\": \"ps138\",\r\n \"created\": \"2020-11-08T12:26:53Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps9245\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"3d34ff2a-a02e-ba3e-9e74-88db3930a371\",\r\n \"fileSystemId\": \"830dd767-1014-083d-7bbc-34bbf24ca69c\",\r\n \"name\": \"ps9245\",\r\n \"created\": \"2020-11-08T12:27:24Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e2ceb20-69b8-484b-908e-6198dd9907ca" + "4ebae5e0-a666-4153-a823-ccedc63532b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2475,7 +2472,7 @@ "no-cache" ], "x-ms-request-id": [ - "5983b9c9-b4a8-47d8-b84b-181ae2356287" + "441579c4-9eae-48b9-bc55-a0e785463485" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2493,10 +2490,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "1f48b392-c171-4232-a2b6-2f185e58d893" + "9c3cf705-2ab0-4d75-acdc-588a66c69eec" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134003Z:1f48b392-c171-4232-a2b6-2f185e58d893" + "FRANCESOUTH:20201108T122858Z:9c3cf705-2ab0-4d75-acdc-588a66c69eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,7 +2502,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:40:02 GMT" + "Sun, 08 Nov 2020 12:28:58 GMT" ], "Content-Length": [ "12" @@ -2521,22 +2518,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzOTI2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzMTM4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20b97012-1e72-4168-8f65-42871f16aa22" + "31dad434-47cd-4165-9c72-940c48737979" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2547,13 +2544,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/afbffbea-7847-4118-81d3-8132e3a4e4be?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/984c87ad-8f07-4472-ab6a-d1fba52cd360?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "55b582b3-60e1-4a0c-af83-ba6f8528fbc4" + "d874bbd5-2924-4cea-a717-1d6f31cbaa90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/afbffbea-7847-4118-81d3-8132e3a4e4be?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/984c87ad-8f07-4472-ab6a-d1fba52cd360?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2571,10 +2568,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "8e4c9a1a-3f21-416d-813c-89eeff5c5f56" + "6d502ab4-af13-446d-9edb-4172f036a1dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133901Z:8e4c9a1a-3f21-416d-813c-89eeff5c5f56" + "FRANCESOUTH:20201108T122756Z:6d502ab4-af13-446d-9edb-4172f036a1dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2583,7 +2580,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:00 GMT" + "Sun, 08 Nov 2020 12:27:56 GMT" ], "Expires": [ "-1" @@ -2596,16 +2593,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/afbffbea-7847-4118-81d3-8132e3a4e4be?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYWZiZmZiZWEtNzg0Ny00MTE4LTgxZDMtODEzMmUzYTRlNGJlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/984c87ad-8f07-4472-ab6a-d1fba52cd360?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTg0Yzg3YWQtOGYwNy00NDcyLWFiNmEtZDFmYmE1MmNkMzYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2616,7 +2613,7 @@ "no-cache" ], "x-ms-request-id": [ - "3befe1ab-6770-4f96-9f99-db2d42d99592" + "60efebad-0821-4e22-a09b-3d8744a03499" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2624,20 +2621,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], "x-ms-correlation-request-id": [ - "60fdc8ed-d02f-4700-932a-93129f9b9025" + "41dc2f78-6343-4c91-92a8-d9d569166fb1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133931Z:60fdc8ed-d02f-4700-932a-93129f9b9025" + "FRANCESOUTH:20201108T122826Z:41dc2f78-6343-4c91-92a8-d9d569166fb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2646,10 +2643,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:30 GMT" + "Sun, 08 Nov 2020 12:28:25 GMT" ], "Content-Length": [ - "548" + "547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2658,20 +2655,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/afbffbea-7847-4118-81d3-8132e3a4e4be\",\r\n \"name\": \"afbffbea-7847-4118-81d3-8132e3a4e4be\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:39:01.1242332Z\",\r\n \"endTime\": \"2020-09-05T13:39:03.3274516Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/984c87ad-8f07-4472-ab6a-d1fba52cd360\",\r\n \"name\": \"984c87ad-8f07-4472-ab6a-d1fba52cd360\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:27:56.0362563Z\",\r\n \"endTime\": \"2020-11-08T12:28:04.0340126Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/afbffbea-7847-4118-81d3-8132e3a4e4be?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYWZiZmZiZWEtNzg0Ny00MTE4LTgxZDMtODEzMmUzYTRlNGJlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/984c87ad-8f07-4472-ab6a-d1fba52cd360?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTg0Yzg3YWQtOGYwNy00NDcyLWFiNmEtZDFmYmE1MmNkMzYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2682,7 +2679,7 @@ "no-cache" ], "x-ms-request-id": [ - "697624bd-c4c2-42a0-b3df-515a3b85a2bc" + "20f2a351-7402-4795-b0fe-3d471948b58d" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2700,10 +2697,10 @@ "11979" ], "x-ms-correlation-request-id": [ - "d3c02ee8-2e4a-4e12-bee5-42d94784ff78" + "861b02ba-d3cb-48b3-82d5-b4f9e176d760" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133931Z:d3c02ee8-2e4a-4e12-bee5-42d94784ff78" + "FRANCESOUTH:20201108T122827Z:861b02ba-d3cb-48b3-82d5-b4f9e176d760" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,10 +2709,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:30 GMT" + "Sun, 08 Nov 2020 12:28:26 GMT" ], "Content-Length": [ - "321" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2724,26 +2721,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps9262\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps9262\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps138\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps138\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODI1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczU4NDkvY2FwYWNpdHlQb29scy9wczEzNzAvdm9sdW1lcy9wczEzMzIvc25hcHNob3RzL3BzNDk0Nj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzM1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczY3MjUvY2FwYWNpdHlQb29scy9wczM3MDkvdm9sdW1lcy9wczQyMjIvc25hcHNob3RzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01f5337a-fbfe-4016-be45-80730c96e385" + "d7ad5124-e95b-4a57-8978-ab89ac7f7801" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2754,13 +2751,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77bbf692-d492-4b6c-a120-22e3119c1822?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b106a69-ef7a-4a11-8737-3054352c7c4f?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "a386c62d-a794-400f-bd25-5549fce97ad9" + "b2a058e5-d706-4f45-999a-a7be751bfd30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77bbf692-d492-4b6c-a120-22e3119c1822?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b106a69-ef7a-4a11-8737-3054352c7c4f?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2778,10 +2775,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "653bd65b-9a71-43af-aedc-c7cf859030ff" + "6d29bb44-b22f-42cc-a12d-8c2b64837349" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T133932Z:653bd65b-9a71-43af-aedc-c7cf859030ff" + "FRANCESOUTH:20201108T122827Z:6d29bb44-b22f-42cc-a12d-8c2b64837349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,7 +2787,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:39:31 GMT" + "Sun, 08 Nov 2020 12:28:26 GMT" ], "Expires": [ "-1" @@ -2803,16 +2800,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77bbf692-d492-4b6c-a120-22e3119c1822?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzdiYmY2OTItZDQ5Mi00YjZjLWExMjAtMjJlMzExOWMxODIyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b106a69-ef7a-4a11-8737-3054352c7c4f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM2IxMDZhNjktZWY3YS00YTExLTg3MzctMzA1NDM1MmM3YzRmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2823,7 +2820,7 @@ "no-cache" ], "x-ms-request-id": [ - "1063a380-da16-442a-9760-1470d9208377" + "f3ef3b5f-648a-4b11-9329-be717f0beac0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2841,10 +2838,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "a53cb93c-cffb-4f14-ada1-7ef3cf3693ac" + "72c9da6d-2e2c-46b4-841e-d437a83a8697" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134002Z:a53cb93c-cffb-4f14-ada1-7ef3cf3693ac" + "FRANCESOUTH:20201108T122857Z:72c9da6d-2e2c-46b4-841e-d437a83a8697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2853,7 +2850,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:40:02 GMT" + "Sun, 08 Nov 2020 12:28:57 GMT" ], "Content-Length": [ "548" @@ -2865,20 +2862,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77bbf692-d492-4b6c-a120-22e3119c1822\",\r\n \"name\": \"77bbf692-d492-4b6c-a120-22e3119c1822\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:39:31.8536689Z\",\r\n \"endTime\": \"2020-09-05T13:39:34.2443822Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b106a69-ef7a-4a11-8737-3054352c7c4f\",\r\n \"name\": \"3b106a69-ef7a-4a11-8737-3054352c7c4f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:28:27.4394576Z\",\r\n \"endTime\": \"2020-11-08T12:28:34.5742515Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77bbf692-d492-4b6c-a120-22e3119c1822?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzdiYmY2OTItZDQ5Mi00YjZjLWExMjAtMjJlMzExOWMxODIyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b106a69-ef7a-4a11-8737-3054352c7c4f?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvM2IxMDZhNjktZWY3YS00YTExLTg3MzctMzA1NDM1MmM3YzRmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2889,7 +2886,7 @@ "no-cache" ], "x-ms-request-id": [ - "e3a299c7-e02e-4ac3-a19c-42f2dd32b8d7" + "882fb1d7-ff3c-4040-827a-ebf942999009" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2907,10 +2904,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "dd9ebd60-f8d6-45dd-b690-3ac3eefe8402" + "e99e6429-0000-4c39-a3be-97aaaeb9195a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134002Z:dd9ebd60-f8d6-45dd-b690-3ac3eefe8402" + "FRANCESOUTH:20201108T122857Z:e99e6429-0000-4c39-a3be-97aaaeb9195a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,7 +2916,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:40:02 GMT" + "Sun, 08 Nov 2020 12:28:57 GMT" ], "Content-Length": [ "321" @@ -2931,26 +2928,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.NetApp/netAppAccounts/ps5849/capacityPools/ps1370/volumes/ps1332/snapshots/ps4946\",\r\n \"name\": \"ps5849/ps1370/ps1332/ps4946\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3354/providers/Microsoft.NetApp/netAppAccounts/ps6725/capacityPools/ps3709/volumes/ps4222/snapshots/ps9245\",\r\n \"name\": \"ps6725/ps3709/ps4222/ps9245\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps8257?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzODI1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3354?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzM1ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee88da0-b4ad-4803-82c7-92864f664300" + "733d3b19-49f2-4e3b-b9d1-0e915a5df302" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2961,136 +2958,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "6e2dd100-e6a2-4646-85f8-d2e8807d5d82" - ], - "x-ms-correlation-request-id": [ - "6e2dd100-e6a2-4646-85f8-d2e8807d5d82" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134005Z:6e2dd100-e6a2-4646-85f8-d2e8807d5d82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 13:40:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "85ecc7b0-923a-4a04-a67b-27f66c14808c" - ], - "x-ms-correlation-request-id": [ - "85ecc7b0-923a-4a04-a67b-27f66c14808c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134021Z:85ecc7b0-923a-4a04-a67b-27f66c14808c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 13:40:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "14999" ], "x-ms-request-id": [ - "ce0999ea-16d0-4a5a-ac9c-ed3ebd31d202" + "cb2b820f-1cc4-4adc-b80f-c40251c9443f" ], "x-ms-correlation-request-id": [ - "ce0999ea-16d0-4a5a-ac9c-ed3ebd31d202" + "cb2b820f-1cc4-4adc-b80f-c40251c9443f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134036Z:ce0999ea-16d0-4a5a-ac9c-ed3ebd31d202" + "FRANCESOUTH:20201108T122903Z:cb2b820f-1cc4-4adc-b80f-c40251c9443f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3099,7 +2982,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:40:36 GMT" + "Sun, 08 Nov 2020 12:29:02 GMT" ], "Expires": [ "-1" @@ -3112,16 +2995,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3132,22 +3015,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "17da8d42-835e-4d93-bb06-d23d89d7f54b" + "347d7859-11c4-4556-a718-b00b3d38788c" ], "x-ms-correlation-request-id": [ - "17da8d42-835e-4d93-bb06-d23d89d7f54b" + "347d7859-11c4-4556-a718-b00b3d38788c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134051Z:17da8d42-835e-4d93-bb06-d23d89d7f54b" + "FRANCESOUTH:20201108T122919Z:347d7859-11c4-4556-a718-b00b3d38788c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3156,7 +3039,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:40:51 GMT" + "Sun, 08 Nov 2020 12:29:18 GMT" ], "Expires": [ "-1" @@ -3169,16 +3052,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3189,22 +3072,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "9ca8acb2-81f2-41cf-b2a7-af53a7419139" + "3cba9e2b-4c7a-4695-8fce-81684f796689" ], "x-ms-correlation-request-id": [ - "9ca8acb2-81f2-41cf-b2a7-af53a7419139" + "3cba9e2b-4c7a-4695-8fce-81684f796689" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134107Z:9ca8acb2-81f2-41cf-b2a7-af53a7419139" + "FRANCESOUTH:20201108T122934Z:3cba9e2b-4c7a-4695-8fce-81684f796689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3213,7 +3096,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:41:06 GMT" + "Sun, 08 Nov 2020 12:29:33 GMT" ], "Expires": [ "-1" @@ -3226,16 +3109,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3246,22 +3129,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-request-id": [ - "546dbc87-6665-4dc7-8f37-081d9db3f6e7" + "a481fdaf-7f0d-428a-a467-590926958801" ], "x-ms-correlation-request-id": [ - "546dbc87-6665-4dc7-8f37-081d9db3f6e7" + "a481fdaf-7f0d-428a-a467-590926958801" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134122Z:546dbc87-6665-4dc7-8f37-081d9db3f6e7" + "FRANCESOUTH:20201108T122949Z:a481fdaf-7f0d-428a-a467-590926958801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3270,7 +3153,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:41:22 GMT" + "Sun, 08 Nov 2020 12:29:49 GMT" ], "Expires": [ "-1" @@ -3283,16 +3166,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3303,22 +3186,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11996" ], "x-ms-request-id": [ - "31091564-29dd-4de9-a754-9ed1b4e1eb5b" + "6bb2e11c-2b5a-406e-9cc7-1cc2d7ff39ad" ], "x-ms-correlation-request-id": [ - "31091564-29dd-4de9-a754-9ed1b4e1eb5b" + "6bb2e11c-2b5a-406e-9cc7-1cc2d7ff39ad" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134137Z:31091564-29dd-4de9-a754-9ed1b4e1eb5b" + "FRANCESOUTH:20201108T123005Z:6bb2e11c-2b5a-406e-9cc7-1cc2d7ff39ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3327,7 +3210,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:41:37 GMT" + "Sun, 08 Nov 2020 12:30:04 GMT" ], "Expires": [ "-1" @@ -3340,16 +3223,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3360,22 +3243,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11995" ], "x-ms-request-id": [ - "19bff7cd-0a7a-4f76-a61f-bcb411b99671" + "67d97487-40ac-4914-9c2c-e7169fb0d432" ], "x-ms-correlation-request-id": [ - "19bff7cd-0a7a-4f76-a61f-bcb411b99671" + "67d97487-40ac-4914-9c2c-e7169fb0d432" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134153Z:19bff7cd-0a7a-4f76-a61f-bcb411b99671" + "FRANCESOUTH:20201108T123020Z:67d97487-40ac-4914-9c2c-e7169fb0d432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3384,7 +3267,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:41:52 GMT" + "Sun, 08 Nov 2020 12:30:19 GMT" ], "Expires": [ "-1" @@ -3397,16 +3280,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3417,22 +3300,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11994" ], "x-ms-request-id": [ - "e13490c5-892f-4351-b9da-66a64fd424de" + "fb772303-93f4-4535-a9e2-b293ba6a0b9c" ], "x-ms-correlation-request-id": [ - "e13490c5-892f-4351-b9da-66a64fd424de" + "fb772303-93f4-4535-a9e2-b293ba6a0b9c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134208Z:e13490c5-892f-4351-b9da-66a64fd424de" + "FRANCESOUTH:20201108T123035Z:fb772303-93f4-4535-a9e2-b293ba6a0b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3441,7 +3324,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:42:07 GMT" + "Sun, 08 Nov 2020 12:30:34 GMT" ], "Expires": [ "-1" @@ -3454,16 +3337,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3474,22 +3357,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11993" ], "x-ms-request-id": [ - "6394f1c9-398c-45ea-9b41-e900537112b2" + "f11b2e19-c7cd-474d-bd4c-89a1f31b456c" ], "x-ms-correlation-request-id": [ - "6394f1c9-398c-45ea-9b41-e900537112b2" + "f11b2e19-c7cd-474d-bd4c-89a1f31b456c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134223Z:6394f1c9-398c-45ea-9b41-e900537112b2" + "FRANCESOUTH:20201108T123051Z:f11b2e19-c7cd-474d-bd4c-89a1f31b456c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3498,7 +3381,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:42:22 GMT" + "Sun, 08 Nov 2020 12:30:50 GMT" ], "Expires": [ "-1" @@ -3511,16 +3394,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3531,22 +3414,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11992" ], "x-ms-request-id": [ - "8204930a-0f4d-41b6-b028-5b3a8e5d37af" + "0ae6dcc9-bc5b-4c67-86ab-432b3d31e863" ], "x-ms-correlation-request-id": [ - "8204930a-0f4d-41b6-b028-5b3a8e5d37af" + "0ae6dcc9-bc5b-4c67-86ab-432b3d31e863" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134239Z:8204930a-0f4d-41b6-b028-5b3a8e5d37af" + "FRANCESOUTH:20201108T123106Z:0ae6dcc9-bc5b-4c67-86ab-432b3d31e863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3555,7 +3438,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:42:38 GMT" + "Sun, 08 Nov 2020 12:31:05 GMT" ], "Expires": [ "-1" @@ -3568,16 +3451,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3588,22 +3471,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11991" ], "x-ms-request-id": [ - "20d588a5-1d0d-43a9-a486-ccfa1d3f87f5" + "209a10b8-eec9-46ff-99c7-4851dd77521d" ], "x-ms-correlation-request-id": [ - "20d588a5-1d0d-43a9-a486-ccfa1d3f87f5" + "209a10b8-eec9-46ff-99c7-4851dd77521d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134254Z:20d588a5-1d0d-43a9-a486-ccfa1d3f87f5" + "FRANCESOUTH:20201108T123121Z:209a10b8-eec9-46ff-99c7-4851dd77521d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3612,7 +3495,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:42:54 GMT" + "Sun, 08 Nov 2020 12:31:21 GMT" ], "Expires": [ "-1" @@ -3625,16 +3508,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3645,22 +3528,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11990" ], "x-ms-request-id": [ - "ba46b884-519f-42e4-806d-57e2ea92d104" + "97611c59-5853-4757-8695-c7fb91753b83" ], "x-ms-correlation-request-id": [ - "ba46b884-519f-42e4-806d-57e2ea92d104" + "97611c59-5853-4757-8695-c7fb91753b83" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134309Z:ba46b884-519f-42e4-806d-57e2ea92d104" + "FRANCESOUTH:20201108T123137Z:97611c59-5853-4757-8695-c7fb91753b83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3669,7 +3552,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:43:09 GMT" + "Sun, 08 Nov 2020 12:31:36 GMT" ], "Expires": [ "-1" @@ -3682,16 +3565,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3702,22 +3585,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11989" ], "x-ms-request-id": [ - "c4eee5b8-fa0f-47f7-bea8-b1eda797c643" + "6d18ebe7-6cd1-45e4-a63e-888b11c614ca" ], "x-ms-correlation-request-id": [ - "c4eee5b8-fa0f-47f7-bea8-b1eda797c643" + "6d18ebe7-6cd1-45e4-a63e-888b11c614ca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134325Z:c4eee5b8-fa0f-47f7-bea8-b1eda797c643" + "FRANCESOUTH:20201108T123152Z:6d18ebe7-6cd1-45e4-a63e-888b11c614ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3726,7 +3609,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:43:24 GMT" + "Sun, 08 Nov 2020 12:31:52 GMT" ], "Expires": [ "-1" @@ -3739,16 +3622,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3759,22 +3642,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11988" ], "x-ms-request-id": [ - "38302671-3a16-4a70-95f0-2691e0666176" + "aec5ebb1-f4cc-4394-9c27-59affaa836c6" ], "x-ms-correlation-request-id": [ - "38302671-3a16-4a70-95f0-2691e0666176" + "aec5ebb1-f4cc-4394-9c27-59affaa836c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134340Z:38302671-3a16-4a70-95f0-2691e0666176" + "FRANCESOUTH:20201108T123208Z:aec5ebb1-f4cc-4394-9c27-59affaa836c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3783,7 +3666,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:43:39 GMT" + "Sun, 08 Nov 2020 12:32:07 GMT" ], "Expires": [ "-1" @@ -3796,16 +3679,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3816,22 +3699,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11987" ], "x-ms-request-id": [ - "a458ff4b-68cb-4978-bd7e-dd441e255aa7" + "a300b0c7-63fd-4eaf-a76d-7356fd6dc66b" ], "x-ms-correlation-request-id": [ - "a458ff4b-68cb-4978-bd7e-dd441e255aa7" + "a300b0c7-63fd-4eaf-a76d-7356fd6dc66b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134355Z:a458ff4b-68cb-4978-bd7e-dd441e255aa7" + "FRANCESOUTH:20201108T123223Z:a300b0c7-63fd-4eaf-a76d-7356fd6dc66b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3840,7 +3723,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:43:54 GMT" + "Sun, 08 Nov 2020 12:32:23 GMT" ], "Expires": [ "-1" @@ -3853,16 +3736,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3873,22 +3756,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11986" ], "x-ms-request-id": [ - "9e4ba1be-8f35-4ba2-8688-21fece16caf0" + "288e8c4e-00d5-4f43-8608-3f6cd824ff2c" ], "x-ms-correlation-request-id": [ - "9e4ba1be-8f35-4ba2-8688-21fece16caf0" + "288e8c4e-00d5-4f43-8608-3f6cd824ff2c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134410Z:9e4ba1be-8f35-4ba2-8688-21fece16caf0" + "FRANCESOUTH:20201108T123238Z:288e8c4e-00d5-4f43-8608-3f6cd824ff2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3897,7 +3780,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:44:10 GMT" + "Sun, 08 Nov 2020 12:32:38 GMT" ], "Expires": [ "-1" @@ -3910,16 +3793,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3930,22 +3813,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11985" ], "x-ms-request-id": [ - "e75effb9-a415-466c-ac65-b1d2b06173c1" + "fd1cca14-24a5-4a58-8383-8412c869abea" ], "x-ms-correlation-request-id": [ - "e75effb9-a415-466c-ac65-b1d2b06173c1" + "fd1cca14-24a5-4a58-8383-8412c869abea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134426Z:e75effb9-a415-466c-ac65-b1d2b06173c1" + "FRANCESOUTH:20201108T123254Z:fd1cca14-24a5-4a58-8383-8412c869abea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3954,7 +3837,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:44:25 GMT" + "Sun, 08 Nov 2020 12:32:53 GMT" ], "Expires": [ "-1" @@ -3967,16 +3850,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3987,22 +3870,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11984" ], "x-ms-request-id": [ - "a467bebf-9083-45e6-bb77-3746c16a16ac" + "8fc69260-e58d-48e1-8469-1017bede2e84" ], "x-ms-correlation-request-id": [ - "a467bebf-9083-45e6-bb77-3746c16a16ac" + "8fc69260-e58d-48e1-8469-1017bede2e84" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134441Z:a467bebf-9083-45e6-bb77-3746c16a16ac" + "FRANCESOUTH:20201108T123309Z:8fc69260-e58d-48e1-8469-1017bede2e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4011,7 +3894,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:44:41 GMT" + "Sun, 08 Nov 2020 12:33:08 GMT" ], "Expires": [ "-1" @@ -4024,16 +3907,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4044,22 +3927,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11983" ], "x-ms-request-id": [ - "66a05e41-98d8-4017-a7d9-7302f4898406" + "06d0bcb7-7868-4bf9-88f4-b7e0d12b78e7" ], "x-ms-correlation-request-id": [ - "66a05e41-98d8-4017-a7d9-7302f4898406" + "06d0bcb7-7868-4bf9-88f4-b7e0d12b78e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134457Z:66a05e41-98d8-4017-a7d9-7302f4898406" + "FRANCESOUTH:20201108T123324Z:06d0bcb7-7868-4bf9-88f4-b7e0d12b78e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4068,7 +3951,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:44:56 GMT" + "Sun, 08 Nov 2020 12:33:24 GMT" ], "Expires": [ "-1" @@ -4081,16 +3964,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4101,22 +3984,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11982" ], "x-ms-request-id": [ - "de4da236-1035-4e28-952e-979aae3fb735" + "a7a06c96-5c77-45ba-8d22-4bb7bbb6714e" ], "x-ms-correlation-request-id": [ - "de4da236-1035-4e28-952e-979aae3fb735" + "a7a06c96-5c77-45ba-8d22-4bb7bbb6714e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134512Z:de4da236-1035-4e28-952e-979aae3fb735" + "FRANCESOUTH:20201108T123340Z:a7a06c96-5c77-45ba-8d22-4bb7bbb6714e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4125,7 +4008,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:45:12 GMT" + "Sun, 08 Nov 2020 12:33:39 GMT" ], "Expires": [ "-1" @@ -4138,16 +4021,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4158,22 +4041,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11981" ], "x-ms-request-id": [ - "39803e8f-a925-4283-8545-d5452049bcd1" + "9722b8c7-b182-430a-8152-42c320e48cf5" ], "x-ms-correlation-request-id": [ - "39803e8f-a925-4283-8545-d5452049bcd1" + "9722b8c7-b182-430a-8152-42c320e48cf5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134527Z:39803e8f-a925-4283-8545-d5452049bcd1" + "FRANCESOUTH:20201108T123355Z:9722b8c7-b182-430a-8152-42c320e48cf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4182,7 +4065,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:45:27 GMT" + "Sun, 08 Nov 2020 12:33:54 GMT" ], "Expires": [ "-1" @@ -4195,16 +4078,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4215,22 +4098,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11980" ], "x-ms-request-id": [ - "ad126f14-fbb8-4486-b3e2-aabf798c1a32" + "a3c60e95-cec1-4de0-af43-34242ee7025d" ], "x-ms-correlation-request-id": [ - "ad126f14-fbb8-4486-b3e2-aabf798c1a32" + "a3c60e95-cec1-4de0-af43-34242ee7025d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134543Z:ad126f14-fbb8-4486-b3e2-aabf798c1a32" + "FRANCESOUTH:20201108T123411Z:a3c60e95-cec1-4de0-af43-34242ee7025d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4239,7 +4122,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:45:42 GMT" + "Sun, 08 Nov 2020 12:34:10 GMT" ], "Expires": [ "-1" @@ -4252,16 +4135,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4272,22 +4155,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11979" ], "x-ms-request-id": [ - "006a1e24-59c6-4e2a-81de-801dd312f1b1" + "203d930b-8700-42a1-9e32-3b806af90f0a" ], "x-ms-correlation-request-id": [ - "006a1e24-59c6-4e2a-81de-801dd312f1b1" + "203d930b-8700-42a1-9e32-3b806af90f0a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134558Z:006a1e24-59c6-4e2a-81de-801dd312f1b1" + "FRANCESOUTH:20201108T123426Z:203d930b-8700-42a1-9e32-3b806af90f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4296,7 +4179,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:45:57 GMT" + "Sun, 08 Nov 2020 12:34:26 GMT" ], "Expires": [ "-1" @@ -4309,16 +4192,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4329,22 +4212,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11978" ], "x-ms-request-id": [ - "15a96f76-ab8b-43f5-835b-632eb9cad4b6" + "33b2350b-ffb9-4506-9578-b2cd0994b40a" ], "x-ms-correlation-request-id": [ - "15a96f76-ab8b-43f5-835b-632eb9cad4b6" + "33b2350b-ffb9-4506-9578-b2cd0994b40a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134613Z:15a96f76-ab8b-43f5-835b-632eb9cad4b6" + "FRANCESOUTH:20201108T123441Z:33b2350b-ffb9-4506-9578-b2cd0994b40a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4353,7 +4236,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:46:12 GMT" + "Sun, 08 Nov 2020 12:34:41 GMT" ], "Expires": [ "-1" @@ -4366,16 +4249,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4386,22 +4269,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11977" ], "x-ms-request-id": [ - "09c8aab5-6a97-4f81-87c6-84f91feee361" + "6280469f-e4cf-4132-8555-163ba5119974" ], "x-ms-correlation-request-id": [ - "09c8aab5-6a97-4f81-87c6-84f91feee361" + "6280469f-e4cf-4132-8555-163ba5119974" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134628Z:09c8aab5-6a97-4f81-87c6-84f91feee361" + "FRANCESOUTH:20201108T123457Z:6280469f-e4cf-4132-8555-163ba5119974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4410,7 +4293,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:46:28 GMT" + "Sun, 08 Nov 2020 12:34:57 GMT" ], "Expires": [ "-1" @@ -4423,16 +4306,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4443,22 +4326,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11976" ], "x-ms-request-id": [ - "5295534c-f0cc-49e5-ae8f-38c87113cf27" + "f110e174-ea78-4943-89e6-08b7e81a0956" ], "x-ms-correlation-request-id": [ - "5295534c-f0cc-49e5-ae8f-38c87113cf27" + "f110e174-ea78-4943-89e6-08b7e81a0956" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134644Z:5295534c-f0cc-49e5-ae8f-38c87113cf27" + "FRANCESOUTH:20201108T123512Z:f110e174-ea78-4943-89e6-08b7e81a0956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4467,7 +4350,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:46:44 GMT" + "Sun, 08 Nov 2020 12:35:11 GMT" ], "Expires": [ "-1" @@ -4480,16 +4363,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4500,22 +4383,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11975" ], "x-ms-request-id": [ - "9d83e6c7-941b-4d17-8f49-d6f68b1523ed" + "e3caae32-e3a2-4e4a-949a-b318b5a656d4" ], "x-ms-correlation-request-id": [ - "9d83e6c7-941b-4d17-8f49-d6f68b1523ed" + "e3caae32-e3a2-4e4a-949a-b318b5a656d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134659Z:9d83e6c7-941b-4d17-8f49-d6f68b1523ed" + "FRANCESOUTH:20201108T123527Z:e3caae32-e3a2-4e4a-949a-b318b5a656d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4524,7 +4407,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:46:59 GMT" + "Sun, 08 Nov 2020 12:35:26 GMT" ], "Expires": [ "-1" @@ -4537,16 +4420,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4557,22 +4440,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11974" ], "x-ms-request-id": [ - "75fadd95-ee91-402d-8e4d-55eb4bbca7c4" + "bf91b4bd-355d-4e65-a7c8-3e9bf7c93e6e" ], "x-ms-correlation-request-id": [ - "75fadd95-ee91-402d-8e4d-55eb4bbca7c4" + "bf91b4bd-355d-4e65-a7c8-3e9bf7c93e6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134714Z:75fadd95-ee91-402d-8e4d-55eb4bbca7c4" + "FRANCESOUTH:20201108T123543Z:bf91b4bd-355d-4e65-a7c8-3e9bf7c93e6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4581,7 +4464,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:47:14 GMT" + "Sun, 08 Nov 2020 12:35:42 GMT" ], "Expires": [ "-1" @@ -4594,16 +4477,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4614,22 +4497,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11973" ], "x-ms-request-id": [ - "cf468ba4-5839-406b-b704-1dc53a28923a" + "4f1abee4-e65a-4cb8-b144-eb2f3f1c01c0" ], "x-ms-correlation-request-id": [ - "cf468ba4-5839-406b-b704-1dc53a28923a" + "4f1abee4-e65a-4cb8-b144-eb2f3f1c01c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134729Z:cf468ba4-5839-406b-b704-1dc53a28923a" + "FRANCESOUTH:20201108T123558Z:4f1abee4-e65a-4cb8-b144-eb2f3f1c01c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4638,7 +4521,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:47:29 GMT" + "Sun, 08 Nov 2020 12:35:57 GMT" ], "Expires": [ "-1" @@ -4651,16 +4534,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4671,22 +4554,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11972" ], "x-ms-request-id": [ - "92f0d82e-4bd5-40b3-9d82-60ae2a87d8dd" + "71d30d4a-c87a-475e-bd88-f082312d1c93" ], "x-ms-correlation-request-id": [ - "92f0d82e-4bd5-40b3-9d82-60ae2a87d8dd" + "71d30d4a-c87a-475e-bd88-f082312d1c93" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134745Z:92f0d82e-4bd5-40b3-9d82-60ae2a87d8dd" + "FRANCESOUTH:20201108T123613Z:71d30d4a-c87a-475e-bd88-f082312d1c93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4695,7 +4578,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:47:45 GMT" + "Sun, 08 Nov 2020 12:36:13 GMT" ], "Expires": [ "-1" @@ -4708,16 +4591,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4728,22 +4611,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11971" ], "x-ms-request-id": [ - "283b44b9-6454-4b3e-9346-838bbb4c408f" + "0a4c7525-3cc8-4f2a-9a0a-0680837efdae" ], "x-ms-correlation-request-id": [ - "283b44b9-6454-4b3e-9346-838bbb4c408f" + "0a4c7525-3cc8-4f2a-9a0a-0680837efdae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134800Z:283b44b9-6454-4b3e-9346-838bbb4c408f" + "FRANCESOUTH:20201108T123629Z:0a4c7525-3cc8-4f2a-9a0a-0680837efdae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4752,7 +4635,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:48:00 GMT" + "Sun, 08 Nov 2020 12:36:28 GMT" ], "Expires": [ "-1" @@ -4765,16 +4648,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4784,23 +4667,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11970" ], "x-ms-request-id": [ - "0f3e92f9-1981-4ade-91c4-3607f3ee1c9c" + "dbdad66b-6d95-45f2-9390-d37c78af8780" ], "x-ms-correlation-request-id": [ - "0f3e92f9-1981-4ade-91c4-3607f3ee1c9c" + "dbdad66b-6d95-45f2-9390-d37c78af8780" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134815Z:0f3e92f9-1981-4ade-91c4-3607f3ee1c9c" + "FRANCESOUTH:20201108T123644Z:dbdad66b-6d95-45f2-9390-d37c78af8780" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4809,7 +4686,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:48:15 GMT" + "Sun, 08 Nov 2020 12:36:44 GMT" ], "Expires": [ "-1" @@ -4819,19 +4696,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMzNTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNek5UUXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4841,23 +4718,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11969" ], "x-ms-request-id": [ - "648e1e01-472e-4d07-9814-3f6d98d48656" + "e3a259a9-d6eb-46d5-8ade-eeb801ecd446" ], "x-ms-correlation-request-id": [ - "648e1e01-472e-4d07-9814-3f6d98d48656" + "e3a259a9-d6eb-46d5-8ade-eeb801ecd446" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134831Z:648e1e01-472e-4d07-9814-3f6d98d48656" + "FRANCESOUTH:20201108T123644Z:e3a259a9-d6eb-46d5-8ade-eeb801ecd446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4866,7 +4737,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:48:30 GMT" + "Sun, 08 Nov 2020 12:36:44 GMT" ], "Expires": [ "-1" @@ -4876,74 +4747,20 @@ ] }, "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgyNTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "1d9a18c4-1260-4a0e-8d38-8fb77dff2e05" - ], - "x-ms-correlation-request-id": [ - "1d9a18c4-1260-4a0e-8d38-8fb77dff2e05" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134846Z:1d9a18c4-1260-4a0e-8d38-8fb77dff2e05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 05 Sep 2020 13:48:45 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1663" - ] - }, - "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionBlocked\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'ps8257' failed as resources with identifiers 'Microsoft.Network/virtualNetworks/ps8257-vnet,Microsoft.Network/networkInterfaces/anf-ps8257-vnet-nic-IZIRSW' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is '6e2dd100-e6a2-4646-85f8-d2e8807d5d82'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/virtualNetworks/ps8257-vnet\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"InUseSubnetCannotBeDeleted\\\",\\\"message\\\":\\\"Subnet default is in use by /subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/networkInterfaces/anf-ps8257-vnet-nic-IZIRSW/ipConfigurations/ipconfig1 and cannot be deleted. In order to delete the subnet, delete all the resources within the subnet. See aka.ms/deletesubnet.\\\",\\\"details\\\":[]}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n },\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps8257/providers/Microsoft.Network/networkInterfaces/anf-ps8257-vnet-nic-IZIRSW\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"OperationNotPermittedOnNicCreatedByDifferentOwner\\\",\\\"message\\\":\\\"Network Interface /subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps8257/providers/Microsoft.Network/networkInterfaces/anf-ps8257-vnet-nic-IZIRSW was created by Microsoft.Netapp and can be modified only by the creator.\\\",\\\"details\\\":[]}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", - "StatusCode": 409 + "StatusCode": 200 } ], "Names": { "Test-SnapshotCrud": [ - "ps8257", - "ps5849", - "ps1370", - "ps1332", - "ps9262", - "ps4946" + "ps3354", + "ps6725", + "ps3709", + "ps4222", + "ps138", + "ps9245" ] }, "Variables": { - "SubscriptionId": "0661B131-4A11-479B-96BF-2F95ACCA2F73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotPipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotPipelines.json index 6654a0536667..6592ddadd459 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotPipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotPipelines.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps877?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzODc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7660?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "662f542b-ecba-4c5f-a102-4bf42d369929" + "125ca37e-0dfa-4d3d-8272-ef15e1d6629c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "d61c52ac-a056-459f-ad74-4690b04096b1" + "c21205c0-aeaa-4a50-b276-84339800c6ed" ], "x-ms-correlation-request-id": [ - "d61c52ac-a056-459f-ad74-4690b04096b1" + "c21205c0-aeaa-4a50-b276-84339800c6ed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134854Z:d61c52ac-a056-459f-ad74-4690b04096b1" + "FRANCESOUTH:20201108T123650Z:c21205c0-aeaa-4a50-b276-84339800c6ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:48:53 GMT" + "Sun, 08 Nov 2020 12:36:49 GMT" ], "Content-Length": [ - "170" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877\",\r\n \"name\": \"ps877\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660\",\r\n \"name\": \"ps7660\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09eb372c-c76d-4d79-b4a5-0db8408b4a62" + "a1d95e9e-6ca9-41fe-b645-307119271a7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "3a8f7f43-70a7-4a5d-8ed3-9ae8dc5cef07" + "ef594cef-a755-4d61-a794-0c8fb7be49a7" ], "x-ms-correlation-request-id": [ - "3a8f7f43-70a7-4a5d-8ed3-9ae8dc5cef07" + "ef594cef-a755-4d61-a794-0c8fb7be49a7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134855Z:3a8f7f43-70a7-4a5d-8ed3-9ae8dc5cef07" + "FRANCESOUTH:20201108T123651Z:ef594cef-a755-4d61-a794-0c8fb7be49a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:48:55 GMT" + "Sun, 08 Nov 2020 12:36:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,23 @@ "-1" ], "Content-Length": [ - "221" + "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps877-vnet' under resource group 'ps877' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7660-vnet' under resource group 'ps7660' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"0cd6a11a-e8d5-4a29-b053-56053d139521\"" + "W/\"124c756d-272e-4431-8c47-57866a441407\"" ], "x-ms-request-id": [ - "59a26f7e-37d8-4b16-a116-2944404a2b93" + "52a42f36-10dd-459b-baea-d04db20e8fe3" ], "x-ms-correlation-request-id": [ - "0ab56cb0-577c-43a8-ac8f-a6f8acc3f708" + "f365ca55-feff-4fb6-b241-e113bffbfaa2" ], "x-ms-arm-service-request-id": [ - "40a6eb5e-2296-448a-bd42-023679ed002d" + "6821d747-abaf-4a6a-8de2-3a93797cd4d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,16 +169,16 @@ "11997" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134905Z:0ab56cb0-577c-43a8-ac8f-a6f8acc3f708" + "FRANCESOUTH:20201108T123704Z:f365ca55-feff-4fb6-b241-e113bffbfaa2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:04 GMT" + "Sun, 08 Nov 2020 12:37:04 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"0cd6a11a-e8d5-4a29-b053-56053d139521\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"124c756d-272e-4431-8c47-57866a441407\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48642899-44f8-4935-b384-e2ce6c956026" + "d8b036ea-e132-409f-bf15-89f6f33a6775" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"0cd6a11a-e8d5-4a29-b053-56053d139521\"" + "W/\"124c756d-272e-4431-8c47-57866a441407\"" ], "x-ms-request-id": [ - "902f957f-68ae-44de-9680-a03f85987e9f" + "85394628-a018-4aa8-8768-470f2ccd263e" ], "x-ms-correlation-request-id": [ - "9204695e-50e0-4631-bbc1-b1586b953e57" + "cd732bd8-903d-407e-907a-dfd4d3fe369c" ], "x-ms-arm-service-request-id": [ - "9d24c9f1-b3b0-4e40-9593-e98cb5ada9ea" + "72c79cc5-2df2-4845-be6a-0ce0e8e5246f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,16 +239,16 @@ "11996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134905Z:9204695e-50e0-4631-bbc1-b1586b953e57" + "FRANCESOUTH:20201108T123705Z:cd732bd8-903d-407e-907a-dfd4d3fe369c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:05 GMT" + "Sun, 08 Nov 2020 12:37:04 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"0cd6a11a-e8d5-4a29-b053-56053d139521\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"124c756d-272e-4431-8c47-57866a441407\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23fefe09-3212-47ff-9d02-43c0996677f4" + "3b2aef8f-1f1b-4de9-b036-c51ece41db48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"0cd6a11a-e8d5-4a29-b053-56053d139521\"" + "W/\"124c756d-272e-4431-8c47-57866a441407\"" ], "x-ms-request-id": [ - "5c7e069f-ca08-4c58-adef-22f72efb7421" + "d5d50f56-0dec-40f0-8a3b-c0ce70a312d7" ], "x-ms-correlation-request-id": [ - "8bbaa35b-fbd9-4c94-aadf-8433cfdbb14c" + "41d71d78-6187-4a51-a6fb-e8520e46e296" ], "x-ms-arm-service-request-id": [ - "edcee5a0-cbbe-4fd5-b3bd-8b3b5d3831c9" + "db55b1ba-498e-4eff-a214-6986109b1dd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +309,16 @@ "11995" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134905Z:8bbaa35b-fbd9-4c94-aadf-8433cfdbb14c" + "FRANCESOUTH:20201108T123705Z:41d71d78-6187-4a51-a6fb-e8520e46e296" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:05 GMT" + "Sun, 08 Nov 2020 12:37:04 GMT" ], "Content-Length": [ - "645" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"0cd6a11a-e8d5-4a29-b053-56053d139521\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"124c756d-272e-4431-8c47-57866a441407\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"80d1ccff-aca6-4a28-b720-658131fc6fdb\"" + "W/\"fa898170-445e-4e13-b4d9-6ac0822881fa\"" ], "x-ms-request-id": [ - "4752b95a-fe6f-439a-bfd7-28e9783dac0a" + "5eef9bdc-fa04-4286-a324-0d2b7c0429da" ], "x-ms-correlation-request-id": [ - "99f9f855-d1ce-40fa-b623-d74e94c6453f" + "ef8986a5-ca82-43d4-9c5f-92e2a115fadc" ], "x-ms-arm-service-request-id": [ - "84ffc894-2a73-4890-b327-09f282a921d1" + "2916f3ad-d82f-476d-b685-9ff1c07e3c00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,16 +373,16 @@ "11993" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134910Z:99f9f855-d1ce-40fa-b623-d74e94c6453f" + "FRANCESOUTH:20201108T123709Z:ef8986a5-ca82-43d4-9c5f-92e2a115fadc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:09 GMT" + "Sun, 08 Nov 2020 12:37:09 GMT" ], "Content-Length": [ - "2150" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7366665-9d88-4bf4-a4f9-1a36d581a981" + "2d50b174-92fb-451f-bba7-c66489b2daf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"80d1ccff-aca6-4a28-b720-658131fc6fdb\"" + "W/\"fa898170-445e-4e13-b4d9-6ac0822881fa\"" ], "x-ms-request-id": [ - "04cc4644-c35e-42f0-a34e-2dd05d3fb7be" + "88f5f00e-2b95-4408-a95c-ed752665e203" ], "x-ms-correlation-request-id": [ - "c0a24a3d-1804-4f0e-9316-53c0d9c648a1" + "81526e0b-efc1-4d89-8534-b47d15c41b14" ], "x-ms-arm-service-request-id": [ - "93780b07-af53-4a4e-adfe-05ed01f69d60" + "c345d027-daa1-4c70-8689-aa63480a6d46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,16 +443,16 @@ "11992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134910Z:c0a24a3d-1804-4f0e-9316-53c0d9c648a1" + "FRANCESOUTH:20201108T123709Z:81526e0b-efc1-4d89-8534-b47d15c41b14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:09 GMT" + "Sun, 08 Nov 2020 12:37:09 GMT" ], "Content-Length": [ - "2150" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -461,26 +461,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"80d1ccff-aca6-4a28-b720-658131fc6fdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"fa898170-445e-4e13-b4d9-6ac0822881fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b006eae-4be4-44fc-8c01-b25550e8f118" + "c7b3f8cd-6c26-4a48-811e-85b1f99e52f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -500,19 +500,19 @@ "3" ], "x-ms-request-id": [ - "e53bbd69-d9eb-4e10-b8f1-cbf70ccdaa80" + "1ca5daaf-0d6b-454b-bfa2-e69cb1313937" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/e53bbd69-d9eb-4e10-b8f1-cbf70ccdaa80?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/1ca5daaf-0d6b-454b-bfa2-e69cb1313937?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "860a57a4-cda1-43b5-9bc2-0ce2db1e2c21" + "3d603fee-04ce-46ba-8d3a-b5415d6b1ef5" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "d49dcceb-585a-405e-9ed0-d912b860ccf8" + "7f1d6040-7d72-4f51-9bae-50bd574f96ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,16 +525,16 @@ "1199" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134901Z:860a57a4-cda1-43b5-9bc2-0ce2db1e2c21" + "FRANCESOUTH:20201108T123701Z:3d603fee-04ce-46ba-8d3a-b5415d6b1ef5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:01 GMT" + "Sun, 08 Nov 2020 12:37:00 GMT" ], "Content-Length": [ - "644" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,32 +543,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"059fbd9b-6ef1-4d17-a181-55f5664bc766\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"51b6379c-89ad-4a73-8ab3-e7b47eaabf4d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcHM4Nzctdm5ldD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzY2MC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7cef9d1a-3347-4bad-b3d7-8cb85d53b628" + "b190f845-5436-4a82-88a6-690b320b52a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1068" + "1070" ] }, "ResponseHeaders": { @@ -582,16 +582,16 @@ "3" ], "x-ms-request-id": [ - "fe5ed0eb-823f-4545-8e0e-d51d4ad78fc3" + "2b8bd81e-8981-4c62-85bb-938aa77761c0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/fe5ed0eb-823f-4545-8e0e-d51d4ad78fc3?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/2b8bd81e-8981-4c62-85bb-938aa77761c0?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "e48647f4-597e-44d7-b60a-270a824c8d7b" + "34416015-b4b2-4a46-99ef-c32b373ff93a" ], "x-ms-arm-service-request-id": [ - "635545b8-a019-4cac-a92e-d8a2f8c1e274" + "fa84fa80-49ca-4c21-904a-05d22e910fd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -604,16 +604,16 @@ "1198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134906Z:e48647f4-597e-44d7-b60a-270a824c8d7b" + "FRANCESOUTH:20201108T123706Z:34416015-b4b2-4a46-99ef-c32b373ff93a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:06 GMT" + "Sun, 08 Nov 2020 12:37:05 GMT" ], "Content-Length": [ - "2148" + "2155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -622,20 +622,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps877-vnet\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"etag\": \"W/\\\"2261794e-905d-4d81-8442-801e0b5d225c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0bd114c-8586-4778-9bcf-ec49eba9caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"2261794e-905d-4d81-8442-801e0b5d225c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"2261794e-905d-4d81-8442-801e0b5d225c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7660-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet\",\r\n \"etag\": \"W/\\\"73ae83f7-e05b-4e32-a041-e2e7d1b42290\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"17c167ef-2534-4ab0-83fb-760e56eddea4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"73ae83f7-e05b-4e32-a041-e2e7d1b42290\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"73ae83f7-e05b-4e32-a041-e2e7d1b42290\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/e53bbd69-d9eb-4e10-b8f1-cbf70ccdaa80?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U1M2JiZDY5LWQ5ZWItNGUxMC1iOGYxLWNiZjcwY2NkYWE4MD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/1ca5daaf-0d6b-454b-bfa2-e69cb1313937?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTVkYWFmLTBkNmItNDU0Yi1iZmEyLWU2OWNiMTMxMzkzNz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -646,13 +646,13 @@ "no-cache" ], "x-ms-request-id": [ - "ef05b331-ba37-4732-aeed-6788833d2d57" + "2d571ca0-7750-4160-a4e1-69fee05443fc" ], "x-ms-correlation-request-id": [ - "645d3865-32f5-44d6-9a12-1d0449a8af3e" + "f87141ba-265d-418c-bd72-1f8da7680b56" ], "x-ms-arm-service-request-id": [ - "58bda292-5c00-49fb-b0ea-1c27e0720ef7" + "609df160-debb-4a2d-ba4d-d5736e4fcc81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,13 +665,13 @@ "11998" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134905Z:645d3865-32f5-44d6-9a12-1d0449a8af3e" + "FRANCESOUTH:20201108T123704Z:f87141ba-265d-418c-bd72-1f8da7680b56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:04 GMT" + "Sun, 08 Nov 2020 12:37:03 GMT" ], "Content-Length": [ "29" @@ -687,16 +687,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/providers/Microsoft.Network/locations/westcentralus/operations/fe5ed0eb-823f-4545-8e0e-d51d4ad78fc3?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MWIxMzEtNGExMS00NzliLTk2YmYtMmY5NWFjY2EyZjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZlNWVkMGViLTgyM2YtNDU0NS04ZTBlLWQ1MWQ0YWQ3OGZjMz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/2b8bd81e-8981-4c62-85bb-938aa77761c0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJiOGJkODFlLTg5ODEtNGM2Mi04NWJiLTkzOGFhNzc3NjFjMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -707,13 +707,13 @@ "no-cache" ], "x-ms-request-id": [ - "20ff521a-5cc5-47be-ad10-da7d07cb50e4" + "746a4c2b-a45c-4a6f-8e53-19650405d2fa" ], "x-ms-correlation-request-id": [ - "82837aff-a934-4618-850e-79521f4a5c3b" + "d7945b62-018c-4a99-86af-861e10e4e943" ], "x-ms-arm-service-request-id": [ - "b4b48b5c-0279-4c05-994d-9366cd514385" + "74ca4f6c-464b-45a4-a150-a23778de2936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +726,13 @@ "11994" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134910Z:82837aff-a934-4618-850e-79521f4a5c3b" + "FRANCESOUTH:20201108T123709Z:d7945b62-018c-4a99-86af-861e10e4e943" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:09 GMT" + "Sun, 08 Nov 2020 12:37:09 GMT" ], "Content-Length": [ "29" @@ -748,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13bad770-788f-4606-ab44-b53e20a49099" + "9b41dd59-fb52-4cf8-8a05-ad6f9dcb0b5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,13 +780,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A49%3A17.2350806Z'\"" + "W/\"datetime'2020-11-08T12%3A37%3A17.4750041Z'\"" ], "x-ms-request-id": [ - "7608051c-6c44-4e61-8faf-bbea01f32b8f" + "64bae57e-b3b2-4b8c-b10b-d4a3c3551d52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78af5c18-8f36-493f-83d2-9238d327c5f6?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05ec8867-fc76-482c-9f88-618a3ed26359?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -804,10 +804,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "54663eb3-83d1-4378-b62c-3752f3926e12" + "f0d872cf-6b1e-46e0-ab2d-40ec6c96e31a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134918Z:54663eb3-83d1-4378-b62c-3752f3926e12" + "FRANCESOUTH:20201108T123718Z:f0d872cf-6b1e-46e0-ab2d-40ec6c96e31a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,10 +816,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:17 GMT" + "Sun, 08 Nov 2020 12:37:18 GMT" ], "Content-Length": [ - "318" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,20 +828,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A49%3A17.2350806Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065\",\r\n \"name\": \"ps3065\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A37%3A17.4750041Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78af5c18-8f36-493f-83d2-9238d327c5f6?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzhhZjVjMTgtOGYzNi00OTNmLTgzZDItOTIzOGQzMjdjNWY2P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05ec8867-fc76-482c-9f88-618a3ed26359?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDVlYzg4NjctZmM3Ni00ODJjLTlmODgtNjE4YTNlZDI2MzU5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -852,7 +852,7 @@ "no-cache" ], "x-ms-request-id": [ - "62c906c7-9c88-429e-bf36-d545f2695668" + "14546b26-9da1-40ed-ac3b-d2bfcbee6521" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -870,10 +870,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "74c61e18-3379-4109-a523-2325ec94b17a" + "adaa89ab-ff22-4cf9-8994-2587bdfe7587" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134948Z:74c61e18-3379-4109-a523-2325ec94b17a" + "FRANCESOUTH:20201108T123748Z:adaa89ab-ff22-4cf9-8994-2587bdfe7587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,10 +882,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:48 GMT" + "Sun, 08 Nov 2020 12:37:48 GMT" ], "Content-Length": [ - "494" + "493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -894,20 +894,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/78af5c18-8f36-493f-83d2-9238d327c5f6\",\r\n \"name\": \"78af5c18-8f36-493f-83d2-9238d327c5f6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:49:17.1809914Z\",\r\n \"endTime\": \"2020-09-05T13:49:17.3060069Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05ec8867-fc76-482c-9f88-618a3ed26359\",\r\n \"name\": \"05ec8867-fc76-482c-9f88-618a3ed26359\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:37:17.30125Z\",\r\n \"endTime\": \"2020-11-08T12:37:17.5595614Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -918,10 +918,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A49%3A17.3011275Z'\"" + "W/\"datetime'2020-11-08T12%3A37%3A17.562067Z'\"" ], "x-ms-request-id": [ - "39ee14c1-36e2-447e-b09e-3169445f400d" + "7c1b4b48-a16c-4020-bbf7-3b7c0ab21472" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -939,10 +939,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "6d861582-52a1-4cb7-ba30-c0187c385cd2" + "460c2eff-75b5-4f84-afa8-c491ff872a8c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134948Z:6d861582-52a1-4cb7-ba30-c0187c385cd2" + "FRANCESOUTH:20201108T123749Z:460c2eff-75b5-4f84-afa8-c491ff872a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +951,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:48 GMT" + "Sun, 08 Nov 2020 12:37:48 GMT" ], "Content-Length": [ "319" @@ -963,26 +963,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832\",\r\n \"name\": \"ps6832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A49%3A17.3011275Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065\",\r\n \"name\": \"ps3065\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A37%3A17.562067Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "597a8e4a-7a1e-484b-8e49-45f6269ec82b" + "697e76cf-de07-499e-bba7-5f58c0aafd83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -999,13 +999,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A49%3A50.3007472Z'\"" + "W/\"datetime'2020-11-08T12%3A37%3A51.7463799Z'\"" ], "x-ms-request-id": [ - "18649469-8b0f-4c28-af05-484a79aed5db" + "9d4df78b-eff6-4aa4-a4aa-7d40f4d39a46" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/165b470e-2fc4-4f4f-9389-035894b548aa?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/390862d0-7b0b-438f-b09f-a704322bea30?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1023,10 +1023,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "be87ccdc-731b-4c35-b87e-32cb7876f531" + "0ac4095e-2604-46f7-9869-0c1df3042461" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T134951Z:be87ccdc-731b-4c35-b87e-32cb7876f531" + "FRANCESOUTH:20201108T123752Z:0ac4095e-2604-46f7-9869-0c1df3042461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1035,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:49:51 GMT" + "Sun, 08 Nov 2020 12:37:51 GMT" ], "Content-Length": [ - "406" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,20 +1047,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922\",\r\n \"name\": \"ps6832/ps2922\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A49%3A50.3007472Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109\",\r\n \"name\": \"ps3065/ps1109\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A37%3A51.7463799Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/165b470e-2fc4-4f4f-9389-035894b548aa?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMTY1YjQ3MGUtMmZjNC00ZjRmLTkzODktMDM1ODk0YjU0OGFhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/390862d0-7b0b-438f-b09f-a704322bea30?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzkwODYyZDAtN2IwYi00MzhmLWIwOWYtYTcwNDMyMmJlYTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1071,7 +1071,7 @@ "no-cache" ], "x-ms-request-id": [ - "fa485c55-093f-4b53-b85a-93f9f6707771" + "c07b17c2-9d76-4c20-a2a7-2896d8fe6b29" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1089,10 +1089,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "b8c320b7-0075-4e83-9f60-78b2e1abf446" + "b28751fd-d020-46a9-9c07-da65224001b2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135021Z:b8c320b7-0075-4e83-9f60-78b2e1abf446" + "FRANCESOUTH:20201108T123823Z:b28751fd-d020-46a9-9c07-da65224001b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,10 +1101,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:50:21 GMT" + "Sun, 08 Nov 2020 12:38:22 GMT" ], "Content-Length": [ - "515" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1113,20 +1113,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/165b470e-2fc4-4f4f-9389-035894b548aa\",\r\n \"name\": \"165b470e-2fc4-4f4f-9389-035894b548aa\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:49:50.1477324Z\",\r\n \"endTime\": \"2020-09-05T13:49:50.5226837Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/390862d0-7b0b-438f-b09f-a704322bea30\",\r\n \"name\": \"390862d0-7b0b-438f-b09f-a704322bea30\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:37:51.6776335Z\",\r\n \"endTime\": \"2020-11-08T12:37:52.0148582Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMj9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDk/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1137,10 +1137,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A49%3A54.2335624Z'\"" + "W/\"datetime'2020-11-08T12%3A37%3A57.1442197Z'\"" ], "x-ms-request-id": [ - "13f4d1a9-a1a6-4918-993a-bee155f480d0" + "90a8019f-b8a3-4c80-88f2-86971b7781d1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1158,10 +1158,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "e6b5e8f8-6872-418d-8b90-040cb0939355" + "b674dec0-4486-4005-b497-68683da65292" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135021Z:e6b5e8f8-6872-418d-8b90-040cb0939355" + "FRANCESOUTH:20201108T123823Z:b674dec0-4486-4005-b497-68683da65292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,10 +1170,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:50:21 GMT" + "Sun, 08 Nov 2020 12:38:23 GMT" ], "Content-Length": [ - "455" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,32 +1182,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922\",\r\n \"name\": \"ps6832/ps2922\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A49%3A54.2335624Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"923c9a01-2929-347d-2c55-2a20d89a4ed7\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109\",\r\n \"name\": \"ps3065/ps1109\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A37%3A57.1442197Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"a8a2b9b2-4bc7-3e9a-16e7-cc22824b6b58\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOD9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps7428\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps7397\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6386e700-85e2-4197-a89d-518ee0739fe4" + "040a6fbb-9e72-47ae-a7de-b99295cfbd5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "397" ] }, "ResponseHeaders": { @@ -1218,13 +1218,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A50%3A24.1079408Z'\"" + "W/\"datetime'2020-11-08T12%3A38%3A26.3269718Z'\"" ], "x-ms-request-id": [ - "4680399b-8ea7-4a74-ae3a-a63fd6161665" + "7d1d1686-8ad8-4c79-9908-185ae0400445" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1242,10 +1242,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "44483929-bb99-479c-b8a5-704a1b0a7451" + "fbf60f78-bae0-40cb-8260-8dd22bd85185" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135024Z:44483929-bb99-479c-b8a5-704a1b0a7451" + "FRANCESOUTH:20201108T123827Z:fbf60f78-bae0-40cb-8260-8dd22bd85185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1254,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:50:24 GMT" + "Sun, 08 Nov 2020 12:38:26 GMT" ], "Content-Length": [ - "627" + "687" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,20 +1266,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\",\r\n \"name\": \"ps6832/ps2922/ps7428\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A50%3A24.1079408Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7428\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\",\r\n \"name\": \"ps3065/ps1109/ps7397\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A38%3A26.3269718Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7397\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1290,7 +1290,7 @@ "no-cache" ], "x-ms-request-id": [ - "453d667e-9d26-4a9b-8644-a1f39cbd32e0" + "95e1297b-2053-4c62-af4d-3b85ae5cfb51" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1308,10 +1308,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "550bc4af-65c1-4007-9882-b5d1948dc731" + "aa580ddc-f608-41ba-9305-a6c17eb08a36" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135055Z:550bc4af-65c1-4007-9882-b5d1948dc731" + "FRANCESOUTH:20201108T123857Z:aa580ddc-f608-41ba-9305-a6c17eb08a36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1320,10 +1320,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:50:54 GMT" + "Sun, 08 Nov 2020 12:38:56 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,20 +1332,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1356,7 +1356,7 @@ "no-cache" ], "x-ms-request-id": [ - "e24908aa-29b7-4814-9489-11a9408a9ebd" + "14003aad-9631-4e1a-a800-43005315f6d7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1374,10 +1374,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "7a7bf9da-4270-472a-a615-bc7f6fdd958b" + "263706f9-c3b3-4cef-a878-39176ef93643" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135125Z:7a7bf9da-4270-472a-a615-bc7f6fdd958b" + "FRANCESOUTH:20201108T123927Z:263706f9-c3b3-4cef-a878-39176ef93643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,10 +1386,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:51:24 GMT" + "Sun, 08 Nov 2020 12:39:27 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,20 +1398,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1422,7 +1422,7 @@ "no-cache" ], "x-ms-request-id": [ - "f21249a7-3a6a-4342-b00e-0201f0b29b0a" + "087c651f-73a3-41e5-a87a-9ab715f3ab79" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1440,10 +1440,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "9f15660b-a96e-478d-9196-8eb5af766fed" + "8724715c-4f5c-4837-bf64-2bc27092e0f8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135155Z:9f15660b-a96e-478d-9196-8eb5af766fed" + "FRANCESOUTH:20201108T123958Z:8724715c-4f5c-4837-bf64-2bc27092e0f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,10 +1452,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:51:55 GMT" + "Sun, 08 Nov 2020 12:39:58 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1464,20 +1464,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1488,7 +1488,7 @@ "no-cache" ], "x-ms-request-id": [ - "1fb8555f-8729-47ff-9203-82276d5ee9f8" + "8a78b398-366c-4275-8e68-dfdec520070e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1506,10 +1506,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "fa71112f-bece-469f-9a51-1316d4cc0069" + "40438fd0-d327-4663-8e71-527bd363d101" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135225Z:fa71112f-bece-469f-9a51-1316d4cc0069" + "FRANCESOUTH:20201108T124028Z:40438fd0-d327-4663-8e71-527bd363d101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,10 +1518,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:52:25 GMT" + "Sun, 08 Nov 2020 12:40:27 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,20 +1530,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1554,7 +1554,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2f9a4e0-3e1a-470c-99b6-aa2c9e0d91a9" + "00d553c4-6a22-4e7d-a48c-cbea1351c894" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1572,10 +1572,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "0545abf8-8dad-494b-b17e-5fe8bd11a25e" + "8405e0d5-21e1-4e49-99c7-38b872707d4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135255Z:0545abf8-8dad-494b-b17e-5fe8bd11a25e" + "FRANCESOUTH:20201108T124058Z:8405e0d5-21e1-4e49-99c7-38b872707d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,10 +1584,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:52:55 GMT" + "Sun, 08 Nov 2020 12:40:57 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,20 +1596,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1620,7 +1620,7 @@ "no-cache" ], "x-ms-request-id": [ - "9dbf8da1-3f63-46e2-89cd-24336a6edfd0" + "90827dcb-1888-4f77-88f0-2fb48d44e59e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1638,10 +1638,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "9826ab93-3303-4326-9dd9-08f83d418c83" + "14e52c0b-b9d3-4739-9ea8-1f8c0cdbbaee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135326Z:9826ab93-3303-4326-9dd9-08f83d418c83" + "FRANCESOUTH:20201108T124128Z:14e52c0b-b9d3-4739-9ea8-1f8c0cdbbaee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,10 +1650,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:53:25 GMT" + "Sun, 08 Nov 2020 12:41:28 GMT" ], "Content-Length": [ - "519" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,20 +1662,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjM5NGQxNzktMmRkMy00MmMyLTgwYTYtZjIyZjBiOTJjMzI1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1686,7 +1686,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9b21108-c801-4af0-9d73-bad9f5a0f098" + "bfa1a4ec-adeb-4c92-94bf-d30ca0a9b1dd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1704,10 +1704,76 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "31aae0aa-6d76-448d-8939-b7c5e65f73ca" + "6be4a2ad-6c59-4b3b-b55c-4a91384b5bb3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T124159Z:6be4a2ad-6c59-4b3b-b55c-4a91384b5bb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:41:59 GMT" + ], + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNmQ0YWJmYTgtZDlhNy00OWM3LTg5OTktYTgzMzE4Nzc3MTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab7a7db5-af31-4b81-9c8f-6481486694e4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "a742a245-4736-47b4-821d-cba37f15a1d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135356Z:31aae0aa-6d76-448d-8939-b7c5e65f73ca" + "FRANCESOUTH:20201108T124229Z:a742a245-4736-47b4-821d-cba37f15a1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1782,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:53:55 GMT" + "Sun, 08 Nov 2020 12:42:29 GMT" ], "Content-Length": [ - "530" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,20 +1794,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"name\": \"6394d179-2dd3-42c2-80a6-f22f0b92c325\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:50:24.0195467Z\",\r\n \"endTime\": \"2020-09-05T13:53:38.2661646Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"name\": \"6d4abfa8-d9a7-49c7-8999-a83318777156\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:38:26.1898221Z\",\r\n \"endTime\": \"2020-11-08T12:42:09.9001076Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOD9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1752,10 +1818,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\"" + "W/\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\"" ], "x-ms-request-id": [ - "9de64a15-ffdb-42e9-ac9d-5dbc690a6dc4" + "239927f5-ffa7-45df-87f1-2de5a82b5977" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1770,13 +1836,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "0b8088a4-973b-43ce-bd0a-b26fe658eac3" + "1d109e31-8c45-42f1-8f3e-98c96f654068" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135357Z:0b8088a4-973b-43ce-bd0a-b26fe658eac3" + "FRANCESOUTH:20201108T124230Z:1d109e31-8c45-42f1-8f3e-98c96f654068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1785,10 +1851,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:53:56 GMT" + "Sun, 08 Nov 2020 12:42:30 GMT" ], "Content-Length": [ - "1278" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,26 +1863,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\",\r\n \"name\": \"ps6832/ps2922/ps7428\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"name\": \"ps7428\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7428\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_a27efd5a\",\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\",\r\n \"name\": \"ps3065/ps1109/ps7397\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"name\": \"ps7397\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7397\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_005f01b1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOD9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78d836e9-2496-4d0a-a672-e5c118ac32f1" + "11adb1aa-85b5-4f9b-ab03-a946ad9b3f36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1827,10 +1893,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\"" + "W/\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\"" ], "x-ms-request-id": [ - "240b9a79-8ff2-479b-85a6-4c8f3d5fa1bb" + "20f55a37-03fc-4b54-af05-c602c1ca6761" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1845,13 +1911,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "98ff9f59-092e-4476-a6b9-e6518c7f969a" + "a1c82e35-c1e5-4193-9730-270e4f3447b7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135357Z:98ff9f59-092e-4476-a6b9-e6518c7f969a" + "FRANCESOUTH:20201108T124230Z:a1c82e35-c1e5-4193-9730-270e4f3447b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,10 +1926,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:53:56 GMT" + "Sun, 08 Nov 2020 12:42:30 GMT" ], "Content-Length": [ - "1278" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1872,26 +1938,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\",\r\n \"name\": \"ps6832/ps2922/ps7428\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"name\": \"ps7428\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7428\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_a27efd5a\",\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\",\r\n \"name\": \"ps3065/ps1109/ps7397\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"name\": \"ps7397\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7397\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_005f01b1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOD9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8ccd7d-79c3-4145-a2ad-8bab54fa0d8f" + "451e2089-ee82-4c9b-adc0-9c2875437893" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1902,10 +1968,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\"" + "W/\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\"" ], "x-ms-request-id": [ - "b8572e9d-5cf7-46b6-8d19-d970aa5d7a1c" + "33306b3b-f3e5-4bda-ad51-dd1c122962bd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1920,13 +1986,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-correlation-request-id": [ - "9f41c4b3-9ad0-45ed-839f-b263fa1163a7" + "c457e5dd-cd48-414c-9939-99e15baeab68" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135500Z:9f41c4b3-9ad0-45ed-839f-b263fa1163a7" + "FRANCESOUTH:20201108T124333Z:c457e5dd-cd48-414c-9939-99e15baeab68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,10 +2001,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:59 GMT" + "Sun, 08 Nov 2020 12:43:32 GMT" ], "Content-Length": [ - "1278" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1947,26 +2013,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428\",\r\n \"name\": \"ps6832/ps2922/ps7428\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-05T13%3A53%3A38.2648882Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ad63bb4e-b8e3-8bd1-5f16-49dc666a7704\",\r\n \"name\": \"ps7428\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7428\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_a27efd5a\",\r\n \"subnetId\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397\",\r\n \"name\": \"ps3065/ps1109/ps7397\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T12%3A42%3A09.8999908Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"0b6dbb7d-d361-6740-4478-48f9c2b1f20d\",\r\n \"name\": \"ps7397\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps7397\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_005f01b1\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.Network/virtualNetworks/ps7660-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOC9zbmFwc2hvdHMvcHM1NjMwP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTcvc25hcHNob3RzL3BzNDY1Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10c33697-aa96-4504-9d33-7cb1fdc679b9" + "0e94ed7c-5be6-4519-b390-604748b1f30b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1983,13 +2049,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79136c51-0196-48e1-b0d5-1187fc4fe37d?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4bf770-7345-4ead-b788-231cb3fe678d?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "6fa5c61f-3dc6-4503-9468-8f563a8bf7cc" + "6f765e49-b7b8-4e4e-b853-f5528fbf61ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79136c51-0196-48e1-b0d5-1187fc4fe37d?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4bf770-7345-4ead-b788-231cb3fe678d?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2007,10 +2073,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "689ec690-62b0-41b4-95e6-a5697f1daf23" + "cb7e224b-a218-4442-b369-f1ccf666c0c2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135357Z:689ec690-62b0-41b4-95e6-a5697f1daf23" + "FRANCESOUTH:20201108T124230Z:cb7e224b-a218-4442-b369-f1ccf666c0c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2085,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:53:57 GMT" + "Sun, 08 Nov 2020 12:42:30 GMT" ], "Content-Length": [ - "382" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,20 +2097,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\",\r\n \"name\": \"ps6832/ps2922/ps7428/ps5630\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps5630\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\",\r\n \"name\": \"ps3065/ps1109/ps7397/ps4653\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"ps4653\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79136c51-0196-48e1-b0d5-1187fc4fe37d?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzkxMzZjNTEtMDE5Ni00OGUxLWIwZDUtMTE4N2ZjNGZlMzdkP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4bf770-7345-4ead-b788-231cb3fe678d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmM0YmY3NzAtNzM0NS00ZWFkLWI3ODgtMjMxY2IzZmU2NzhkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2055,7 +2121,7 @@ "no-cache" ], "x-ms-request-id": [ - "9aa3e7a8-bf0d-44c6-88e2-99f12b62e0e8" + "a10c36d6-51b4-49f0-bb9a-f1aa11e65381" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2070,13 +2136,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "c1bf3b22-676d-4659-bdb9-7306ed6c0016" + "48e438ef-2566-4fb3-aafa-08803c29a1d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135428Z:c1bf3b22-676d-4659-bdb9-7306ed6c0016" + "FRANCESOUTH:20201108T124301Z:48e438ef-2566-4fb3-aafa-08803c29a1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,10 +2151,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:27 GMT" + "Sun, 08 Nov 2020 12:43:00 GMT" ], "Content-Length": [ - "546" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,20 +2163,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/79136c51-0196-48e1-b0d5-1187fc4fe37d\",\r\n \"name\": \"79136c51-0196-48e1-b0d5-1187fc4fe37d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:53:57.7140806Z\",\r\n \"endTime\": \"2020-09-05T13:54:00.614141Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fc4bf770-7345-4ead-b788-231cb3fe678d\",\r\n \"name\": \"fc4bf770-7345-4ead-b788-231cb3fe678d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:42:30.6427325Z\",\r\n \"endTime\": \"2020-11-08T12:42:33.3390104Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOC9zbmFwc2hvdHMvcHM1NjMwP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTcvc25hcHNob3RzL3BzNDY1Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2121,7 +2187,7 @@ "no-cache" ], "x-ms-request-id": [ - "a9ed5961-7d88-4cc6-9ab1-24357ed7b26e" + "4ff32d30-1e0b-4951-b568-6f8e3fb926c4" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2136,13 +2202,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "6869a0f6-4791-46a3-ac37-d775aecf4457" + "8b7c5d3f-13de-4d7c-8f27-86e578313ded" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135428Z:6869a0f6-4791-46a3-ac37-d775aecf4457" + "FRANCESOUTH:20201108T124301Z:8b7c5d3f-13de-4d7c-8f27-86e578313ded" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,10 +2217,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:28 GMT" + "Sun, 08 Nov 2020 12:43:01 GMT" ], "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2163,26 +2229,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\",\r\n \"name\": \"ps6832/ps2922/ps7428/ps5630\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"d4f44ac4-8507-e9b4-1f3e-3ec1419b89ee\",\r\n \"name\": \"ps5630\",\r\n \"created\": \"2020-09-05T13:53:58Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\",\r\n \"name\": \"ps3065/ps1109/ps7397/ps4653\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"94d8ecdb-14a6-a50d-aa63-ed76f57fdcf0\",\r\n \"name\": \"ps4653\",\r\n \"created\": \"2020-11-08T12:42:31Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOC9zbmFwc2hvdHMvcHM1NjMwP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTcvc25hcHNob3RzL3BzNDY1Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d454047-d1c1-4619-b220-5d3e45975ce1" + "422b50f3-797f-4460-be03-85f9d3272f43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2193,7 +2259,7 @@ "no-cache" ], "x-ms-request-id": [ - "9cebaddd-64f6-4fcb-ba84-aa710c060cf9" + "38867f8d-01fc-47c3-b0fe-dffd7c851524" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2208,13 +2274,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-correlation-request-id": [ - "dd6d0f00-b676-4ba4-81c4-7c55db47e27c" + "8b1e06ca-35da-4545-9d49-d1e2ac0a6a7f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135429Z:dd6d0f00-b676-4ba4-81c4-7c55db47e27c" + "FRANCESOUTH:20201108T124301Z:8b1e06ca-35da-4545-9d49-d1e2ac0a6a7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,10 +2289,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:28 GMT" + "Sun, 08 Nov 2020 12:43:01 GMT" ], "Content-Length": [ - "468" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,26 +2301,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\",\r\n \"name\": \"ps6832/ps2922/ps7428/ps5630\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"d4f44ac4-8507-e9b4-1f3e-3ec1419b89ee\",\r\n \"name\": \"ps5630\",\r\n \"created\": \"2020-09-05T13:53:58Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\",\r\n \"name\": \"ps3065/ps1109/ps7397/ps4653\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"94d8ecdb-14a6-a50d-aa63-ed76f57fdcf0\",\r\n \"name\": \"ps4653\",\r\n \"created\": \"2020-11-08T12:42:31Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOC9zbmFwc2hvdHMvcHM1NjMwP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTcvc25hcHNob3RzL3BzNDY1Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf32455-6756-4be6-a549-62b8dee37e94" + "7b3c7834-d874-43a8-b36f-6e644e1f3602" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2265,13 +2331,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76359626-e0c1-4e8d-a8b1-b3d3f5f689d3?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ae40a345-a031-4fcf-ab6b-0864508831ae?api-version=2020-06-01&operationResultResponseType=Location" ], "x-ms-request-id": [ - "02932492-78b6-471d-994c-30c2c3e743d2" + "4f7cf999-4321-4a78-b2ad-b0ed78aefb8d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76359626-e0c1-4e8d-a8b1-b3d3f5f689d3?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ae40a345-a031-4fcf-ab6b-0864508831ae?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2289,10 +2355,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "d76b3417-6a4d-40c5-9ae5-b9c677a5071b" + "3dd3d5b4-4663-48ef-8eb9-89a094e768ee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135429Z:d76b3417-6a4d-40c5-9ae5-b9c677a5071b" + "FRANCESOUTH:20201108T124302Z:3dd3d5b4-4663-48ef-8eb9-89a094e768ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2301,7 +2367,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:29 GMT" + "Sun, 08 Nov 2020 12:43:02 GMT" ], "Expires": [ "-1" @@ -2314,16 +2380,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76359626-e0c1-4e8d-a8b1-b3d3f5f689d3?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzYzNTk2MjYtZTBjMS00ZThkLWE4YjEtYjNkM2Y1ZjY4OWQzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ae40a345-a031-4fcf-ab6b-0864508831ae?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYWU0MGEzNDUtYTAzMS00ZmNmLWFiNmItMDg2NDUwODgzMWFlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2334,7 +2400,7 @@ "no-cache" ], "x-ms-request-id": [ - "dda7c3b1-2cd4-4621-bf12-c1316eb4fa14" + "d3825b4e-ca39-40e1-81a4-16abda16e526" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2349,13 +2415,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "b2e7a2dd-9111-455f-9614-a5dba7180a4b" + "e41db7e4-9738-4afb-ab19-5b436d73df35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135459Z:b2e7a2dd-9111-455f-9614-a5dba7180a4b" + "FRANCESOUTH:20201108T124332Z:e41db7e4-9738-4afb-ab19-5b436d73df35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,10 +2430,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:58 GMT" + "Sun, 08 Nov 2020 12:43:32 GMT" ], "Content-Length": [ - "547" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2376,20 +2442,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76359626-e0c1-4e8d-a8b1-b3d3f5f689d3\",\r\n \"name\": \"76359626-e0c1-4e8d-a8b1-b3d3f5f689d3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-05T13:54:29.3235047Z\",\r\n \"endTime\": \"2020-09-05T13:54:31.4578801Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ae40a345-a031-4fcf-ab6b-0864508831ae\",\r\n \"name\": \"ae40a345-a031-4fcf-ab6b-0864508831ae\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T12:43:02.2878674Z\",\r\n \"endTime\": \"2020-11-08T12:43:05.4116785Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/providers/Microsoft.NetApp/locations/westcentralus/operationResults/76359626-e0c1-4e8d-a8b1-b3d3f5f689d3?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNzYzNTk2MjYtZTBjMS00ZThkLWE4YjEtYjNkM2Y1ZjY4OWQzP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ae40a345-a031-4fcf-ab6b-0864508831ae?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYWU0MGEzNDUtYTAzMS00ZmNmLWFiNmItMDg2NDUwODgzMWFlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2400,7 +2466,7 @@ "no-cache" ], "x-ms-request-id": [ - "688720c6-6bab-40fa-86af-26dd435a12c3" + "961b1a8d-f41f-4305-add8-bfed46a65ccd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2415,13 +2481,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "af6e65be-053d-4eaf-97fd-e5909332f641" + "e2f161c8-3e86-432e-adb9-8a3dc963320f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135459Z:af6e65be-053d-4eaf-97fd-e5909332f641" + "FRANCESOUTH:20201108T124332Z:e2f161c8-3e86-432e-adb9-8a3dc963320f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,10 +2496,10 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:58 GMT" + "Sun, 08 Nov 2020 12:43:32 GMT" ], "Content-Length": [ - "320" + "321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2442,26 +2508,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots/ps5630\",\r\n \"name\": \"ps6832/ps2922/ps7428/ps5630\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots/ps4653\",\r\n \"name\": \"ps3065/ps1109/ps7397/ps4653\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westcentralus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.NetApp/netAppAccounts/ps6832/capacityPools/ps2922/volumes/ps7428/snapshots?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlR3JvdXBzL3BzODc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL25ldEFwcEFjY291bnRzL3BzNjgzMi9jYXBhY2l0eVBvb2xzL3BzMjkyMi92b2x1bWVzL3BzNzQyOC9zbmFwc2hvdHM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7660/providers/Microsoft.NetApp/netAppAccounts/ps3065/capacityPools/ps1109/volumes/ps7397/snapshots?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzY2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczMwNjUvY2FwYWNpdHlQb29scy9wczExMDkvdm9sdW1lcy9wczczOTcvc25hcHNob3RzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45256722-e45a-4b23-ac89-a03de2064a97" + "e6e3d0ea-8d3e-4f9d-9610-3c92f13cef97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2472,7 +2538,7 @@ "no-cache" ], "x-ms-request-id": [ - "49741c9a-4775-467d-848a-15eba68ea90a" + "eeda73a9-76de-4ea1-9470-28168499cd76" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2487,13 +2553,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "7e8de1ed-b442-4e59-942c-cc24116bdf9e" + "144eaad8-7dee-42ef-a909-326ff872365a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135500Z:7e8de1ed-b442-4e59-942c-cc24116bdf9e" + "FRANCESOUTH:20201108T124333Z:144eaad8-7dee-42ef-a909-326ff872365a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2502,7 +2568,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:54:59 GMT" + "Sun, 08 Nov 2020 12:43:33 GMT" ], "Content-Length": [ "12" @@ -2518,22 +2584,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourcegroups/ps877?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL3Jlc291cmNlZ3JvdXBzL3BzODc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7660?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzY2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11cecb6c-e7c2-447f-8a7a-e9ef368b9c9e" + "f565c695-c560-48a5-9f43-77e7fc40b584" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2544,7 +2610,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2553,13 +2619,13 @@ "14999" ], "x-ms-request-id": [ - "6e411b7a-911e-415f-9e7d-bd66cc707050" + "8d06d00f-59c5-45c2-a695-d40cd2f3b1f6" ], "x-ms-correlation-request-id": [ - "6e411b7a-911e-415f-9e7d-bd66cc707050" + "8d06d00f-59c5-45c2-a695-d40cd2f3b1f6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135503Z:6e411b7a-911e-415f-9e7d-bd66cc707050" + "FRANCESOUTH:20201108T124338Z:8d06d00f-59c5-45c2-a695-d40cd2f3b1f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2568,7 +2634,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:55:03 GMT" + "Sun, 08 Nov 2020 12:43:38 GMT" ], "Expires": [ "-1" @@ -2581,16 +2647,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2601,7 +2667,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2610,13 +2676,13 @@ "11999" ], "x-ms-request-id": [ - "3338c1c5-6cd2-41e0-a9e5-8cb89497a1a1" + "06eede11-c0bb-4b00-b30b-05d8408c7539" ], "x-ms-correlation-request-id": [ - "3338c1c5-6cd2-41e0-a9e5-8cb89497a1a1" + "06eede11-c0bb-4b00-b30b-05d8408c7539" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135519Z:3338c1c5-6cd2-41e0-a9e5-8cb89497a1a1" + "FRANCESOUTH:20201108T124354Z:06eede11-c0bb-4b00-b30b-05d8408c7539" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,7 +2691,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:55:18 GMT" + "Sun, 08 Nov 2020 12:43:54 GMT" ], "Expires": [ "-1" @@ -2638,16 +2704,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2658,7 +2724,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2667,13 +2733,13 @@ "11998" ], "x-ms-request-id": [ - "c89eaf01-04cb-4995-9529-890a84da5212" + "0aeba518-947a-4403-bae1-0ba89ff0b309" ], "x-ms-correlation-request-id": [ - "c89eaf01-04cb-4995-9529-890a84da5212" + "0aeba518-947a-4403-bae1-0ba89ff0b309" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135534Z:c89eaf01-04cb-4995-9529-890a84da5212" + "FRANCESOUTH:20201108T124409Z:0aeba518-947a-4403-bae1-0ba89ff0b309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2682,7 +2748,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:55:33 GMT" + "Sun, 08 Nov 2020 12:44:08 GMT" ], "Expires": [ "-1" @@ -2695,16 +2761,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2715,7 +2781,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2724,13 +2790,13 @@ "11997" ], "x-ms-request-id": [ - "c4cf867f-9640-41b1-ac1d-54bf21ba29f7" + "73abde71-9499-47a1-ad84-ea1619bc177c" ], "x-ms-correlation-request-id": [ - "c4cf867f-9640-41b1-ac1d-54bf21ba29f7" + "73abde71-9499-47a1-ad84-ea1619bc177c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135549Z:c4cf867f-9640-41b1-ac1d-54bf21ba29f7" + "FRANCESOUTH:20201108T124424Z:73abde71-9499-47a1-ad84-ea1619bc177c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,7 +2805,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:55:49 GMT" + "Sun, 08 Nov 2020 12:44:23 GMT" ], "Expires": [ "-1" @@ -2752,16 +2818,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2772,7 +2838,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2781,13 +2847,13 @@ "11996" ], "x-ms-request-id": [ - "eb1e550b-0c59-43d5-aa96-358e02920147" + "afcff2e8-44a2-40ab-84f3-eead62e87b54" ], "x-ms-correlation-request-id": [ - "eb1e550b-0c59-43d5-aa96-358e02920147" + "afcff2e8-44a2-40ab-84f3-eead62e87b54" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135604Z:eb1e550b-0c59-43d5-aa96-358e02920147" + "FRANCESOUTH:20201108T124440Z:afcff2e8-44a2-40ab-84f3-eead62e87b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2796,7 +2862,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:56:04 GMT" + "Sun, 08 Nov 2020 12:44:39 GMT" ], "Expires": [ "-1" @@ -2809,16 +2875,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2829,7 +2895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2838,13 +2904,13 @@ "11995" ], "x-ms-request-id": [ - "72d32caf-7c2c-439e-baad-b2f44affa7d9" + "147e4fb6-624e-474e-8eb2-1f775ff300e3" ], "x-ms-correlation-request-id": [ - "72d32caf-7c2c-439e-baad-b2f44affa7d9" + "147e4fb6-624e-474e-8eb2-1f775ff300e3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135620Z:72d32caf-7c2c-439e-baad-b2f44affa7d9" + "FRANCESOUTH:20201108T124455Z:147e4fb6-624e-474e-8eb2-1f775ff300e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2853,7 +2919,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:56:19 GMT" + "Sun, 08 Nov 2020 12:44:54 GMT" ], "Expires": [ "-1" @@ -2866,16 +2932,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2886,7 +2952,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2895,13 +2961,13 @@ "11994" ], "x-ms-request-id": [ - "6e6d86b8-aef0-453c-812d-5d2154d6910f" + "a427a13f-5eba-4b0f-af7a-8e9a97ca6de8" ], "x-ms-correlation-request-id": [ - "6e6d86b8-aef0-453c-812d-5d2154d6910f" + "a427a13f-5eba-4b0f-af7a-8e9a97ca6de8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135635Z:6e6d86b8-aef0-453c-812d-5d2154d6910f" + "FRANCESOUTH:20201108T124510Z:a427a13f-5eba-4b0f-af7a-8e9a97ca6de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2910,7 +2976,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:56:34 GMT" + "Sun, 08 Nov 2020 12:45:10 GMT" ], "Expires": [ "-1" @@ -2923,16 +2989,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2943,7 +3009,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2952,13 +3018,13 @@ "11993" ], "x-ms-request-id": [ - "467baece-9a50-43d1-b4a1-28af557e4f89" + "4e65e0c0-743d-41d2-8a26-9fad75d90103" ], "x-ms-correlation-request-id": [ - "467baece-9a50-43d1-b4a1-28af557e4f89" + "4e65e0c0-743d-41d2-8a26-9fad75d90103" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135650Z:467baece-9a50-43d1-b4a1-28af557e4f89" + "FRANCESOUTH:20201108T124526Z:4e65e0c0-743d-41d2-8a26-9fad75d90103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2967,7 +3033,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:56:50 GMT" + "Sun, 08 Nov 2020 12:45:25 GMT" ], "Expires": [ "-1" @@ -2980,16 +3046,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3000,7 +3066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3009,13 +3075,13 @@ "11992" ], "x-ms-request-id": [ - "3698695e-8cbf-4de1-8213-8b25ab423b2a" + "9bbf3f06-e69e-4cd0-938a-4bd692521cc6" ], "x-ms-correlation-request-id": [ - "3698695e-8cbf-4de1-8213-8b25ab423b2a" + "9bbf3f06-e69e-4cd0-938a-4bd692521cc6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135705Z:3698695e-8cbf-4de1-8213-8b25ab423b2a" + "FRANCESOUTH:20201108T124541Z:9bbf3f06-e69e-4cd0-938a-4bd692521cc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3024,7 +3090,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:57:05 GMT" + "Sun, 08 Nov 2020 12:45:40 GMT" ], "Expires": [ "-1" @@ -3037,16 +3103,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3057,7 +3123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3066,13 +3132,13 @@ "11991" ], "x-ms-request-id": [ - "7fb06ec5-4a0d-4e91-879e-a8a1b0ad8ac5" + "fa7bef73-da1c-42d3-aeb2-c89a38dd4fed" ], "x-ms-correlation-request-id": [ - "7fb06ec5-4a0d-4e91-879e-a8a1b0ad8ac5" + "fa7bef73-da1c-42d3-aeb2-c89a38dd4fed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135721Z:7fb06ec5-4a0d-4e91-879e-a8a1b0ad8ac5" + "FRANCESOUTH:20201108T124556Z:fa7bef73-da1c-42d3-aeb2-c89a38dd4fed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3081,7 +3147,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:57:20 GMT" + "Sun, 08 Nov 2020 12:45:56 GMT" ], "Expires": [ "-1" @@ -3094,16 +3160,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3114,7 +3180,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3123,13 +3189,13 @@ "11990" ], "x-ms-request-id": [ - "52f7d96e-e7d3-4857-be5d-1dbbd25c3bc0" + "8554b844-8cca-4d55-9d9a-d2924b8f1436" ], "x-ms-correlation-request-id": [ - "52f7d96e-e7d3-4857-be5d-1dbbd25c3bc0" + "8554b844-8cca-4d55-9d9a-d2924b8f1436" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135736Z:52f7d96e-e7d3-4857-be5d-1dbbd25c3bc0" + "FRANCESOUTH:20201108T124612Z:8554b844-8cca-4d55-9d9a-d2924b8f1436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3138,7 +3204,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:57:35 GMT" + "Sun, 08 Nov 2020 12:46:11 GMT" ], "Expires": [ "-1" @@ -3151,16 +3217,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3171,7 +3237,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3180,13 +3246,13 @@ "11989" ], "x-ms-request-id": [ - "5700e2be-7f6a-4095-bc90-057c0aa84c9f" + "6a6391e1-7140-4ec3-ac14-118338bcebf9" ], "x-ms-correlation-request-id": [ - "5700e2be-7f6a-4095-bc90-057c0aa84c9f" + "6a6391e1-7140-4ec3-ac14-118338bcebf9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135751Z:5700e2be-7f6a-4095-bc90-057c0aa84c9f" + "FRANCESOUTH:20201108T124627Z:6a6391e1-7140-4ec3-ac14-118338bcebf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3195,7 +3261,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:57:51 GMT" + "Sun, 08 Nov 2020 12:46:27 GMT" ], "Expires": [ "-1" @@ -3208,16 +3274,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3228,7 +3294,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3237,13 +3303,13 @@ "11988" ], "x-ms-request-id": [ - "dfb5d62e-37d9-460b-859c-3ceb810692c8" + "1692b147-1705-49d3-a2b3-a7b4b83f9e53" ], "x-ms-correlation-request-id": [ - "dfb5d62e-37d9-460b-859c-3ceb810692c8" + "1692b147-1705-49d3-a2b3-a7b4b83f9e53" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135807Z:dfb5d62e-37d9-460b-859c-3ceb810692c8" + "FRANCESOUTH:20201108T124642Z:1692b147-1705-49d3-a2b3-a7b4b83f9e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3252,7 +3318,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:58:06 GMT" + "Sun, 08 Nov 2020 12:46:42 GMT" ], "Expires": [ "-1" @@ -3265,16 +3331,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3285,7 +3351,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3294,13 +3360,13 @@ "11987" ], "x-ms-request-id": [ - "3d3baa5b-4a1f-4dd9-92bb-f196ed588964" + "02b9373f-5e04-47a6-9665-b5dc4ee840ed" ], "x-ms-correlation-request-id": [ - "3d3baa5b-4a1f-4dd9-92bb-f196ed588964" + "02b9373f-5e04-47a6-9665-b5dc4ee840ed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135822Z:3d3baa5b-4a1f-4dd9-92bb-f196ed588964" + "FRANCESOUTH:20201108T124658Z:02b9373f-5e04-47a6-9665-b5dc4ee840ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3309,7 +3375,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:58:21 GMT" + "Sun, 08 Nov 2020 12:46:57 GMT" ], "Expires": [ "-1" @@ -3322,16 +3388,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3342,7 +3408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3351,13 +3417,13 @@ "11986" ], "x-ms-request-id": [ - "6def68f5-9a77-4ad6-9fd3-a86cc44a1398" + "f927c636-2cd5-424f-8991-fb4251223b93" ], "x-ms-correlation-request-id": [ - "6def68f5-9a77-4ad6-9fd3-a86cc44a1398" + "f927c636-2cd5-424f-8991-fb4251223b93" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135837Z:6def68f5-9a77-4ad6-9fd3-a86cc44a1398" + "FRANCESOUTH:20201108T124713Z:f927c636-2cd5-424f-8991-fb4251223b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3366,7 +3432,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:58:37 GMT" + "Sun, 08 Nov 2020 12:47:12 GMT" ], "Expires": [ "-1" @@ -3379,16 +3445,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3399,7 +3465,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3408,13 +3474,13 @@ "11985" ], "x-ms-request-id": [ - "a60a67ff-c554-4d74-99e3-b2768d2f3cf9" + "fc68bd4d-a786-43c7-bddb-a33f18b213c6" ], "x-ms-correlation-request-id": [ - "a60a67ff-c554-4d74-99e3-b2768d2f3cf9" + "fc68bd4d-a786-43c7-bddb-a33f18b213c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135852Z:a60a67ff-c554-4d74-99e3-b2768d2f3cf9" + "FRANCESOUTH:20201108T124728Z:fc68bd4d-a786-43c7-bddb-a33f18b213c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3423,7 +3489,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:58:52 GMT" + "Sun, 08 Nov 2020 12:47:28 GMT" ], "Expires": [ "-1" @@ -3436,16 +3502,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3456,7 +3522,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3465,13 +3531,13 @@ "11984" ], "x-ms-request-id": [ - "a9c7fbbd-f0f2-498b-b000-de8b3213e5c5" + "8dd4f8d6-03d6-402d-bb8d-0aad227d60a6" ], "x-ms-correlation-request-id": [ - "a9c7fbbd-f0f2-498b-b000-de8b3213e5c5" + "8dd4f8d6-03d6-402d-bb8d-0aad227d60a6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135908Z:a9c7fbbd-f0f2-498b-b000-de8b3213e5c5" + "FRANCESOUTH:20201108T124744Z:8dd4f8d6-03d6-402d-bb8d-0aad227d60a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3480,7 +3546,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:59:07 GMT" + "Sun, 08 Nov 2020 12:47:43 GMT" ], "Expires": [ "-1" @@ -3493,16 +3559,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3513,7 +3579,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3522,13 +3588,13 @@ "11983" ], "x-ms-request-id": [ - "55cc3b0f-acae-40f0-914a-cda06d40927e" + "d6447720-80bb-499e-b7e4-54d6708fcd3c" ], "x-ms-correlation-request-id": [ - "55cc3b0f-acae-40f0-914a-cda06d40927e" + "d6447720-80bb-499e-b7e4-54d6708fcd3c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135923Z:55cc3b0f-acae-40f0-914a-cda06d40927e" + "FRANCESOUTH:20201108T124759Z:d6447720-80bb-499e-b7e4-54d6708fcd3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3537,7 +3603,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:59:23 GMT" + "Sun, 08 Nov 2020 12:47:59 GMT" ], "Expires": [ "-1" @@ -3550,16 +3616,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3570,7 +3636,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3579,13 +3645,13 @@ "11982" ], "x-ms-request-id": [ - "e461ec68-2282-44ef-abdb-053c60448f97" + "a7d6eb03-b046-44c3-b939-c496aa5c6ae0" ], "x-ms-correlation-request-id": [ - "e461ec68-2282-44ef-abdb-053c60448f97" + "a7d6eb03-b046-44c3-b939-c496aa5c6ae0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135938Z:e461ec68-2282-44ef-abdb-053c60448f97" + "FRANCESOUTH:20201108T124814Z:a7d6eb03-b046-44c3-b939-c496aa5c6ae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3660,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:59:38 GMT" + "Sun, 08 Nov 2020 12:48:14 GMT" ], "Expires": [ "-1" @@ -3607,16 +3673,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3627,7 +3693,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3636,13 +3702,13 @@ "11981" ], "x-ms-request-id": [ - "b2846c13-3e3a-44dd-bf27-970c23a478ba" + "14a67524-1e5a-4fac-a7ac-f7d7fea7672a" ], "x-ms-correlation-request-id": [ - "b2846c13-3e3a-44dd-bf27-970c23a478ba" + "14a67524-1e5a-4fac-a7ac-f7d7fea7672a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T135954Z:b2846c13-3e3a-44dd-bf27-970c23a478ba" + "FRANCESOUTH:20201108T124830Z:14a67524-1e5a-4fac-a7ac-f7d7fea7672a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3651,7 +3717,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 13:59:53 GMT" + "Sun, 08 Nov 2020 12:48:30 GMT" ], "Expires": [ "-1" @@ -3664,16 +3730,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3684,7 +3750,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3693,13 +3759,13 @@ "11980" ], "x-ms-request-id": [ - "8dc99f68-2cfc-4c4f-af7a-c14eaa746a03" + "d3a273c2-7256-4d95-bd66-59f5a64d3fa0" ], "x-ms-correlation-request-id": [ - "8dc99f68-2cfc-4c4f-af7a-c14eaa746a03" + "d3a273c2-7256-4d95-bd66-59f5a64d3fa0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140009Z:8dc99f68-2cfc-4c4f-af7a-c14eaa746a03" + "FRANCESOUTH:20201108T124846Z:d3a273c2-7256-4d95-bd66-59f5a64d3fa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3708,7 +3774,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:00:08 GMT" + "Sun, 08 Nov 2020 12:48:45 GMT" ], "Expires": [ "-1" @@ -3721,16 +3787,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3741,7 +3807,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3750,13 +3816,13 @@ "11979" ], "x-ms-request-id": [ - "61b7a3ad-516c-494d-b140-9315259525f3" + "9991cf69-7c84-49a0-924d-424c97d1d831" ], "x-ms-correlation-request-id": [ - "61b7a3ad-516c-494d-b140-9315259525f3" + "9991cf69-7c84-49a0-924d-424c97d1d831" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140024Z:61b7a3ad-516c-494d-b140-9315259525f3" + "FRANCESOUTH:20201108T124901Z:9991cf69-7c84-49a0-924d-424c97d1d831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3765,7 +3831,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:00:24 GMT" + "Sun, 08 Nov 2020 12:49:00 GMT" ], "Expires": [ "-1" @@ -3778,16 +3844,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3798,7 +3864,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3807,13 +3873,13 @@ "11978" ], "x-ms-request-id": [ - "41537105-d6b5-46a6-afe6-ea912d67105d" + "d6e32bf6-fb57-424b-9e38-4c5538ef527c" ], "x-ms-correlation-request-id": [ - "41537105-d6b5-46a6-afe6-ea912d67105d" + "d6e32bf6-fb57-424b-9e38-4c5538ef527c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140040Z:41537105-d6b5-46a6-afe6-ea912d67105d" + "FRANCESOUTH:20201108T124916Z:d6e32bf6-fb57-424b-9e38-4c5538ef527c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3822,7 +3888,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:00:39 GMT" + "Sun, 08 Nov 2020 12:49:16 GMT" ], "Expires": [ "-1" @@ -3835,16 +3901,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3855,7 +3921,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3864,13 +3930,13 @@ "11977" ], "x-ms-request-id": [ - "9e5179ab-c11d-4d05-a1fd-7f8f09a9bc5a" + "86929d14-ce22-475a-8423-815e2cbaeab8" ], "x-ms-correlation-request-id": [ - "9e5179ab-c11d-4d05-a1fd-7f8f09a9bc5a" + "86929d14-ce22-475a-8423-815e2cbaeab8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140055Z:9e5179ab-c11d-4d05-a1fd-7f8f09a9bc5a" + "FRANCESOUTH:20201108T124932Z:86929d14-ce22-475a-8423-815e2cbaeab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3879,7 +3945,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:00:54 GMT" + "Sun, 08 Nov 2020 12:49:32 GMT" ], "Expires": [ "-1" @@ -3892,16 +3958,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3912,7 +3978,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3921,13 +3987,13 @@ "11976" ], "x-ms-request-id": [ - "8cca6b37-4e59-4f29-b765-4e314e809a5e" + "76c9201f-1d13-41d7-b94c-f50fd4ad89d0" ], "x-ms-correlation-request-id": [ - "8cca6b37-4e59-4f29-b765-4e314e809a5e" + "76c9201f-1d13-41d7-b94c-f50fd4ad89d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140110Z:8cca6b37-4e59-4f29-b765-4e314e809a5e" + "FRANCESOUTH:20201108T124947Z:76c9201f-1d13-41d7-b94c-f50fd4ad89d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3936,7 +4002,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:01:09 GMT" + "Sun, 08 Nov 2020 12:49:46 GMT" ], "Expires": [ "-1" @@ -3949,16 +4015,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3969,7 +4035,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3978,13 +4044,13 @@ "11975" ], "x-ms-request-id": [ - "d2798f66-7ec9-47de-852f-978c75defa7b" + "4925632c-e1f2-4d26-ae9c-ffbd568eda99" ], "x-ms-correlation-request-id": [ - "d2798f66-7ec9-47de-852f-978c75defa7b" + "4925632c-e1f2-4d26-ae9c-ffbd568eda99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140125Z:d2798f66-7ec9-47de-852f-978c75defa7b" + "FRANCESOUTH:20201108T125002Z:4925632c-e1f2-4d26-ae9c-ffbd568eda99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3993,7 +4059,7 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:01:25 GMT" + "Sun, 08 Nov 2020 12:50:02 GMT" ], "Expires": [ "-1" @@ -4006,16 +4072,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDY2MUIxMzEtNEExMS00NzlCLTk2QkYtMkY5NUFDQ0EyRjczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM055MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4025,17 +4091,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "x-ms-request-id": [ - "165301b9-457e-4646-88fa-34766b013c63" + "f73c63eb-572b-4a1a-8be7-ca75d785d968" ], "x-ms-correlation-request-id": [ - "165301b9-457e-4646-88fa-34766b013c63" + "f73c63eb-572b-4a1a-8be7-ca75d785d968" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200905T140141Z:165301b9-457e-4646-88fa-34766b013c63" + "FRANCESOUTH:20201108T125018Z:f73c63eb-572b-4a1a-8be7-ca75d785d968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4044,33 +4116,303 @@ "nosniff" ], "Date": [ - "Sat, 05 Sep 2020 14:01:40 GMT" + "Sun, 08 Nov 2020 12:50:17 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "87562f87-abe3-4f71-9e94-d5381add40e1" + ], + "x-ms-correlation-request-id": [ + "87562f87-abe3-4f71-9e94-d5381add40e1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T125033Z:87562f87-abe3-4f71-9e94-d5381add40e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:50:32 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "1652" + "0" ] }, - "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionBlocked\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'ps877' failed as resources with identifiers 'Microsoft.Network/networkInterfaces/anf-ps877-vnet-nic-MUHL98,Microsoft.Network/virtualNetworks/ps877-vnet' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is '6e411b7a-911e-415f-9e7d-bd66cc707050'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/networkInterfaces/anf-ps877-vnet-nic-MUHL98\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"OperationNotPermittedOnNicCreatedByDifferentOwner\\\",\\\"message\\\":\\\"Network Interface /subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/networkInterfaces/anf-ps877-vnet-nic-MUHL98 was created by Microsoft.Netapp and can be modified only by the creator.\\\",\\\"details\\\":[]}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n },\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/0661B131-4A11-479B-96BF-2F95ACCA2F73/resourceGroups/ps877/providers/Microsoft.Network/virtualNetworks/ps877-vnet\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"InUseSubnetCannotBeDeleted\\\",\\\"message\\\":\\\"Subnet default is in use by /subscriptions/0661b131-4a11-479b-96bf-2f95acca2f73/resourceGroups/ps877/providers/Microsoft.Network/networkInterfaces/anf-ps877-vnet-nic-MUHL98/ipConfigurations/ipconfig1 and cannot be deleted. In order to delete the subnet, delete all the resources within the subnet. See aka.ms/deletesubnet.\\\",\\\"details\\\":[]}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", - "StatusCode": 409 + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "a2ca7878-be61-42ea-bad7-1d4aceb3be75" + ], + "x-ms-correlation-request-id": [ + "a2ca7878-be61-42ea-bad7-1d4aceb3be75" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T125048Z:a2ca7878-be61-42ea-bad7-1d4aceb3be75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:50:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "9adc586c-b912-4e98-9b58-ae16949ce06d" + ], + "x-ms-correlation-request-id": [ + "9adc586c-b912-4e98-9b58-ae16949ce06d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T125104Z:9adc586c-b912-4e98-9b58-ae16949ce06d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:51:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "0e0d638c-bb0f-4cd2-a2ff-1eceb710d71d" + ], + "x-ms-correlation-request-id": [ + "0e0d638c-bb0f-4cd2-a2ff-1eceb710d71d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T125119Z:0e0d638c-bb0f-4cd2-a2ff-1eceb710d71d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:51:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2NjAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk5qQXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "86da2961-b770-4344-802f-efb12a3c49b9" + ], + "x-ms-correlation-request-id": [ + "86da2961-b770-4344-802f-efb12a3c49b9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T125119Z:86da2961-b770-4344-802f-efb12a3c49b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 12:51:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 } ], "Names": { "Test-SnapshotPipelines": [ - "ps877", - "ps6832", - "ps2922", - "ps7428", - "ps5630", - "ps9617" + "ps7660", + "ps3065", + "ps1109", + "ps7397", + "ps4653", + "ps6521" ] }, "Variables": { - "SubscriptionId": "0661B131-4A11-479B-96BF-2F95ACCA2F73" + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" } } \ No newline at end of file From 1b81e0ee1f57ecff557e9bab7ea166f85da44508 Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 8 Nov 2020 16:27:48 +0000 Subject: [PATCH 20/22] update rec --- .../TestVolumePipelines.json | 1458 ++++++++++------- 1 file changed, 825 insertions(+), 633 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json index 27e2f05afd66..f93f7d85d74c 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json @@ -1,28 +1,28 @@ -{ +{ "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7130?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzEzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5819?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTgxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e1626a2-3154-4e31-99ad-25cc9228fd5f" + "6bd3b03e-06bf-49c8-980f-167d3e8043a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2e9241c2-1a6c-482d-aa95-3954fa734773" + "c33c60f2-6a41-4831-b3e1-be4c10cae24e" ], "x-ms-correlation-request-id": [ - "2e9241c2-1a6c-482d-aa95-3954fa734773" + "c33c60f2-6a41-4831-b3e1-be4c10cae24e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143605Z:2e9241c2-1a6c-482d-aa95-3954fa734773" + "FRANCESOUTH:20201108T161324Z:c33c60f2-6a41-4831-b3e1-be4c10cae24e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:04 GMT" + "Sun, 08 Nov 2020 16:13:24 GMT" ], "Content-Length": [ - "166" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130\",\r\n \"name\": \"ps7130\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819\",\r\n \"name\": \"ps5819\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42b28b95-a77b-4b08-b5ba-60139db73f94" + "e33c9b3c-62be-4ff3-9b4c-3113cca2cb50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "1ae06b8a-ec74-41e9-8462-55ef588ffd43" + "6be60fef-4e28-4c81-8032-1153242c03e0" ], "x-ms-correlation-request-id": [ - "1ae06b8a-ec74-41e9-8462-55ef588ffd43" + "6be60fef-4e28-4c81-8032-1153242c03e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143606Z:1ae06b8a-ec74-41e9-8462-55ef588ffd43" + "FRANCESOUTH:20201108T161325Z:6be60fef-4e28-4c81-8032-1153242c03e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:05 GMT" + "Sun, 08 Nov 2020 16:13:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,20 +123,20 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7130-vnet' under resource group 'ps7130' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5819-vnet' under resource group 'ps5819' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"30d4d398-3851-45df-ae8b-82f01f11f1eb\"" + "W/\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\"" ], "x-ms-request-id": [ - "417f8835-6069-47a0-9298-4671953c0eb9" + "67f87d0a-eec5-47cb-8dbd-ec539847bf63" ], "x-ms-correlation-request-id": [ - "46547ebc-1dbb-4649-b97f-7acef7e03864" + "2a0649a9-d79a-4cf8-a453-2303f5d2f609" ], "x-ms-arm-service-request-id": [ - "12dd0392-1efe-4913-b011-1c48d8ab4931" + "cc4ef0df-4a66-4e03-8ba8-26efcde785a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,16 +169,16 @@ "11997" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143618Z:46547ebc-1dbb-4649-b97f-7acef7e03864" + "FRANCESOUTH:20201108T161338Z:2a0649a9-d79a-4cf8-a453-2303f5d2f609" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:17 GMT" + "Sun, 08 Nov 2020 16:13:37 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"30d4d398-3851-45df-ae8b-82f01f11f1eb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d061ae1e-a1d7-41cb-b9e6-ffc27b2d9a56" + "d2ad5ce8-94eb-48d2-b022-bda62195b3de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"30d4d398-3851-45df-ae8b-82f01f11f1eb\"" + "W/\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\"" ], "x-ms-request-id": [ - "82195008-4252-47c8-88f0-b0f9ca888b3a" + "c7cab930-c3af-43a9-bb96-a26540a12ff3" ], "x-ms-correlation-request-id": [ - "0054e2e6-5882-41a7-8af2-2bbab48a3db9" + "0cfd288a-be3e-4a84-a9ee-5cf24f600fd9" ], "x-ms-arm-service-request-id": [ - "350b8659-5329-44ef-8ebe-663db1aa41c7" + "04a57a98-aa4e-461d-9b29-da04c0d2ec9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,16 +239,16 @@ "11996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143618Z:0054e2e6-5882-41a7-8af2-2bbab48a3db9" + "FRANCESOUTH:20201108T161338Z:0cfd288a-be3e-4a84-a9ee-5cf24f600fd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:18 GMT" + "Sun, 08 Nov 2020 16:13:38 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"30d4d398-3851-45df-ae8b-82f01f11f1eb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "065336bb-4cc0-497d-96e8-e940d71703dd" + "06b841a4-485f-4c37-bf20-a310342bd831" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"30d4d398-3851-45df-ae8b-82f01f11f1eb\"" + "W/\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\"" ], "x-ms-request-id": [ - "18c7b2b0-51a8-46e2-a585-56f2cf296b0f" + "7368864d-701c-4ef9-bcd0-7a331fe78798" ], "x-ms-correlation-request-id": [ - "b41570e6-055a-4031-ac5a-fa7f0ad61378" + "a294ba90-6ba1-4186-9cbc-efe4c370879b" ], "x-ms-arm-service-request-id": [ - "e48f1547-5b62-458c-ae55-2a6855497e3c" + "ffcf3b80-6bc7-4e7d-abd8-7dc078160851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +309,16 @@ "11995" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143618Z:b41570e6-055a-4031-ac5a-fa7f0ad61378" + "FRANCESOUTH:20201108T161338Z:a294ba90-6ba1-4186-9cbc-efe4c370879b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:18 GMT" + "Sun, 08 Nov 2020 16:13:38 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"30d4d398-3851-45df-ae8b-82f01f11f1eb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"761bd16a-3de1-4cd0-bd0f-fb3e935c95f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"1f506ee7-5e83-4394-86e5-672b26719db8\"" + "W/\"7444071f-e455-4d41-ade2-b4c5cf65aec2\"" ], "x-ms-request-id": [ - "4c2309ef-4b86-47ed-8450-611fa1a9a34a" + "9293d333-640a-47e2-a953-8bbd7c31fe4b" ], "x-ms-correlation-request-id": [ - "767b1c23-8e5f-417a-966c-044e8804f470" + "f2f833c5-6dcd-4bcc-a675-b3d0efdc9d9b" ], "x-ms-arm-service-request-id": [ - "74ed9ffb-17f6-42a7-b90b-3391f7515302" + "7482ea15-5f66-4b19-8126-068a097abc69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,16 +373,16 @@ "11993" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143623Z:767b1c23-8e5f-417a-966c-044e8804f470" + "FRANCESOUTH:20201108T161343Z:f2f833c5-6dcd-4bcc-a675-b3d0efdc9d9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:22 GMT" + "Sun, 08 Nov 2020 16:13:42 GMT" ], "Content-Length": [ - "2151" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4dcc148-baa8-4e48-9d19-86f13bd68248" + "be51d155-64b1-4ca5-8da7-b08175169a53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"1f506ee7-5e83-4394-86e5-672b26719db8\"" + "W/\"7444071f-e455-4d41-ade2-b4c5cf65aec2\"" ], "x-ms-request-id": [ - "dddc7483-f133-4a74-8bda-33b21d6b882f" + "34cafe77-6902-466d-8a09-f8386fb95dc1" ], "x-ms-correlation-request-id": [ - "3b1b5076-622a-455d-a925-db57a69575d4" + "f5c9c116-5980-4bf5-a22c-e9098507cb9f" ], "x-ms-arm-service-request-id": [ - "9db92938-bf25-4e14-b8a5-c6020709ea62" + "f66da5bd-98b4-4cba-81e7-7a2aebc72043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,16 +443,16 @@ "11992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143623Z:3b1b5076-622a-455d-a925-db57a69575d4" + "FRANCESOUTH:20201108T161343Z:f5c9c116-5980-4bf5-a22c-e9098507cb9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:22 GMT" + "Sun, 08 Nov 2020 16:13:43 GMT" ], "Content-Length": [ - "2151" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -461,32 +461,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1f506ee7-5e83-4394-86e5-672b26719db8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"7444071f-e455-4d41-ade2-b4c5cf65aec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a780be40-a2ee-4c20-9f85-fd2147e8a575" + "4678b9ce-6091-48a7-9396-62772dd86392" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "261" + "267" ] }, "ResponseHeaders": { @@ -500,41 +500,38 @@ "3" ], "x-ms-request-id": [ - "df59d625-bbeb-4487-b342-db5666bc507a" + "7964b797-47ce-4fc2-a304-69b5aed5b110" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/df59d625-bbeb-4487-b342-db5666bc507a?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7964b797-47ce-4fc2-a304-69b5aed5b110?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "af696a79-5b8b-435d-a631-1a844fe81bcc" - ], - "Azure-AsyncNotification": [ - "Enabled" + "5fbba4b7-f970-47da-b9f1-f27f7d9d6fad" ], "x-ms-arm-service-request-id": [ - "bc477f72-1fb2-496a-89f7-0b284546ac80" + "41f518c0-4579-4125-ac69-1e7fa68b9dd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143614Z:af696a79-5b8b-435d-a631-1a844fe81bcc" + "FRANCESOUTH:20201108T161334Z:5fbba4b7-f970-47da-b9f1-f27f7d9d6fad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:13 GMT" + "Sun, 08 Nov 2020 16:13:34 GMT" ], "Content-Length": [ - "641" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,32 +540,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"ebb84462-f710-40a1-83ea-6bdec0741c3a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"3cdb34b8-e7e4-4d16-aad3-7663239268e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzEzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTgxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "966514c9-5c3e-46b2-bdcf-4ea727078c4f" + "85efe629-a28a-45cf-90a1-644e3e3b2bac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1064" + "1070" ] }, "ResponseHeaders": { @@ -582,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "05e8234c-2b11-4aca-b275-efc56dc16283" + "11a79d29-0e67-4da1-b718-90e87763e36c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/05e8234c-2b11-4aca-b275-efc56dc16283?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/11a79d29-0e67-4da1-b718-90e87763e36c?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "5edf90a1-8671-4ac3-9198-fa27e552886f" + "0316db9c-d3b2-4336-b3ed-4c9efcdf06d3" ], "x-ms-arm-service-request-id": [ - "c52857aa-a78e-498e-86c6-a30982e1c26a" + "61fd9d9a-57d4-47cf-b68f-a952b46c6b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -604,16 +601,16 @@ "1198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143619Z:5edf90a1-8671-4ac3-9198-fa27e552886f" + "FRANCESOUTH:20201108T161339Z:0316db9c-d3b2-4336-b3ed-4c9efcdf06d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:19 GMT" + "Sun, 08 Nov 2020 16:13:39 GMT" ], "Content-Length": [ - "2149" + "2155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -622,20 +619,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7130-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet\",\r\n \"etag\": \"W/\\\"ac5a543a-1073-4da0-bdc5-6581fe37e0de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"718e242e-3b5a-4cd6-867e-22cf86390145\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ac5a543a-1073-4da0-bdc5-6581fe37e0de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ac5a543a-1073-4da0-bdc5-6581fe37e0de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5819-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet\",\r\n \"etag\": \"W/\\\"6ca7ee5b-5d98-4f13-821f-92eb73494236\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad05be76-9c56-4eda-99c7-920d767ca9cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"6ca7ee5b-5d98-4f13-821f-92eb73494236\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"6ca7ee5b-5d98-4f13-821f-92eb73494236\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/df59d625-bbeb-4487-b342-db5666bc507a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RmNTlkNjI1LWJiZWItNDQ4Ny1iMzQyLWRiNTY2NmJjNTA3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/7964b797-47ce-4fc2-a304-69b5aed5b110?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzc5NjRiNzk3LTQ3Y2UtNGZjMi1hMzA0LTY5YjVhZWQ1YjExMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -646,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "f6fb1ef7-248e-4a79-b7dc-8e9ec3f714ce" + "00ed56e6-6fd0-4853-9c77-30886a6c1dfe" ], "x-ms-correlation-request-id": [ - "a903766a-5de2-4fd2-a849-9a668ede14e9" + "e5151b22-15be-4ad5-9e21-7e565478adc2" ], "x-ms-arm-service-request-id": [ - "f89afd55-5f02-4a2d-bd8a-947fefc4d8b1" + "cf791e64-e04e-48e6-a0e4-cc5bb3aab2ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,13 +662,13 @@ "11998" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143617Z:a903766a-5de2-4fd2-a849-9a668ede14e9" + "FRANCESOUTH:20201108T161337Z:e5151b22-15be-4ad5-9e21-7e565478adc2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:17 GMT" + "Sun, 08 Nov 2020 16:13:37 GMT" ], "Content-Length": [ "29" @@ -687,16 +684,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/05e8234c-2b11-4aca-b275-efc56dc16283?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzA1ZTgyMzRjLTJiMTEtNGFjYS1iMjc1LWVmYzU2ZGMxNjI4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/11a79d29-0e67-4da1-b718-90e87763e36c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzExYTc5ZDI5LTBlNjctNGRhMS1iNzE4LTkwZTg3NzYzZTM2Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -707,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "5862b106-6bd4-4b60-8325-c91eb0427a5d" + "5f94f2cb-e93a-4bbe-b588-78e9abe41806" ], "x-ms-correlation-request-id": [ - "8a0e4499-6902-444a-a886-73be8229a56c" + "560b3e5b-dc04-4323-a90d-326c78e8273f" ], "x-ms-arm-service-request-id": [ - "9b811bc9-440d-4361-90d6-7c985835356a" + "3affd2d7-7eb6-4ca0-a655-95f84717086d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +723,13 @@ "11994" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143623Z:8a0e4499-6902-444a-a886-73be8229a56c" + "FRANCESOUTH:20201108T161342Z:560b3e5b-dc04-4323-a90d-326c78e8273f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:22 GMT" + "Sun, 08 Nov 2020 16:13:42 GMT" ], "Content-Length": [ "29" @@ -748,28 +745,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTY/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ca53049-3a42-4ca1-b551-e14aecce54c0" + "e8dd1409-8c3e-4846-b7e5-54a6f23c611b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -780,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A30.0808346Z'\"" + "W/\"datetime'2020-11-08T16%3A13%3A51.9103718Z'\"" ], "x-ms-request-id": [ - "eb7123fb-8c00-4d75-9d55-e68a79eba269" + "23d82838-4319-4459-b955-d8f5d264ba6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/96032e09-b7b0-4a21-8ef0-9f34e73a8678?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e2acebba-29a6-4715-8874-b726e1e60d25?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -804,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "322572d5-1c62-4bfb-9ace-56ec3dc7ff48" + "0ebfc3ce-529f-434d-8e99-39f49285d181" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143631Z:322572d5-1c62-4bfb-9ace-56ec3dc7ff48" + "FRANCESOUTH:20201108T161353Z:0ebfc3ce-529f-434d-8e99-39f49285d181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,10 +813,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:30 GMT" + "Sun, 08 Nov 2020 16:13:52 GMT" ], "Content-Length": [ - "314" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,20 +825,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556\",\r\n \"name\": \"ps9556\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A30.0808346Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782\",\r\n \"name\": \"ps2782\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A13%3A51.9103718Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTY/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e2acebba-29a6-4715-8874-b726e1e60d25?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTJhY2ViYmEtMjlhNi00NzE1LTg4NzQtYjcyNmUxZTYwZDI1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e4e4ef4-645e-40c8-aeb2-1f0099962e2d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bf8aae11-5923-49b4-8fdc-0c313a09a6d4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T161423Z:bf8aae11-5923-49b4-8fdc-0c313a09a6d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 16:14:22 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e2acebba-29a6-4715-8874-b726e1e60d25\",\r\n \"name\": \"e2acebba-29a6-4715-8874-b726e1e60d25\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T16:13:51.8318798Z\",\r\n \"endTime\": \"2020-11-08T16:13:52.0037622Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -852,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A30.14488Z'\"" + "W/\"datetime'2020-11-08T16%3A13%3A51.9704149Z'\"" ], "x-ms-request-id": [ - "ccf5a957-3712-4077-873f-47ef0278796e" + "ad660d05-eec8-463a-b5d5-3d0fb082b933" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -870,13 +933,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "ffaeb79a-bc13-4ac0-b814-3726f2a0529d" + "c46fdfb8-88c2-47de-8c0f-cdf1d6d91fe8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143631Z:ffaeb79a-bc13-4ac0-b814-3726f2a0529d" + "FRANCESOUTH:20201108T161423Z:c46fdfb8-88c2-47de-8c0f-cdf1d6d91fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,10 +948,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:30 GMT" + "Sun, 08 Nov 2020 16:14:22 GMT" ], "Content-Length": [ - "312" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -897,32 +960,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556\",\r\n \"name\": \"ps9556\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A30.14488Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782\",\r\n \"name\": \"ps2782\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A13%3A51.9704149Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c20f8876-6629-4f75-a345-ba41f7f98598" + "49448dbc-3b8e-4195-b0e7-8263b3789a29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "113" + "119" ] }, "ResponseHeaders": { @@ -933,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A33.4142043Z'\"" + "W/\"datetime'2020-11-08T16%3A14%3A26.5284586Z'\"" ], "x-ms-request-id": [ - "10439453-caf0-4c28-b868-fed4d80c8273" + "48a40281-3e11-453b-95ce-ee12155f8fab" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/92784cb8-a25f-4976-aa38-4b439e707ff1?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e78549b6-817d-40bd-8a96-c1899585eadf?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -957,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "266c201b-e41c-4ab4-8825-d220734246f6" + "027ffd9c-d434-400b-9508-2dfa47a7c142" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143634Z:266c201b-e41c-4ab4-8825-d220734246f6" + "FRANCESOUTH:20201108T161427Z:027ffd9c-d434-400b-9508-2dfa47a7c142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,10 +1032,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:36:34 GMT" + "Sun, 08 Nov 2020 16:14:27 GMT" ], "Content-Length": [ - "401" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,20 +1044,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\",\r\n \"name\": \"ps9556/ps3832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A33.4142043Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\",\r\n \"name\": \"ps2782/ps5320\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A14%3A26.5284586Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/92784cb8-a25f-4976-aa38-4b439e707ff1?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOTI3ODRjYjgtYTI1Zi00OTc2LWFhMzgtNGI0MzllNzA3ZmYxP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e78549b6-817d-40bd-8a96-c1899585eadf?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZTc4NTQ5YjYtODE3ZC00MGJkLThhOTYtYzE4OTk1ODVlYWRmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1005,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "083739b0-42df-4977-9d57-412d0d9cfbe2" + "4caeb285-520b-480e-b00c-987d5e7109b6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1020,13 +1083,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "c035d52d-1d14-4e54-af0b-ad9bf78b4b60" + "6ef5359a-1483-4d85-bbfb-83b7ed629c6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143705Z:c035d52d-1d14-4e54-af0b-ad9bf78b4b60" + "FRANCESOUTH:20201108T161458Z:6ef5359a-1483-4d85-bbfb-83b7ed629c6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1098,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:37:04 GMT" + "Sun, 08 Nov 2020 16:14:57 GMT" ], "Content-Length": [ - "509" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,20 +1110,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/92784cb8-a25f-4976-aa38-4b439e707ff1\",\r\n \"name\": \"92784cb8-a25f-4976-aa38-4b439e707ff1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:36:33.3618714Z\",\r\n \"endTime\": \"2020-09-07T14:36:33.674367Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e78549b6-817d-40bd-8a96-c1899585eadf\",\r\n \"name\": \"e78549b6-817d-40bd-8a96-c1899585eadf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T16:14:26.2981999Z\",\r\n \"endTime\": \"2020-11-08T16:14:26.7556546Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1071,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\"" + "W/\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\"" ], "x-ms-request-id": [ - "5c9fde86-586d-4e00-a9dc-d9e37bc065b7" + "5297f29e-6d91-418a-9641-7091c4a44054" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1089,13 +1152,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "c9c40dd3-88bc-465f-af7b-1d4f8629c880" + "8a7956ba-2695-4ed7-a246-5f079318250f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143705Z:c9c40dd3-88bc-465f-af7b-1d4f8629c880" + "FRANCESOUTH:20201108T161458Z:8a7956ba-2695-4ed7-a246-5f079318250f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,10 +1167,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:37:05 GMT" + "Sun, 08 Nov 2020 16:14:57 GMT" ], "Content-Length": [ - "450" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1116,26 +1179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\",\r\n \"name\": \"ps9556/ps3832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"3798a9fc-7c90-92b0-f400-65ff84cbc006\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\",\r\n \"name\": \"ps2782/ps5320\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"d1e57cc9-0922-e986-982e-05871404509a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c1086c-b9e2-488e-bff3-4c06f222a4dc" + "020e3306-5001-45fe-a0a4-eb28de1983fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1146,10 +1209,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\"" + "W/\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\"" ], "x-ms-request-id": [ - "7ccb4c83-61fc-4a7c-b6fb-a9e93beadd5d" + "f451ba3a-5942-439e-b09e-d5cdc92860ae" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1164,13 +1227,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "c9ff16e7-01cf-4a73-b90f-257bd3ee2832" + "d4b03216-3800-4713-8ea5-e71b47b983e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143705Z:c9ff16e7-01cf-4a73-b90f-257bd3ee2832" + "FRANCESOUTH:20201108T161458Z:d4b03216-3800-4713-8ea5-e71b47b983e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,10 +1242,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:37:05 GMT" + "Sun, 08 Nov 2020 16:14:58 GMT" ], "Content-Length": [ - "450" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1191,26 +1254,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\",\r\n \"name\": \"ps9556/ps3832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"3798a9fc-7c90-92b0-f400-65ff84cbc006\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\",\r\n \"name\": \"ps2782/ps5320\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"d1e57cc9-0922-e986-982e-05871404509a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c69dcca-9092-4466-a2ae-b9fe5374b9a4" + "2f5e868b-7b36-4655-b325-ff438357d6b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1221,10 +1284,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\"" + "W/\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\"" ], "x-ms-request-id": [ - "c76048e3-bec7-400a-9b42-49c5984c52d2" + "4f9b99ef-c954-496a-a428-567043d41544" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1239,13 +1302,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "f9556807-8844-45d3-85c6-dc66c4922242" + "38aa90ec-f911-44a0-99ca-2a3ce9a5013b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144041Z:f9556807-8844-45d3-85c6-dc66c4922242" + "FRANCESOUTH:20201108T161834Z:38aa90ec-f911-44a0-99ca-2a3ce9a5013b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1317,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:40 GMT" + "Sun, 08 Nov 2020 16:18:33 GMT" ], "Content-Length": [ - "450" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,26 +1329,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\",\r\n \"name\": \"ps9556/ps3832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"3798a9fc-7c90-92b0-f400-65ff84cbc006\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\",\r\n \"name\": \"ps2782/ps5320\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"d1e57cc9-0922-e986-982e-05871404509a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c44f79d1-1878-4641-b3cb-127f6cfe1b14" + "cb741bda-a997-49cb-89e8-c2cf7f966602" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1296,10 +1359,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\"" + "W/\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\"" ], "x-ms-request-id": [ - "fd58f46b-2369-4991-9781-f57e898cf376" + "8dcc9006-f043-4ea2-b05b-55ad18172e08" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1314,13 +1377,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-correlation-request-id": [ - "50025cf1-8a27-48e5-a45f-a55f60adb627" + "a3ded906-9920-499b-a818-d17fc53632f6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144225Z:50025cf1-8a27-48e5-a45f-a55f60adb627" + "FRANCESOUTH:20201108T162050Z:a3ded906-9920-499b-a818-d17fc53632f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,10 +1392,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:24 GMT" + "Sun, 08 Nov 2020 16:20:50 GMT" ], "Content-Length": [ - "450" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,32 +1404,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832\",\r\n \"name\": \"ps9556/ps3832\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A36%3A33.6653819Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"3798a9fc-7c90-92b0-f400-65ff84cbc006\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320\",\r\n \"name\": \"ps2782/ps5320\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A14%3A31.7331579Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"d1e57cc9-0922-e986-982e-05871404509a\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82418923-76d5-4aea-9d10-f08004d7e59d" + "87c3d7de-2576-432c-b0c9-dcf455408e10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "320" + "397" ] }, "ResponseHeaders": { @@ -1377,13 +1440,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A37%3A07.9426909Z'\"" + "W/\"datetime'2020-11-08T16%3A15%3A00.4345796Z'\"" ], "x-ms-request-id": [ - "c237c526-3619-4bbf-8d6a-0f4d97f22f57" + "0a44604e-8b88-4713-b843-08ee01621e5e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1401,10 +1464,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "156765da-09f0-4bc4-bcd2-7e29a4e22503" + "c718254e-6651-4ece-b13f-e502347ee1ee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143708Z:156765da-09f0-4bc4-bcd2-7e29a4e22503" + "FRANCESOUTH:20201108T161501Z:c718254e-6651-4ece-b13f-e502347ee1ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,10 +1476,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:37:08 GMT" + "Sun, 08 Nov 2020 16:15:01 GMT" ], "Content-Length": [ - "624" + "687" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,20 +1488,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A37%3A07.9426909Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A15%3A00.4345796Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1449,7 +1512,7 @@ "no-cache" ], "x-ms-request-id": [ - "8b4cbee1-0c30-47ff-b487-be338082ef09" + "44266de9-aa7a-4dbb-9a04-95570d18683b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1464,13 +1527,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "0581f383-b3fa-41c8-a6c9-c962729dfcea" + "b56981b1-fce3-4a6a-9645-d95a4f41907d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143739Z:0581f383-b3fa-41c8-a6c9-c962729dfcea" + "FRANCESOUTH:20201108T161531Z:b56981b1-fce3-4a6a-9645-d95a4f41907d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,10 +1542,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:37:38 GMT" + "Sun, 08 Nov 2020 16:15:31 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1491,20 +1554,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1515,7 +1578,7 @@ "no-cache" ], "x-ms-request-id": [ - "cfcdb943-bbf5-4c4b-9278-02684db70b70" + "3572888f-ced2-4a52-ba6e-87408e843bcc" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1530,13 +1593,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "cb3b4e90-6771-488c-9708-633653a7c035" + "11a51037-e188-448c-bedf-faa7a3c03957" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143809Z:cb3b4e90-6771-488c-9708-633653a7c035" + "FRANCESOUTH:20201108T161601Z:11a51037-e188-448c-bedf-faa7a3c03957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,10 +1608,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:38:09 GMT" + "Sun, 08 Nov 2020 16:16:01 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,20 +1620,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1581,7 +1644,7 @@ "no-cache" ], "x-ms-request-id": [ - "c39e953f-f2a0-40b4-9cab-f3fb47bf2be6" + "79288154-68d9-4e70-9118-a20213a439d0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1596,13 +1659,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "b9e0318c-2673-414a-a380-42ac8f116ab6" + "17afa9aa-c315-4f05-8a67-d265cd92ddc9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143839Z:b9e0318c-2673-414a-a380-42ac8f116ab6" + "FRANCESOUTH:20201108T161632Z:17afa9aa-c315-4f05-8a67-d265cd92ddc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,10 +1674,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:38:39 GMT" + "Sun, 08 Nov 2020 16:16:31 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,20 +1686,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1647,7 +1710,7 @@ "no-cache" ], "x-ms-request-id": [ - "3843a6fb-1e26-489b-bc77-578c1ee60c9e" + "a4b1e3b1-693a-43fd-92b6-78a5619a6b89" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1662,13 +1725,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "57bafc62-b1f8-44d8-80a3-3f35315e88eb" + "42d7d30a-2acd-4011-a2e0-95260bad4281" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143909Z:57bafc62-b1f8-44d8-80a3-3f35315e88eb" + "FRANCESOUTH:20201108T161702Z:42d7d30a-2acd-4011-a2e0-95260bad4281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,10 +1740,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:39:09 GMT" + "Sun, 08 Nov 2020 16:17:01 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,20 +1752,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1713,7 +1776,7 @@ "no-cache" ], "x-ms-request-id": [ - "851bab66-4bf0-488c-8565-8241ca03e1a4" + "17ff9e17-ac3d-4f3a-9251-44f5eac6a356" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1728,13 +1791,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "f1f1bd1c-ff44-41d7-bcaf-3c308014a689" + "d7b45c61-1b12-46f2-93cb-379582ca9834" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143940Z:f1f1bd1c-ff44-41d7-bcaf-3c308014a689" + "FRANCESOUTH:20201108T161732Z:d7b45c61-1b12-46f2-93cb-379582ca9834" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,10 +1806,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:39:39 GMT" + "Sun, 08 Nov 2020 16:17:31 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,20 +1818,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1779,7 +1842,7 @@ "no-cache" ], "x-ms-request-id": [ - "cefa3b96-2e02-47d4-a0a9-58e0fc6d4419" + "78a4d6d7-f852-46cd-b62b-ae50205fcaed" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1787,20 +1850,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], "x-ms-correlation-request-id": [ - "0d706a1d-1853-4201-beab-fb9bb70a0a47" + "fa506dbb-fc25-4963-bd88-09bb72969104" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144010Z:0d706a1d-1853-4201-beab-fb9bb70a0a47" + "FRANCESOUTH:20201108T161802Z:fa506dbb-fc25-4963-bd88-09bb72969104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1809,10 +1872,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:09 GMT" + "Sun, 08 Nov 2020 16:18:02 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1821,20 +1884,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzEyMDQ3Y2MtOWU2Yi00NjJhLWFjMmMtNjExMjk1MzIyODk3P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOGEzMjczZWMtMjQ3Mi00NjJkLThkNzEtNjIwNGVlNjYxMDJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1845,7 +1908,7 @@ "no-cache" ], "x-ms-request-id": [ - "e43c4baa-f3ba-4054-bf73-0d9b89c128c9" + "6cc0bd65-2a12-41aa-b172-38131c928038" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1860,13 +1923,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "9bacbbd5-0e75-41f0-8d6d-5d1d3600cfe5" + "23d3b6b7-1b35-4ce5-af58-7f2ed9cba13e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144040Z:9bacbbd5-0e75-41f0-8d6d-5d1d3600cfe5" + "FRANCESOUTH:20201108T161833Z:23d3b6b7-1b35-4ce5-af58-7f2ed9cba13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,10 +1938,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:40 GMT" + "Sun, 08 Nov 2020 16:18:33 GMT" ], "Content-Length": [ - "524" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1887,20 +1950,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"name\": \"312047cc-9e6b-462a-ac2c-611295322897\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:37:07.8829658Z\",\r\n \"endTime\": \"2020-09-07T14:40:19.257672Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"name\": \"8a3273ec-2472-462d-8d71-6204ee66102a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T16:15:00.3341295Z\",\r\n \"endTime\": \"2020-11-08T16:18:17.272907Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1911,10 +1974,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A40%3A19.2553836Z'\"" + "W/\"datetime'2020-11-08T16%3A18%3A17.2626016Z'\"" ], "x-ms-request-id": [ - "1f468e57-7867-4f20-ac35-4c8495bff4af" + "a159fc21-3014-4e25-a259-3d783647c77b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1929,13 +1992,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "e7d737f2-cbf5-401c-8927-8079ac9bdd34" + "f6458592-7032-45d5-9e7a-1677136d7487" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144040Z:e7d737f2-cbf5-401c-8927-8079ac9bdd34" + "FRANCESOUTH:20201108T161834Z:f6458592-7032-45d5-9e7a-1677136d7487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1944,10 +2007,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:40 GMT" + "Sun, 08 Nov 2020 16:18:33 GMT" ], "Content-Length": [ - "1256" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1956,26 +2019,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A19.2553836Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A18%3A17.2626016Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f28f10e-9f70-41d6-8083-6f4aa40ba24b" + "c8fbbd71-d3cb-4022-be89-a4f8962f8296" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1986,10 +2049,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A40%3A19.2553836Z'\"" + "W/\"datetime'2020-11-08T16%3A18%3A17.2626016Z'\"" ], "x-ms-request-id": [ - "802fccac-d10e-44f0-beab-39af3a6c33e3" + "269ff381-c4b6-4fe9-8d01-22db4ad59bf0" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2004,13 +2067,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-correlation-request-id": [ - "1bcd1d49-9ed6-4e92-895b-5f4cabb2f13a" + "11ef4126-71db-4e72-ac03-52c3a41e9655" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144048Z:1bcd1d49-9ed6-4e92-895b-5f4cabb2f13a" + "FRANCESOUTH:20201108T161909Z:11ef4126-71db-4e72-ac03-52c3a41e9655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2082,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:47 GMT" + "Sun, 08 Nov 2020 16:19:09 GMT" ], "Content-Length": [ - "1256" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,26 +2094,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A19.2553836Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A18%3A17.2626016Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4adc6c37-7e93-41df-96f5-4d8034060118" + "0ee016ee-c0c7-4bef-a2fd-d2a003e836ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2061,10 +2124,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A40%3A51.6333452Z'\"" + "W/\"datetime'2020-11-08T16%3A19%3A17.0131108Z'\"" ], "x-ms-request-id": [ - "a981066c-037a-42b5-a5d4-ed8585196a90" + "503fb731-0a47-4a9a-a07c-76a2351d1291" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2079,13 +2142,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "46f171ef-668a-4d5e-b3e9-96af9e8f33f4" + "3946c5ae-f9c3-4558-864f-3805ea715ec8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144052Z:46f171ef-668a-4d5e-b3e9-96af9e8f33f4" + "FRANCESOUTH:20201108T161917Z:3946c5ae-f9c3-4558-864f-3805ea715ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,10 +2157,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:52 GMT" + "Sun, 08 Nov 2020 16:19:16 GMT" ], "Content-Length": [ - "1256" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2106,32 +2169,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A51.6333452Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A19%3A17.0131108Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6609?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczY2MDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1557?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczE1NTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps6609\",\r\n \"serviceLevel\": \"Standard\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps1557\",\r\n \"serviceLevel\": \"Standard\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53a72a34-bd93-467a-a6f7-b1eff4423c13" + "99b7befe-2eb3-4d11-bc67-b2fbd2375593" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "398" ] }, "ResponseHeaders": { @@ -2141,8 +2204,14 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2020-11-08T16%3A18%3A38.4346661Z'\"" + ], "x-ms-request-id": [ - "7b81e721-658e-41ed-95c9-2415b427fc44" + "378e60ad-a600-4d55-a4f5-f034fdde6ae9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7bfae987-9117-4831-9248-dd36da880160?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2160,10 +2229,76 @@ "1196" ], "x-ms-correlation-request-id": [ - "8af2bdfe-be6d-4153-b9fe-61f12e5fe759" + "3b64663a-2cc2-45d7-b869-b8d28897623c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T161839Z:3b64663a-2cc2-45d7-b869-b8d28897623c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 16:18:38 GMT" + ], + "Content-Length": [ + "688" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1557\",\r\n \"name\": \"ps2782/ps5320/ps1557\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A18%3A38.4346661Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps1557\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7bfae987-9117-4831-9248-dd36da880160?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvN2JmYWU5ODctOTExNy00ODMxLTkyNDgtZGQzNmRhODgwMTYwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2379aa2f-9064-4d87-ac7e-8081b737db00" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "61f0bf4a-139e-4284-842c-79738dfe1146" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144047Z:8af2bdfe-be6d-4153-b9fe-61f12e5fe759" + "FRANCESOUTH:20201108T161909Z:61f0bf4a-139e-4284-842c-79738dfe1146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2172,10 +2307,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:47 GMT" + "Sun, 08 Nov 2020 16:19:09 GMT" ], "Content-Length": [ - "107" + "735" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2184,26 +2319,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidServiceLevel\",\r\n \"message\": \"Service level 'Standard' differs from parent 'Premium'\"\r\n }\r\n}", - "StatusCode": 400 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7bfae987-9117-4831-9248-dd36da880160\",\r\n \"name\": \"7bfae987-9117-4831-9248-dd36da880160\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2020-11-08T16:18:38.3652193Z\",\r\n \"endTime\": \"2020-11-08T16:18:38.4902319Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1557\"\r\n },\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Service level 'Standard' differs from parent 'Premium'\",\r\n \"details\": [\r\n {\r\n \"code\": \"InvalidServiceLevel\",\r\n \"message\": \"Service level 'Standard' differs from parent 'Premium'\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"usageThreshold\": 214748364800\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc79ac7d-852e-4f82-87d6-d421c72ba481" + "e9923a74-6a92-45af-8b9b-a72906b0171a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2220,10 +2355,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A40%3A48.9404364Z'\"" + "W/\"datetime'2020-11-08T16%3A19%3A10.3383636Z'\"" ], "x-ms-request-id": [ - "91199648-3feb-4dd3-b3b0-f08ca707fd67" + "89824f6c-777b-4ec5-94c6-e7f7152c39d6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2241,10 +2376,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "66af08cd-e98a-4f6b-b57a-286935020062" + "acd3fd72-c264-4f4b-9392-c0f5a58222ef" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144051Z:66af08cd-e98a-4f6b-b57a-286935020062" + "FRANCESOUTH:20201108T161917Z:acd3fd72-c264-4f4b-9392-c0f5a58222ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2253,10 +2388,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:51 GMT" + "Sun, 08 Nov 2020 16:19:16 GMT" ], "Content-Length": [ - "1256" + "1507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2265,26 +2400,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A48.9404364Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A19%3A10.3383636Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b87e880e-dc8b-4099-a96f-6a61f01dcb44" + "8dac5ee4-b0e3-4722-882f-cf207b6dcc61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2295,7 +2430,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6c4a3ca-7e7c-43c5-8ea9-881d6ee5bbd2" + "2396c6e9-ce6b-459f-91c3-496eddabdf28" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2310,13 +2445,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-correlation-request-id": [ - "144a6271-7014-4313-a091-af9dba9f6005" + "adc5f7e7-1209-4d85-8e38-382600079e43" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144052Z:144a6271-7014-4313-a091-af9dba9f6005" + "FRANCESOUTH:20201108T161917Z:adc5f7e7-1209-4d85-8e38-382600079e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,10 +2460,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:51 GMT" + "Sun, 08 Nov 2020 16:19:16 GMT" ], "Content-Length": [ - "1268" + "2206" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2337,26 +2472,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A51.6333452Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A19%3A17.0131108Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1557\",\r\n \"name\": \"ps2782/ps5320/ps1557\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A18%3A43.0729665Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps1557\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "767c1a6b-9665-4c33-80bc-dc14e2b3d306" + "0da29d7a-76f3-4a6e-89b4-828ed8aeacb2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2367,7 +2502,7 @@ "no-cache" ], "x-ms-request-id": [ - "a6e0ac16-19a9-4ccc-bb12-7b41615a7878" + "861ee9a4-7c20-4feb-bd79-b5bc00bdff78" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2382,13 +2517,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-correlation-request-id": [ - "fa05fa09-8cad-489d-94fa-a0df2375d2a3" + "c3a78a2f-ab3f-456b-acd7-1abfb6a9ba6b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144225Z:fa05fa09-8cad-489d-94fa-a0df2375d2a3" + "FRANCESOUTH:20201108T162050Z:c3a78a2f-ab3f-456b-acd7-1abfb6a9ba6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,10 +2532,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:24 GMT" + "Sun, 08 Nov 2020 16:20:50 GMT" ], "Content-Length": [ - "12" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2409,26 +2544,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1557\",\r\n \"name\": \"ps2782/ps5320/ps1557\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A18%3A43.0729665Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps1557\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk1NTYvY2FwYWNpdHlQb29scy9wczM4MzIvdm9sdW1lcy9wczYyNzc/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTgxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczI3ODIvY2FwYWNpdHlQb29scy9wczUzMjAvdm9sdW1lcy9wczEwNDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74669d66-3002-4a1a-b639-c4c8ec7f0642" + "2d250b19-7dd3-4039-9856-d8c53488fa27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2439,10 +2574,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2460,13 +2595,13 @@ "14999" ], "x-ms-request-id": [ - "553687a8-9c50-4c9f-a170-b8ca60038798" + "8c769b62-27c2-4d41-bfe8-384925205dbc" ], "x-ms-correlation-request-id": [ - "553687a8-9c50-4c9f-a170-b8ca60038798" + "8c769b62-27c2-4d41-bfe8-384925205dbc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144053Z:553687a8-9c50-4c9f-a170-b8ca60038798" + "FRANCESOUTH:20201108T161918Z:8c769b62-27c2-4d41-bfe8-384925205dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2475,7 +2610,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:40:52 GMT" + "Sun, 08 Nov 2020 16:19:18 GMT" ], "Expires": [ "-1" @@ -2488,16 +2623,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDJkNDA2NWYtNGRkMS00YzJiLWEwMmEtMTBlOTFhMWQ3MGU1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkMmY1OWEtNzg0Mi00YTU1LTk0ZDktMzlhY2FkMTdlY2JiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2508,7 +2643,7 @@ "no-cache" ], "x-ms-request-id": [ - "a99fc15f-5894-476a-8c00-999cc58af267" + "222d7b3e-27d6-4cb0-8c61-043d9a8877f1" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2523,13 +2658,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "861147b8-7404-43cb-8546-3c7f34ba61a5" + "ed0c7c8b-9da4-40f7-a004-28dd061ed503" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144123Z:861147b8-7404-43cb-8546-3c7f34ba61a5" + "FRANCESOUTH:20201108T161949Z:ed0c7c8b-9da4-40f7-a004-28dd061ed503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2538,10 +2673,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:41:22 GMT" + "Sun, 08 Nov 2020 16:19:48 GMT" ], "Content-Length": [ - "513" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2550,20 +2685,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"name\": \"42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-09-07T14:40:53.260269Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"name\": \"0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-11-08T16:19:18.7745207Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDJkNDA2NWYtNGRkMS00YzJiLWEwMmEtMTBlOTFhMWQ3MGU1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkMmY1OWEtNzg0Mi00YTU1LTk0ZDktMzlhY2FkMTdlY2JiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2574,7 +2709,7 @@ "no-cache" ], "x-ms-request-id": [ - "845e3e57-2407-492d-a899-8f541066f94b" + "5ef236f9-d962-4ce0-8aa9-3f4f52bfe1d2" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2589,13 +2724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "49c8fa1d-866f-4f6d-a5cf-54066e0678d1" + "7c7cc12c-2015-443f-8fc8-7ad5f5e1279d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144153Z:49c8fa1d-866f-4f6d-a5cf-54066e0678d1" + "FRANCESOUTH:20201108T162019Z:7c7cc12c-2015-443f-8fc8-7ad5f5e1279d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,10 +2739,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:41:53 GMT" + "Sun, 08 Nov 2020 16:20:18 GMT" ], "Content-Length": [ - "513" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2616,20 +2751,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"name\": \"42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-09-07T14:40:53.260269Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"name\": \"0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-11-08T16:19:18.7745207Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDJkNDA2NWYtNGRkMS00YzJiLWEwMmEtMTBlOTFhMWQ3MGU1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkMmY1OWEtNzg0Mi00YTU1LTk0ZDktMzlhY2FkMTdlY2JiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2640,7 +2775,7 @@ "no-cache" ], "x-ms-request-id": [ - "cb4f34a9-53a5-4785-af0e-6d87cab8b2cd" + "9d5a5c53-d24e-4ab8-af1c-75fd49fbf864" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2648,20 +2783,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], "x-ms-correlation-request-id": [ - "e96d09ac-0030-4007-9ea2-f94bba9ff4fe" + "ca0e7962-8d41-4785-9eaa-f0612f1bac65" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144224Z:e96d09ac-0030-4007-9ea2-f94bba9ff4fe" + "FRANCESOUTH:20201108T162049Z:ca0e7962-8d41-4785-9eaa-f0612f1bac65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2670,10 +2805,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:23 GMT" + "Sun, 08 Nov 2020 16:20:49 GMT" ], "Content-Length": [ - "524" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2682,20 +2817,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"name\": \"42d4065f-4dd1-4c2b-a02a-10e91a1d70e5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:40:53.260269Z\",\r\n \"endTime\": \"2020-09-07T14:42:09.4116472Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"name\": \"0ad2f59a-7842-4a55-94d9-39acad17ecbb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T16:19:18.7745207Z\",\r\n \"endTime\": \"2020-11-08T16:20:27.3934094Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/42d4065f-4dd1-4c2b-a02a-10e91a1d70e5?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDJkNDA2NWYtNGRkMS00YzJiLWEwMmEtMTBlOTFhMWQ3MGU1P2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0ad2f59a-7842-4a55-94d9-39acad17ecbb?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMGFkMmY1OWEtNzg0Mi00YTU1LTk0ZDktMzlhY2FkMTdlY2JiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2706,7 +2841,7 @@ "no-cache" ], "x-ms-request-id": [ - "f6104263-64fc-4e7c-94ab-3f04d04d3bf4" + "44636b59-af0b-4581-afb3-d3074bc6725b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2721,13 +2856,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-correlation-request-id": [ - "a1805a8b-26da-4708-9973-b1f39535f92f" + "cdfdad6e-c274-4bec-93d4-cd8082e2848c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144224Z:a1805a8b-26da-4708-9973-b1f39535f92f" + "FRANCESOUTH:20201108T162049Z:cdfdad6e-c274-4bec-93d4-cd8082e2848c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,10 +2871,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:24 GMT" + "Sun, 08 Nov 2020 16:20:49 GMT" ], "Content-Length": [ - "1794" + "1878" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2748,26 +2883,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"name\": \"ps9556/ps3832/ps6277\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A40%3A53.3255449Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"name\": \"ps6277\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6277\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_50d4a829\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.Network/virtualNetworks/ps7130-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps7130/providers/Microsoft.NetApp/netAppAccounts/ps9556/capacityPools/ps3832/volumes/ps6277\",\r\n \"poolId\": \"3798a9fc-7c90-92b0-f400-65ff84cbc006\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"fileSystemId\": \"8e9d246b-611e-75a5-95f8-a199faa13de2\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"name\": \"ps2782/ps5320/ps1041\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T16%3A19%3A18.8864432Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"name\": \"ps1041\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1041\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_5bf67c42\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.Network/virtualNetworks/ps5819-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps5819/providers/Microsoft.NetApp/netAppAccounts/ps2782/capacityPools/ps5320/volumes/ps1041\",\r\n \"poolId\": \"d1e57cc9-0922-e986-982e-05871404509a\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"fileSystemId\": \"1917d8a9-9ddf-3c3d-e712-4d6721323319\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps7130?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzEzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps5819?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTgxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17eb5681-d14f-4a77-b4d8-a1a8cf98e9ae" + "ff3ebe8a-d244-496d-8190-bfc82d8652c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2778,7 +2913,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2787,13 +2922,13 @@ "14999" ], "x-ms-request-id": [ - "7d256f07-e1c5-450b-afbe-a97c504c7164" + "cbdd0f1e-82e1-460e-98f8-1661c248f442" ], "x-ms-correlation-request-id": [ - "7d256f07-e1c5-450b-afbe-a97c504c7164" + "cbdd0f1e-82e1-460e-98f8-1661c248f442" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144229Z:7d256f07-e1c5-450b-afbe-a97c504c7164" + "FRANCESOUTH:20201108T162053Z:cbdd0f1e-82e1-460e-98f8-1661c248f442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2802,7 +2937,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:29 GMT" + "Sun, 08 Nov 2020 16:20:53 GMT" ], "Expires": [ "-1" @@ -2815,16 +2950,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2835,7 +2970,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2844,13 +2979,13 @@ "11999" ], "x-ms-request-id": [ - "52d6fee6-3c05-461a-84d6-4c5211a027df" + "022457de-41f3-4258-954e-f3f956ce50d5" ], "x-ms-correlation-request-id": [ - "52d6fee6-3c05-461a-84d6-4c5211a027df" + "022457de-41f3-4258-954e-f3f956ce50d5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144244Z:52d6fee6-3c05-461a-84d6-4c5211a027df" + "FRANCESOUTH:20201108T162109Z:022457de-41f3-4258-954e-f3f956ce50d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2859,7 +2994,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:44 GMT" + "Sun, 08 Nov 2020 16:21:09 GMT" ], "Expires": [ "-1" @@ -2872,16 +3007,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2892,7 +3027,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2901,13 +3036,13 @@ "11998" ], "x-ms-request-id": [ - "dced3e95-002f-4fa4-b418-e37acfb8a4fc" + "cf3fd000-a263-4b5d-bd96-4d80252f9009" ], "x-ms-correlation-request-id": [ - "dced3e95-002f-4fa4-b418-e37acfb8a4fc" + "cf3fd000-a263-4b5d-bd96-4d80252f9009" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144259Z:dced3e95-002f-4fa4-b418-e37acfb8a4fc" + "FRANCESOUTH:20201108T162124Z:cf3fd000-a263-4b5d-bd96-4d80252f9009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2916,7 +3051,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:42:59 GMT" + "Sun, 08 Nov 2020 16:21:24 GMT" ], "Expires": [ "-1" @@ -2929,16 +3064,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -2949,7 +3084,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2958,13 +3093,13 @@ "11997" ], "x-ms-request-id": [ - "508aa1c3-a02e-4e6d-8a72-2642f712e6b2" + "97c4ca4b-8e44-4b82-811a-31f8130c53ff" ], "x-ms-correlation-request-id": [ - "508aa1c3-a02e-4e6d-8a72-2642f712e6b2" + "97c4ca4b-8e44-4b82-811a-31f8130c53ff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144315Z:508aa1c3-a02e-4e6d-8a72-2642f712e6b2" + "FRANCESOUTH:20201108T162139Z:97c4ca4b-8e44-4b82-811a-31f8130c53ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2973,7 +3108,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:43:14 GMT" + "Sun, 08 Nov 2020 16:21:39 GMT" ], "Expires": [ "-1" @@ -2986,16 +3121,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3006,7 +3141,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3015,13 +3150,13 @@ "11996" ], "x-ms-request-id": [ - "7a80764a-7627-44df-b96f-21338a8e1c48" + "23e6a53b-7b3c-4454-a4c1-5215b5b60d31" ], "x-ms-correlation-request-id": [ - "7a80764a-7627-44df-b96f-21338a8e1c48" + "23e6a53b-7b3c-4454-a4c1-5215b5b60d31" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144330Z:7a80764a-7627-44df-b96f-21338a8e1c48" + "FRANCESOUTH:20201108T162155Z:23e6a53b-7b3c-4454-a4c1-5215b5b60d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3030,7 +3165,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:43:30 GMT" + "Sun, 08 Nov 2020 16:21:54 GMT" ], "Expires": [ "-1" @@ -3043,16 +3178,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3063,7 +3198,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3072,13 +3207,13 @@ "11995" ], "x-ms-request-id": [ - "82b6fc2e-d315-4275-a36a-7c5469872580" + "3ec19e54-9938-4cb5-a148-d70c21021e67" ], "x-ms-correlation-request-id": [ - "82b6fc2e-d315-4275-a36a-7c5469872580" + "3ec19e54-9938-4cb5-a148-d70c21021e67" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144345Z:82b6fc2e-d315-4275-a36a-7c5469872580" + "FRANCESOUTH:20201108T162210Z:3ec19e54-9938-4cb5-a148-d70c21021e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3087,7 +3222,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:43:45 GMT" + "Sun, 08 Nov 2020 16:22:10 GMT" ], "Expires": [ "-1" @@ -3100,16 +3235,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3120,7 +3255,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3129,13 +3264,13 @@ "11994" ], "x-ms-request-id": [ - "8c9f78ab-e578-42ac-b437-21d7136271d7" + "7db7917b-c891-4a7e-8ce1-55a4eff3b5c4" ], "x-ms-correlation-request-id": [ - "8c9f78ab-e578-42ac-b437-21d7136271d7" + "7db7917b-c891-4a7e-8ce1-55a4eff3b5c4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144401Z:8c9f78ab-e578-42ac-b437-21d7136271d7" + "FRANCESOUTH:20201108T162226Z:7db7917b-c891-4a7e-8ce1-55a4eff3b5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3144,7 +3279,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:44:00 GMT" + "Sun, 08 Nov 2020 16:22:25 GMT" ], "Expires": [ "-1" @@ -3157,16 +3292,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3177,7 +3312,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3186,13 +3321,13 @@ "11993" ], "x-ms-request-id": [ - "89cdff64-3d8e-4ec5-84b0-02cd0b972ba5" + "c76c420c-233f-4fe9-92e8-34d532058fc1" ], "x-ms-correlation-request-id": [ - "89cdff64-3d8e-4ec5-84b0-02cd0b972ba5" + "c76c420c-233f-4fe9-92e8-34d532058fc1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144416Z:89cdff64-3d8e-4ec5-84b0-02cd0b972ba5" + "FRANCESOUTH:20201108T162241Z:c76c420c-233f-4fe9-92e8-34d532058fc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3201,7 +3336,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:44:15 GMT" + "Sun, 08 Nov 2020 16:22:40 GMT" ], "Expires": [ "-1" @@ -3214,16 +3349,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3234,7 +3369,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3243,13 +3378,13 @@ "11992" ], "x-ms-request-id": [ - "b26fe488-3bd5-4cdd-ba88-6a1645fc1c77" + "cb47a0bf-c460-4134-9f62-48d92fb790b8" ], "x-ms-correlation-request-id": [ - "b26fe488-3bd5-4cdd-ba88-6a1645fc1c77" + "cb47a0bf-c460-4134-9f62-48d92fb790b8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144431Z:b26fe488-3bd5-4cdd-ba88-6a1645fc1c77" + "FRANCESOUTH:20201108T162256Z:cb47a0bf-c460-4134-9f62-48d92fb790b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3258,7 +3393,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:44:31 GMT" + "Sun, 08 Nov 2020 16:22:55 GMT" ], "Expires": [ "-1" @@ -3271,16 +3406,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3291,7 +3426,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3300,13 +3435,13 @@ "11991" ], "x-ms-request-id": [ - "48ebbc1f-b984-480c-acc5-e9d695efa9f8" + "99b027e8-4d06-4b0f-a94c-489a090e391d" ], "x-ms-correlation-request-id": [ - "48ebbc1f-b984-480c-acc5-e9d695efa9f8" + "99b027e8-4d06-4b0f-a94c-489a090e391d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144447Z:48ebbc1f-b984-480c-acc5-e9d695efa9f8" + "FRANCESOUTH:20201108T162312Z:99b027e8-4d06-4b0f-a94c-489a090e391d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3315,7 +3450,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:44:46 GMT" + "Sun, 08 Nov 2020 16:23:11 GMT" ], "Expires": [ "-1" @@ -3328,16 +3463,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3348,7 +3483,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3357,13 +3492,13 @@ "11990" ], "x-ms-request-id": [ - "6b360c99-50c4-407d-b8ef-bb2a96bf583f" + "b15cd7d6-ac34-47d7-8f6b-043361546cfd" ], "x-ms-correlation-request-id": [ - "6b360c99-50c4-407d-b8ef-bb2a96bf583f" + "b15cd7d6-ac34-47d7-8f6b-043361546cfd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144502Z:6b360c99-50c4-407d-b8ef-bb2a96bf583f" + "FRANCESOUTH:20201108T162327Z:b15cd7d6-ac34-47d7-8f6b-043361546cfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3372,7 +3507,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:45:01 GMT" + "Sun, 08 Nov 2020 16:23:26 GMT" ], "Expires": [ "-1" @@ -3385,16 +3520,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3405,7 +3540,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3414,13 +3549,13 @@ "11989" ], "x-ms-request-id": [ - "0f2da7b7-a6a4-4b0f-a044-ccc6ff3fbcc5" + "ffceeeb7-df0d-4a74-a35b-a6ce4bd91383" ], "x-ms-correlation-request-id": [ - "0f2da7b7-a6a4-4b0f-a044-ccc6ff3fbcc5" + "ffceeeb7-df0d-4a74-a35b-a6ce4bd91383" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144517Z:0f2da7b7-a6a4-4b0f-a044-ccc6ff3fbcc5" + "FRANCESOUTH:20201108T162342Z:ffceeeb7-df0d-4a74-a35b-a6ce4bd91383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3429,7 +3564,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:45:17 GMT" + "Sun, 08 Nov 2020 16:23:42 GMT" ], "Expires": [ "-1" @@ -3442,16 +3577,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3462,7 +3597,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3471,13 +3606,13 @@ "11988" ], "x-ms-request-id": [ - "097ecd9c-0392-427b-a961-8586dc40daf4" + "61280b93-a513-4c1b-b21f-c3c9963d23dc" ], "x-ms-correlation-request-id": [ - "097ecd9c-0392-427b-a961-8586dc40daf4" + "61280b93-a513-4c1b-b21f-c3c9963d23dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144533Z:097ecd9c-0392-427b-a961-8586dc40daf4" + "FRANCESOUTH:20201108T162358Z:61280b93-a513-4c1b-b21f-c3c9963d23dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3486,7 +3621,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:45:33 GMT" + "Sun, 08 Nov 2020 16:23:57 GMT" ], "Expires": [ "-1" @@ -3499,16 +3634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3519,7 +3654,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3528,13 +3663,13 @@ "11987" ], "x-ms-request-id": [ - "0a201a71-0cab-4e27-a9d4-ef923fb154d9" + "8fc31763-0995-4384-9cc3-b31b271360d8" ], "x-ms-correlation-request-id": [ - "0a201a71-0cab-4e27-a9d4-ef923fb154d9" + "8fc31763-0995-4384-9cc3-b31b271360d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144548Z:0a201a71-0cab-4e27-a9d4-ef923fb154d9" + "FRANCESOUTH:20201108T162413Z:8fc31763-0995-4384-9cc3-b31b271360d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3543,7 +3678,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:45:48 GMT" + "Sun, 08 Nov 2020 16:24:12 GMT" ], "Expires": [ "-1" @@ -3556,16 +3691,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3575,17 +3710,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-request-id": [ - "1d98dc38-db9e-4e8a-808d-369f10937328" + "7a8e83ea-9cdc-498c-8af2-627ab3f0625f" ], "x-ms-correlation-request-id": [ - "1d98dc38-db9e-4e8a-808d-369f10937328" + "7a8e83ea-9cdc-498c-8af2-627ab3f0625f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144603Z:1d98dc38-db9e-4e8a-808d-369f10937328" + "FRANCESOUTH:20201108T162428Z:7a8e83ea-9cdc-498c-8af2-627ab3f0625f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3735,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:46:03 GMT" + "Sun, 08 Nov 2020 16:24:28 GMT" ], "Expires": [ "-1" @@ -3604,19 +3745,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxMzAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE16QXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -3630,13 +3771,64 @@ "11985" ], "x-ms-request-id": [ - "e2b1434b-bc08-47be-8668-200a1ceabddc" + "24ba5a51-8353-4694-9290-e7686c311b68" + ], + "x-ms-correlation-request-id": [ + "24ba5a51-8353-4694-9290-e7686c311b68" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201108T162444Z:24ba5a51-8353-4694-9290-e7686c311b68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 08 Nov 2020 16:24:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU4MTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "bf51afb7-bb95-4222-957c-fe58c8231d5f" ], "x-ms-correlation-request-id": [ - "e2b1434b-bc08-47be-8668-200a1ceabddc" + "bf51afb7-bb95-4222-957c-fe58c8231d5f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T144604Z:e2b1434b-bc08-47be-8668-200a1ceabddc" + "FRANCESOUTH:20201108T162444Z:bf51afb7-bb95-4222-957c-fe58c8231d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3645,7 +3837,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:46:03 GMT" + "Sun, 08 Nov 2020 16:24:43 GMT" ], "Expires": [ "-1" @@ -3660,11 +3852,11 @@ ], "Names": { "Test-VolumePipelines": [ - "ps7130", - "ps9556", - "ps3832", - "ps6277", - "ps6609" + "ps5819", + "ps2782", + "ps5320", + "ps1041", + "ps1557" ] }, "Variables": { From 8c1122f3c7f72e2ac112a153c82dac8a7775f9ae Mon Sep 17 00:00:00 2001 From: Audunn Baldvinsson Date: Sun, 8 Nov 2020 20:15:51 +0000 Subject: [PATCH 21/22] update recording --- .../TestVolumeCrud.json | 1853 ++++++++--------- 1 file changed, 925 insertions(+), 928 deletions(-) diff --git a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json index bb801907e33b..c35a5ef49969 100644 --- a/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json @@ -1,28 +1,28 @@ -{ +{ "Entries": [ { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTkxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3622?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzYyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e8063235-fb97-4fe1-a8bf-b7f1e73d3461" + "e0c12b74-c806-4bca-9d52-f13b57f6ca76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "fee51b36-0bfb-46fd-aa65-4f5d2db0abb5" + "b76b9005-7f85-4a19-a932-49bd3e66c2bf" ], "x-ms-correlation-request-id": [ - "fee51b36-0bfb-46fd-aa65-4f5d2db0abb5" + "b76b9005-7f85-4a19-a932-49bd3e66c2bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141419Z:fee51b36-0bfb-46fd-aa65-4f5d2db0abb5" + "FRANCESOUTH:20201108T181708Z:b76b9005-7f85-4a19-a932-49bd3e66c2bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:18 GMT" + "Sun, 08 Nov 2020 18:17:08 GMT" ], "Content-Length": [ - "166" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910\",\r\n \"name\": \"ps9910\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622\",\r\n \"name\": \"ps3622\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46c0a9f3-03d3-421c-adfe-05ac167c7fa6" + "b073c568-d5e2-4a90-9ebc-e1be63ffb683" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "866f8319-2c5b-472b-addf-1a081281b4c3" + "30ff2048-3c8f-48b2-a50f-d73136bf60d4" ], "x-ms-correlation-request-id": [ - "866f8319-2c5b-472b-addf-1a081281b4c3" + "30ff2048-3c8f-48b2-a50f-d73136bf60d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141420Z:866f8319-2c5b-472b-addf-1a081281b4c3" + "FRANCESOUTH:20201108T181710Z:30ff2048-3c8f-48b2-a50f-d73136bf60d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:20 GMT" + "Sun, 08 Nov 2020 18:17:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,20 +123,20 @@ "223" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9910-vnet' under resource group 'ps9910' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps3622-vnet' under resource group 'ps3622' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"e82aed84-1f13-4678-91c1-8748ffa00260\"" + "W/\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\"" ], "x-ms-request-id": [ - "972a4642-2020-486d-bfef-b133efb00d18" + "22f54f97-e1e1-4352-b99d-363c23b55176" ], "x-ms-correlation-request-id": [ - "94d9e6d5-4242-435b-a0bf-308ff845e81e" + "e85a5ead-5783-41a5-bd92-01008761f61b" ], "x-ms-arm-service-request-id": [ - "7dfcafd1-721a-49b4-85fd-461a247570a2" + "a1c37989-3442-4ee0-8ff0-edc7075a4271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,16 +169,16 @@ "11997" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141432Z:94d9e6d5-4242-435b-a0bf-308ff845e81e" + "FRANCESOUTH:20201108T181723Z:e85a5ead-5783-41a5-bd92-01008761f61b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:32 GMT" + "Sun, 08 Nov 2020 18:17:22 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +187,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"e82aed84-1f13-4678-91c1-8748ffa00260\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fec2df77-41e4-452c-81ec-c6b4cabc8f97" + "a9c62375-d9e8-40eb-bee7-592e096995d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"e82aed84-1f13-4678-91c1-8748ffa00260\"" + "W/\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\"" ], "x-ms-request-id": [ - "652cb257-ae83-4d29-93cb-fb1fe9c978ae" + "6b039077-04f0-48a6-acd8-288532d7b364" ], "x-ms-correlation-request-id": [ - "768c8bba-536a-485e-98a4-eef014c2d612" + "869c87c2-67c6-4b4c-bdf7-55bc709fc917" ], "x-ms-arm-service-request-id": [ - "8586c33e-955f-4086-9fd2-eb7040a0b82a" + "b169479e-6d96-4d29-bb8c-afbe8b1a3d75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,16 +239,16 @@ "11996" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141432Z:768c8bba-536a-485e-98a4-eef014c2d612" + "FRANCESOUTH:20201108T181723Z:869c87c2-67c6-4b4c-bdf7-55bc709fc917" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:32 GMT" + "Sun, 08 Nov 2020 18:17:23 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"e82aed84-1f13-4678-91c1-8748ffa00260\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6fecb83-544e-4f14-9d80-81313bb37564" + "e57cb6d6-8153-48c1-9abd-dc2cabdc8e31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"e82aed84-1f13-4678-91c1-8748ffa00260\"" + "W/\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\"" ], "x-ms-request-id": [ - "c9e8c39c-be78-4eb0-b9b6-4fe6e201b61b" + "b2e5a234-de16-474d-b871-521818f7deff" ], "x-ms-correlation-request-id": [ - "bf492350-418d-48d4-b4a5-55fbd5569314" + "9c54e343-9661-4ffe-ba23-922ee7db23d6" ], "x-ms-arm-service-request-id": [ - "889921a1-535d-4644-a240-111488f61417" + "05565172-41bd-4a89-8e15-4d2b496df63a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +309,16 @@ "11995" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141432Z:bf492350-418d-48d4-b4a5-55fbd5569314" + "FRANCESOUTH:20201108T181723Z:9c54e343-9661-4ffe-ba23-922ee7db23d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:32 GMT" + "Sun, 08 Nov 2020 18:17:23 GMT" ], "Content-Length": [ - "642" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,20 +327,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"e82aed84-1f13-4678-91c1-8748ffa00260\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"bbfea699-70b1-402b-9c0b-ed46fc09eaa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -351,16 +351,16 @@ "no-cache" ], "ETag": [ - "W/\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\"" + "W/\"31bd411f-2c69-4eec-9de9-24386216650e\"" ], "x-ms-request-id": [ - "1617d629-ce13-4670-8c86-e3911b155056" + "740b1f7f-612d-4f17-b2fd-e31c91d773dd" ], "x-ms-correlation-request-id": [ - "4f9909ca-7aac-4fda-bc66-530de4df0e7e" + "caf65fe7-bedf-4f3c-83b6-073c6c373f6c" ], "x-ms-arm-service-request-id": [ - "eb5815c1-59ec-498a-b0c9-e068973ca249" + "588ca36e-6e6e-4692-9abb-5acac96210df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,16 +373,16 @@ "11993" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141437Z:4f9909ca-7aac-4fda-bc66-530de4df0e7e" + "FRANCESOUTH:20201108T181727Z:caf65fe7-bedf-4f3c-83b6-073c6c373f6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:36 GMT" + "Sun, 08 Nov 2020 18:17:27 GMT" ], "Content-Length": [ - "2151" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,26 +391,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "009a0f38-9baf-4d31-af41-3c9f4fb59e94" + "ca691c74-75fc-4789-b25b-b7e4ad256f69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -421,16 +421,16 @@ "no-cache" ], "ETag": [ - "W/\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\"" + "W/\"31bd411f-2c69-4eec-9de9-24386216650e\"" ], "x-ms-request-id": [ - "6f015c84-07dd-42fb-9be3-5fc4376e4d0a" + "22dbea22-c3b8-4a72-b600-95fb5993e0ac" ], "x-ms-correlation-request-id": [ - "5c078e75-1ea8-4060-8923-6d5b5ae4b950" + "45d33f33-5ec9-42ab-959b-c44475eacc37" ], "x-ms-arm-service-request-id": [ - "abfcc06c-6112-461f-8762-d34b47cce5ab" + "0c2c0707-75c2-41ac-b780-7a156273c5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,16 +443,16 @@ "11992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141437Z:5c078e75-1ea8-4060-8923-6d5b5ae4b950" + "FRANCESOUTH:20201108T181728Z:45d33f33-5ec9-42ab-959b-c44475eacc37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:37 GMT" + "Sun, 08 Nov 2020 18:17:27 GMT" ], "Content-Length": [ - "2151" + "2157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -461,32 +461,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ae594f0c-36ea-41c1-84f2-6b1ea2d6ce3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"31bd411f-2c69-4eec-9de9-24386216650e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a266f972-53f2-4b3c-ade2-808d3da9bd16" + "906f6797-12ce-4fd1-ac28-23cf0c16af54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "261" + "267" ] }, "ResponseHeaders": { @@ -500,19 +500,16 @@ "3" ], "x-ms-request-id": [ - "215ef2b2-339f-4662-982e-89b4706da34a" + "982c4f66-25c5-4720-88af-33e61bfb98d1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/215ef2b2-339f-4662-982e-89b4706da34a?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/982c4f66-25c5-4720-88af-33e61bfb98d1?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "101c7d7d-504c-4d5d-819d-0220ace8dcac" - ], - "Azure-AsyncNotification": [ - "Enabled" + "e1c5a941-3ded-42cc-b9f1-6cbf652ab30d" ], "x-ms-arm-service-request-id": [ - "aaa17cef-5783-460f-b348-9e581f9767e1" + "a00ef4b2-3dd4-4bd7-8f8e-dcfcb6d435aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,16 +522,16 @@ "1199" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141428Z:101c7d7d-504c-4d5d-819d-0220ace8dcac" + "FRANCESOUTH:20201108T181719Z:e1c5a941-3ded-42cc-b9f1-6cbf652ab30d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:28 GMT" + "Sun, 08 Nov 2020 18:17:19 GMT" ], "Content-Length": [ - "641" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,32 +540,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"777367ab-bed0-43cc-a0e1-3c3eba4a5f2e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"6b93b268-c20c-4dd8-858c-d236683f67ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTkxMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzYyMi12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\"\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8b7907cf-3570-4249-b740-2d31cdeb8208" + "b6356e96-36e5-4f30-ae3a-5b60184bf216" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1064" + "1070" ] }, "ResponseHeaders": { @@ -582,16 +579,16 @@ "3" ], "x-ms-request-id": [ - "8b542993-be44-4ae8-b190-3e9dea7f1483" + "c1631169-b93a-42d9-9878-e88008ce6ac8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/8b542993-be44-4ae8-b190-3e9dea7f1483?api-version=2020-05-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/c1631169-b93a-42d9-9878-e88008ce6ac8?api-version=2020-06-01" ], "x-ms-correlation-request-id": [ - "f35dd097-ae57-4a0e-8a95-353df157a76b" + "a2342e42-9ac5-48e7-be57-81f51125a857" ], "x-ms-arm-service-request-id": [ - "41af40b2-8b81-4a5e-9d78-9f3dba542035" + "eae3b673-c83d-4d33-9f92-96798b3eb2a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -604,16 +601,16 @@ "1198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141433Z:f35dd097-ae57-4a0e-8a95-353df157a76b" + "FRANCESOUTH:20201108T181724Z:a2342e42-9ac5-48e7-be57-81f51125a857" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:33 GMT" + "Sun, 08 Nov 2020 18:17:24 GMT" ], "Content-Length": [ - "2149" + "2155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -622,20 +619,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9910-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet\",\r\n \"etag\": \"W/\\\"45949179-8ba3-433a-a7e2-e6258d4dc0b2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c0f62de8-8758-40e6-ac9c-c6525ec4f610\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"45949179-8ba3-433a-a7e2-e6258d4dc0b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"45949179-8ba3-433a-a7e2-e6258d4dc0b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3622-vnet\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet\",\r\n \"etag\": \"W/\\\"ec02174a-6f8d-4821-ad66-ecfea7212cda\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0ede1ff-e9aa-486b-b294-e45ba25c853c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ec02174a-6f8d-4821-ad66-ecfea7212cda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"netAppVolumes\",\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ec02174a-6f8d-4821-ad66-ecfea7212cda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/215ef2b2-339f-4662-982e-89b4706da34a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzIxNWVmMmIyLTMzOWYtNDY2Mi05ODJlLTg5YjQ3MDZkYTM0YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/982c4f66-25c5-4720-88af-33e61bfb98d1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk4MmM0ZjY2LTI1YzUtNDcyMC04OGFmLTMzZTYxYmZiOThkMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -646,13 +643,13 @@ "no-cache" ], "x-ms-request-id": [ - "4acae676-6486-4cae-a7cc-954e596ca5ad" + "b8a80acc-c7f4-4ef4-a3ba-0ab159cf5d52" ], "x-ms-correlation-request-id": [ - "a7e21a0e-3af9-4d8b-bacd-6afab4786abd" + "2ab26746-6229-449d-a484-9b3fcaadd786" ], "x-ms-arm-service-request-id": [ - "6c3a2fe4-1ee4-4f37-a6b0-bd3fe3757086" + "4acc2d31-e71e-4600-bd7c-f187906eedfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,13 +662,13 @@ "11998" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141431Z:a7e21a0e-3af9-4d8b-bacd-6afab4786abd" + "FRANCESOUTH:20201108T181722Z:2ab26746-6229-449d-a484-9b3fcaadd786" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:31 GMT" + "Sun, 08 Nov 2020 18:17:22 GMT" ], "Content-Length": [ "29" @@ -687,16 +684,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/8b542993-be44-4ae8-b190-3e9dea7f1483?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzhiNTQyOTkzLWJlNDQtNGFlOC1iMTkwLTNlOWRlYTdmMTQ4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westcentralus/operations/c1631169-b93a-42d9-9878-e88008ce6ac8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MxNjMxMTY5LWI5M2EtNDJkOS05ODc4LWU4ODAwOGNlNmFjOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" ] }, "ResponseHeaders": { @@ -707,13 +704,13 @@ "no-cache" ], "x-ms-request-id": [ - "b77d199f-f300-408b-99a0-179e1f37ef57" + "4ffdcefa-5463-401b-a704-d80293cc79bc" ], "x-ms-correlation-request-id": [ - "d2518d6c-1a1d-48df-831d-ebf81710467d" + "62b82cc6-4beb-42c0-9bd4-7fc1dc2b1603" ], "x-ms-arm-service-request-id": [ - "803504db-f159-4cf0-a565-1c623cd4b6f6" + "f589447f-b300-4681-85ee-2ce8be362563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -726,13 +723,13 @@ "11994" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141436Z:d2518d6c-1a1d-48df-831d-ebf81710467d" + "FRANCESOUTH:20201108T181727Z:62b82cc6-4beb-42c0-9bd4-7fc1dc2b1603" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:36 GMT" + "Sun, 08 Nov 2020 18:17:27 GMT" ], "Content-Length": [ "29" @@ -748,28 +745,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cd9caf67-bbfe-4c5a-9f3b-aa59aaa14d25" + "f54c8b55-e498-45be-88ea-9d72f4bdb983" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "35" ] }, "ResponseHeaders": { @@ -780,13 +777,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A14%3A43.319713Z'\"" + "W/\"datetime'2020-11-08T18%3A17%3A36.0304412Z'\"" ], "x-ms-request-id": [ - "5dbfa658-1625-4fe1-88c6-ca037e9eefc5" + "538969c1-1a58-4141-ac29-355bca201a29" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/8ce26436-f28f-4ff1-bc9a-46ff875ed5bd?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2df55929-2da5-4e93-9ed6-48226b77511f?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -804,10 +801,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "a5e6405d-da13-4e93-8037-17fe4e79a44f" + "6ca35c61-6a62-4c50-ae73-28420824f3b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141444Z:a5e6405d-da13-4e93-8037-17fe4e79a44f" + "FRANCESOUTH:20201108T181737Z:6ca35c61-6a62-4c50-ae73-28420824f3b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,10 +813,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:14:44 GMT" + "Sun, 08 Nov 2020 18:17:36 GMT" ], "Content-Length": [ - "312" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,20 +825,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623\",\r\n \"name\": \"ps8623\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A14%3A43.319713Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686\",\r\n \"name\": \"ps4686\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A17%3A36.0304412Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/8ce26436-f28f-4ff1-bc9a-46ff875ed5bd?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOGNlMjY0MzYtZjI4Zi00ZmYxLWJjOWEtNDZmZjg3NWVkNWJkP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2df55929-2da5-4e93-9ed6-48226b77511f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMmRmNTU5MjktMmRhNS00ZTkzLTllZDYtNDgyMjZiNzc1MTFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -852,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "789e5ed0-2a5e-465b-8953-654e5c5fd266" + "bc81c73b-4e3a-43c2-8ca0-58733eaa3637" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -870,10 +867,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "b4744930-95d5-4a29-b8d0-5ef300677d97" + "3a7e4aa1-c084-4e2f-b911-3ad9a43dbba3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141514Z:b4744930-95d5-4a29-b8d0-5ef300677d97" + "FRANCESOUTH:20201108T181807Z:3a7e4aa1-c084-4e2f-b911-3ad9a43dbba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,10 +879,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:13 GMT" + "Sun, 08 Nov 2020 18:18:07 GMT" ], "Content-Length": [ - "489" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -894,20 +891,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/8ce26436-f28f-4ff1-bc9a-46ff875ed5bd\",\r\n \"name\": \"8ce26436-f28f-4ff1-bc9a-46ff875ed5bd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:14:43.2553639Z\",\r\n \"endTime\": \"2020-09-07T14:14:43.3875863Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2df55929-2da5-4e93-9ed6-48226b77511f\",\r\n \"name\": \"2df55929-2da5-4e93-9ed6-48226b77511f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:17:35.9386274Z\",\r\n \"endTime\": \"2020-11-08T18:17:36.1261226Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjM/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -918,10 +915,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A14%3A43.3877613Z'\"" + "W/\"datetime'2020-11-08T18%3A17%3A36.1235073Z'\"" ], "x-ms-request-id": [ - "5beb4d6f-d2e3-4921-9b39-c2702037f720" + "97ca51b3-74f5-48a0-b7d5-fd305bf85622" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -939,10 +936,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "78fa3788-cfa9-494e-bfe0-9e50ae0b5a57" + "5e586659-6f79-4dc7-922f-0cfd787e4ea2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141514Z:78fa3788-cfa9-494e-bfe0-9e50ae0b5a57" + "FRANCESOUTH:20201108T181808Z:5e586659-6f79-4dc7-922f-0cfd787e4ea2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,10 +948,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:14 GMT" + "Sun, 08 Nov 2020 18:18:07 GMT" ], "Content-Length": [ - "314" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,32 +960,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623\",\r\n \"name\": \"ps8623\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A14%3A43.3877613Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686\",\r\n \"name\": \"ps4686\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A17%3A36.1235073Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDE/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "307d5224-91e5-4301-a412-a81bb7484928" + "4d75acd2-0345-4081-a708-43ad7f90f47d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "113" + "119" ] }, "ResponseHeaders": { @@ -999,13 +996,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A15%3A17.0056853Z'\"" + "W/\"datetime'2020-11-08T18%3A18%3A10.5169864Z'\"" ], "x-ms-request-id": [ - "beb9841e-6f13-49e4-bc46-cefbc05cb134" + "230776ed-55c8-4a0e-b388-3aa6672e1e99" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e83e4520-4329-4e27-9876-2505ff0934ea?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2d5ba6-1f1f-4883-afed-c0a931c1c67c?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1023,10 +1020,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "c3599c58-940a-4606-9a01-ed00dd47f4fd" + "73e7e7e5-32de-4e61-adea-42de72bf9d30" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141518Z:c3599c58-940a-4606-9a01-ed00dd47f4fd" + "FRANCESOUTH:20201108T181811Z:73e7e7e5-32de-4e61-adea-42de72bf9d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,10 +1032,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:17 GMT" + "Sun, 08 Nov 2020 18:18:11 GMT" ], "Content-Length": [ - "401" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,20 +1044,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301\",\r\n \"name\": \"ps8623/ps1301\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A15%3A17.0056853Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403\",\r\n \"name\": \"ps4686/ps7403\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A18%3A10.5169864Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e83e4520-4329-4e27-9876-2505ff0934ea?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTgzZTQ1MjAtNDMyOS00ZTI3LTk4NzYtMjUwNWZmMDkzNGVhP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2d5ba6-1f1f-4883-afed-c0a931c1c67c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNGYyZDViYTYtMWYxZi00ODgzLWFmZWQtYzBhOTMxYzFjNjdjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1071,7 +1068,7 @@ "no-cache" ], "x-ms-request-id": [ - "ce076b3c-022a-4b75-9626-fb7add237deb" + "2dd5e7fa-947c-4e96-b5dd-51f638dbb325" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1089,10 +1086,10 @@ "11997" ], "x-ms-correlation-request-id": [ - "b7117562-186c-473e-a1b4-7f59e9868829" + "eca16e42-8f13-47fd-8379-37ddfd684ffd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141548Z:b7117562-186c-473e-a1b4-7f59e9868829" + "FRANCESOUTH:20201108T181841Z:eca16e42-8f13-47fd-8379-37ddfd684ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,10 +1098,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:47 GMT" + "Sun, 08 Nov 2020 18:18:41 GMT" ], "Content-Length": [ - "510" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1113,20 +1110,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e83e4520-4329-4e27-9876-2505ff0934ea\",\r\n \"name\": \"e83e4520-4329-4e27-9876-2505ff0934ea\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:15:16.9535679Z\",\r\n \"endTime\": \"2020-09-07T14:15:17.1723218Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2d5ba6-1f1f-4883-afed-c0a931c1c67c\",\r\n \"name\": \"4f2d5ba6-1f1f-4883-afed-c0a931c1c67c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:18:10.4437385Z\",\r\n \"endTime\": \"2020-11-08T18:18:10.7406252Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDE/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1137,10 +1134,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A15%3A17.1768066Z'\"" + "W/\"datetime'2020-11-08T18%3A18%3A15.368439Z'\"" ], "x-ms-request-id": [ - "9720b32a-f404-4804-81ca-f91086c07cf4" + "8f5a3820-88e4-4a9b-835f-f36dedadf141" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1158,10 +1155,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "a2708fc6-7ecc-4461-a97e-50c3c61443ef" + "26f00258-dcb1-46e2-9aef-b69e9c7c8b9a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141548Z:a2708fc6-7ecc-4461-a97e-50c3c61443ef" + "FRANCESOUTH:20201108T181842Z:26f00258-dcb1-46e2-9aef-b69e9c7c8b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,10 +1167,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:47 GMT" + "Sun, 08 Nov 2020 18:18:41 GMT" ], "Content-Length": [ - "450" + "533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,32 +1179,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301\",\r\n \"name\": \"ps8623/ps1301\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A15%3A17.1768066Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"a0b11a36-e539-06e6-ee4f-cdae3a0b2028\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403\",\r\n \"name\": \"ps4686/ps7403\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A18%3A15.368439Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"230e9e1a-fe1c-644b-ea4e-4b60368cacdc\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 262.144,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4554495-20c5-4e45-842d-83c7368c2a34" + "4d16a818-0312-45e9-9fe3-c7bfee6facfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "707" + "784" ] }, "ResponseHeaders": { @@ -1218,13 +1215,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A15%3A51.2829998Z'\"" + "W/\"datetime'2020-11-08T18%3A18%3A44.863428Z'\"" ], "x-ms-request-id": [ - "9d6f99e3-e93e-4c5d-936e-942c352cf2db" + "7a09bdd4-4f3f-4ca2-b6c0-3cebe7b0716c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1242,10 +1239,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "313b8d91-e108-4831-8f6a-0b6a10a51ebc" + "a06f85d9-b02e-46f6-9da9-c2731180aaa5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141552Z:313b8d91-e108-4831-8f6a-0b6a10a51ebc" + "FRANCESOUTH:20201108T181845Z:a06f85d9-b02e-46f6-9da9-c2731180aaa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,10 +1251,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:15:51 GMT" + "Sun, 08 Nov 2020 18:18:45 GMT" ], "Content-Length": [ - "833" + "1058" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,20 +1263,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A15%3A51.2829998Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A18%3A44.863428Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1290,7 +1287,7 @@ "no-cache" ], "x-ms-request-id": [ - "a1409d79-4f02-4313-812e-3808584bcc90" + "4ea77013-41bd-4080-9c0a-a8e02dbc8fbd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1308,10 +1305,10 @@ "11995" ], "x-ms-correlation-request-id": [ - "e0e5f655-b84e-4018-85fe-2175729d02a2" + "2ead6b77-c200-467f-919e-5fab82384d8d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141622Z:e0e5f655-b84e-4018-85fe-2175729d02a2" + "FRANCESOUTH:20201108T181916Z:2ead6b77-c200-467f-919e-5fab82384d8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1320,10 +1317,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:16:22 GMT" + "Sun, 08 Nov 2020 18:19:16 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,20 +1329,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1356,7 +1353,7 @@ "no-cache" ], "x-ms-request-id": [ - "b55fab84-748c-43f8-b0fc-c89d094aed16" + "52d730ca-1229-490f-8707-3005604f01ca" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1374,10 +1371,10 @@ "11994" ], "x-ms-correlation-request-id": [ - "0013f865-07b4-47e9-a0e1-dddd0faeef00" + "7accc0f3-2a15-4b22-88b2-b9e728048d61" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141652Z:0013f865-07b4-47e9-a0e1-dddd0faeef00" + "FRANCESOUTH:20201108T181946Z:7accc0f3-2a15-4b22-88b2-b9e728048d61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,10 +1383,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:16:52 GMT" + "Sun, 08 Nov 2020 18:19:45 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,20 +1395,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1422,7 +1419,7 @@ "no-cache" ], "x-ms-request-id": [ - "92427a25-bc2f-4d8d-8230-17c7410ff67f" + "91b13742-c5ce-4859-8bfe-74df0f9a0af5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1440,10 +1437,10 @@ "11993" ], "x-ms-correlation-request-id": [ - "d788d45a-10f0-441c-a22e-d70db48894cb" + "d4a207fa-db4c-414c-83c6-2703f19e769e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141722Z:d788d45a-10f0-441c-a22e-d70db48894cb" + "FRANCESOUTH:20201108T182016Z:d4a207fa-db4c-414c-83c6-2703f19e769e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,10 +1449,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:17:21 GMT" + "Sun, 08 Nov 2020 18:20:16 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1464,20 +1461,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1488,7 +1485,7 @@ "no-cache" ], "x-ms-request-id": [ - "3023f65d-5cef-4416-8939-c62bd2bb89f8" + "ee11c5ec-1677-4e94-ba48-1ce76309387e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1506,10 +1503,10 @@ "11992" ], "x-ms-correlation-request-id": [ - "8500782a-791c-409d-9995-ea5d57d441ed" + "1466d728-31da-45e1-9dbe-fba31425925a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141753Z:8500782a-791c-409d-9995-ea5d57d441ed" + "FRANCESOUTH:20201108T182046Z:1466d728-31da-45e1-9dbe-fba31425925a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,10 +1515,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:17:52 GMT" + "Sun, 08 Nov 2020 18:20:46 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,20 +1527,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1554,7 +1551,7 @@ "no-cache" ], "x-ms-request-id": [ - "b38d78d0-4466-4a52-99ac-8f3f8f8445c0" + "c6026820-2e6e-4ff0-95e6-9942198d34dd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1572,10 +1569,10 @@ "11991" ], "x-ms-correlation-request-id": [ - "e830324d-e395-404c-8d0f-66939ddef727" + "9f10b885-9e18-4694-9076-b43f97e01ef4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141823Z:e830324d-e395-404c-8d0f-66939ddef727" + "FRANCESOUTH:20201108T182117Z:9f10b885-9e18-4694-9076-b43f97e01ef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,10 +1581,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:18:22 GMT" + "Sun, 08 Nov 2020 18:21:17 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,20 +1593,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1620,7 +1617,7 @@ "no-cache" ], "x-ms-request-id": [ - "277f0bd1-acef-481b-90c6-2da308cb8e14" + "b153699e-7d41-437c-9e02-9239a3b6b2cf" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1638,10 +1635,10 @@ "11990" ], "x-ms-correlation-request-id": [ - "c8518fb4-29c3-4a3a-a06f-33dbf60f3ff0" + "c40d327e-8a31-4c89-bc7f-49753f28ee67" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141853Z:c8518fb4-29c3-4a3a-a06f-33dbf60f3ff0" + "FRANCESOUTH:20201108T182147Z:c40d327e-8a31-4c89-bc7f-49753f28ee67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1650,10 +1647,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:18:53 GMT" + "Sun, 08 Nov 2020 18:21:47 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,20 +1659,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjNkNGY1ZGUtNDNhNS00Yjc0LWIyZTktMWJlODA1NzYyZmRlP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMjQ1OGYzZDUtMDI2Ni00ZjAwLTg2NWMtODY3MjUyZTgwMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1686,7 +1683,7 @@ "no-cache" ], "x-ms-request-id": [ - "12a1760a-dffe-4032-b5d7-0f306d6aafe4" + "90300683-eb0e-4976-a35b-72b119c23dbe" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1704,10 +1701,10 @@ "11989" ], "x-ms-correlation-request-id": [ - "1b9bf1bd-116f-4b5a-97b1-93adfa06369f" + "3be90c56-9963-4808-8530-090b24bd0940" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141923Z:1b9bf1bd-116f-4b5a-97b1-93adfa06369f" + "FRANCESOUTH:20201108T182217Z:3be90c56-9963-4808-8530-090b24bd0940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1713,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:19:23 GMT" + "Sun, 08 Nov 2020 18:22:17 GMT" ], "Content-Length": [ - "525" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,20 +1725,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"name\": \"23d4f5de-43a5-4b74-b2e9-1be805762fde\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:15:51.2259992Z\",\r\n \"endTime\": \"2020-09-07T14:19:10.0702203Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"name\": \"2458f3d5-0266-4f00-865c-867252e80119\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:18:44.6578294Z\",\r\n \"endTime\": \"2020-11-08T18:22:01.1135766Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1752,10 +1749,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\"" ], "x-ms-request-id": [ - "48014580-0b84-477c-a9b5-3f8f20f34fa6" + "b7607318-8d05-415b-824e-bb02c05b17df" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1773,10 +1770,10 @@ "11988" ], "x-ms-correlation-request-id": [ - "b4a85c3f-a07b-46a2-82d8-07498d316852" + "c7d280f9-46b5-48f0-9e3f-ad29723910cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141924Z:b4a85c3f-a07b-46a2-82d8-07498d316852" + "FRANCESOUTH:20201108T182217Z:c7d280f9-46b5-48f0-9e3f-ad29723910cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1785,10 +1782,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:19:24 GMT" + "Sun, 08 Nov 2020 18:22:17 GMT" ], "Content-Length": [ - "1284" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,26 +1794,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98adde0a-21a8-4459-8025-cd65abc8d392" + "0978b30f-8d00-4eb0-9871-852d93fcc557" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1827,10 +1824,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\"" ], "x-ms-request-id": [ - "320b4711-a09b-407a-9482-ae90ae038f71" + "5ffeff97-b268-4267-8fc3-6c50e49c7487" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1848,10 +1845,10 @@ "11984" ], "x-ms-correlation-request-id": [ - "6a74f38f-2991-4ac8-947f-29d2905373b4" + "73a589aa-7427-4b2c-a112-3f5fb879dcd2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142008Z:6a74f38f-2991-4ac8-947f-29d2905373b4" + "FRANCESOUTH:20201108T182255Z:73a589aa-7427-4b2c-a112-3f5fb879dcd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,10 +1857,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:08 GMT" + "Sun, 08 Nov 2020 18:22:54 GMT" ], "Content-Length": [ - "1284" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1872,26 +1869,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc9f6ed4-50f4-455b-ad25-73e815fe11b3" + "a3955df9-7814-4eb4-bf21-ca1b60ea5c63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -1902,10 +1899,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\"" ], "x-ms-request-id": [ - "c9d6015f-c19b-4eb8-bfba-0086562096d2" + "a1871e1d-9e1d-4131-b282-b7de271fa5c3" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -1923,10 +1920,10 @@ "11983" ], "x-ms-correlation-request-id": [ - "a2441f1b-3dc9-4cc8-b4eb-7596e2fe8bf1" + "e9c3e132-4d50-4491-b501-f63b7e8aab29" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142009Z:a2441f1b-3dc9-4cc8-b4eb-7596e2fe8bf1" + "FRANCESOUTH:20201108T182255Z:e9c3e132-4d50-4491-b501-f63b7e8aab29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,10 +1932,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:08 GMT" + "Sun, 08 Nov 2020 18:22:55 GMT" ], "Content-Length": [ - "1284" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1947,32 +1944,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczY3MjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczkwMDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"ps6720\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"creationToken\": \"ps9008\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0447e5b-6bbb-4e2d-abea-e8e2e26406ae" + "ec282591-8608-42d5-b29d-649c2c7ee6df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "666" + "743" ] }, "ResponseHeaders": { @@ -1983,13 +1980,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A19%3A29.2736202Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A22.3401983Z'\"" ], "x-ms-request-id": [ - "fa06b678-06e1-4d73-ba9a-dda97ee6ec8b" + "a956f344-1b64-4d77-ba8c-63f79e027bc7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/891394a1-f699-41be-a413-960908a6d732?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8610adf7-91bb-4a17-a2d6-d3426b54e662?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2007,10 +2004,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "1d1f864a-76e6-4418-8f52-dac9e0f89b9c" + "0f8aa0a0-9b17-441d-9757-b33f4b9413cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T141930Z:1d1f864a-76e6-4418-8f52-dac9e0f89b9c" + "FRANCESOUTH:20201108T182224Z:0f8aa0a0-9b17-441d-9757-b33f4b9413cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2016,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:19:29 GMT" + "Sun, 08 Nov 2020 18:22:23 GMT" ], "Content-Length": [ - "808" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,20 +2028,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"name\": \"ps8623/ps1301/ps6720\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A29.2736202Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6720\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"name\": \"ps4686/ps7403/ps9008\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A22.3401983Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9008\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/891394a1-f699-41be-a413-960908a6d732?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvODkxMzk0YTEtZjY5OS00MWJlLWE0MTMtOTYwOTA4YTZkNzMyP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8610adf7-91bb-4a17-a2d6-d3426b54e662?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvODYxMGFkZjctOTFiYi00YTE3LWEyZDYtZDM0MjZiNTRlNjYyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2055,7 +2052,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d0e4101-74e3-4c77-bab5-35c0a8431322" + "1a814393-79a0-4338-b12b-4f8cdf866e64" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2073,10 +2070,10 @@ "11987" ], "x-ms-correlation-request-id": [ - "2036ebc4-e12d-407f-803b-c972bd0b672a" + "3b574864-9613-4391-b034-9d87aed7f43c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142000Z:2036ebc4-e12d-407f-803b-c972bd0b672a" + "FRANCESOUTH:20201108T182254Z:3b574864-9613-4391-b034-9d87aed7f43c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,10 +2082,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:00 GMT" + "Sun, 08 Nov 2020 18:22:54 GMT" ], "Content-Length": [ - "525" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,20 +2094,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/891394a1-f699-41be-a413-960908a6d732\",\r\n \"name\": \"891394a1-f699-41be-a413-960908a6d732\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:19:29.2047774Z\",\r\n \"endTime\": \"2020-09-07T14:19:51.9146238Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8610adf7-91bb-4a17-a2d6-d3426b54e662\",\r\n \"name\": \"8610adf7-91bb-4a17-a2d6-d3426b54e662\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:22:22.127841Z\",\r\n \"endTime\": \"2020-11-08T18:22:46.6070348Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczY3MjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczkwMDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2121,10 +2118,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A19%3A51.9066728Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A46.6084675Z'\"" ], "x-ms-request-id": [ - "05eaf95f-0a96-45e8-9cd7-f04764d817a9" + "ed480b97-6e5d-47e9-9e17-7161f9876d54" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2142,10 +2139,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "ccd55e0d-24bc-467d-a45c-bda06699acd9" + "afcb6aee-050c-498e-b159-9a6fb626730e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142002Z:ccd55e0d-24bc-467d-a45c-bda06699acd9" + "FRANCESOUTH:20201108T182254Z:afcb6aee-050c-498e-b159-9a6fb626730e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,10 +2151,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:02 GMT" + "Sun, 08 Nov 2020 18:22:54 GMT" ], "Content-Length": [ - "1258" + "1510" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2166,26 +2163,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"name\": \"ps8623/ps1301/ps6720\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A51.9066728Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"name\": \"ps6720\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6720\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv4\": true,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"name\": \"ps4686/ps7403/ps9008\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A46.6084675Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"name\": \"ps9008\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9008\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c53b32e-55b6-413a-8bcb-307d8bccd6b9" + "332fe1bd-b867-4ea9-a5f8-b9d496f538eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2196,7 +2193,7 @@ "no-cache" ], "x-ms-request-id": [ - "993003ec-f28f-4de1-b41d-ce98e5718ff5" + "fb201431-1088-4d02-b552-b23ef67f159e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2214,10 +2211,10 @@ "11985" ], "x-ms-correlation-request-id": [ - "3635696a-2787-42c7-9a8f-d8f1eddfc9b6" + "bcc12772-18a3-4f24-bf77-444006e41a5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142005Z:3635696a-2787-42c7-9a8f-d8f1eddfc9b6" + "FRANCESOUTH:20201108T182254Z:bcc12772-18a3-4f24-bf77-444006e41a5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2226,10 +2223,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:04 GMT" + "Sun, 08 Nov 2020 18:22:54 GMT" ], "Content-Length": [ - "2555" + "3058" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2238,26 +2235,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A10.0689982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"name\": \"ps8623/ps1301/ps6720\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A51.9066728Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"name\": \"ps6720\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6720\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv4\": true,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A01.1170919Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"name\": \"ps4686/ps7403/ps9008\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A46.6084675Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"name\": \"ps9008\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9008\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f02cde2-bd0d-4f2c-9155-c670031da1e4" + "ffc7da5f-cee7-4f78-9756-160d47c6460b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2268,7 +2265,7 @@ "no-cache" ], "x-ms-request-id": [ - "ff5878d8-4f4e-4de4-a29d-478819c6a5a5" + "30dce059-7c34-48ee-9800-1b89b36d9c71" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2286,10 +2283,10 @@ "11980" ], "x-ms-correlation-request-id": [ - "1c74f2cd-4798-4f75-a21d-1b5ce9bb0fe4" + "749776f7-1740-4ac3-8713-d0575eee8566" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142101Z:1c74f2cd-4798-4f75-a21d-1b5ce9bb0fe4" + "FRANCESOUTH:20201108T182343Z:749776f7-1740-4ac3-8713-d0575eee8566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2298,10 +2295,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:21:00 GMT" + "Sun, 08 Nov 2020 18:23:42 GMT" ], "Content-Length": [ - "1270" + "1522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2310,26 +2307,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"name\": \"ps8623/ps1301/ps6720\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A19%3A51.9066728Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"name\": \"ps6720\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6720\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv4\": true,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"name\": \"ps4686/ps7403/ps9008\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A46.6084675Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"name\": \"ps9008\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9008\",\r\n \"usageThreshold\": 107374182400,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTAyLTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19204f2d-8d11-4499-bf64-41aca7fa5788" + "857220ec-8630-4f48-bd20-bbc828e64243" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2340,7 +2337,7 @@ "no-cache" ], "x-ms-request-id": [ - "46a567af-e69e-4c75-9fb1-8fb566dced4c" + "591507a1-2e5c-4143-864c-4a98b182fa03" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2358,10 +2355,10 @@ "11974" ], "x-ms-correlation-request-id": [ - "2cda4798-c7e7-4471-9bd6-2a8a9ff55579" + "572942fb-2be0-43af-980f-3be5223c9db5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142303Z:2cda4798-c7e7-4471-9bd6-2a8a9ff55579" + "FRANCESOUTH:20201108T182545Z:572942fb-2be0-43af-980f-3be5223c9db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2370,7 +2367,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:02 GMT" + "Sun, 08 Nov 2020 18:25:45 GMT" ], "Content-Length": [ "12" @@ -2386,22 +2383,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"usageThreshold\": 214748364800\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "814ab660-bbaa-466b-bdf0-586ac8787e62" + "a000c4af-b5c2-4ff7-9cbe-62cf420639ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2418,10 +2415,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A20%3A12.1310178Z'\"" + "W/\"datetime'2020-11-08T18%3A22%3A55.9220945Z'\"" ], "x-ms-request-id": [ - "ab133724-0742-4487-93ee-ab090d70e81b" + "3835f94c-1b14-4ccf-9f5f-44621c9324f9" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2439,10 +2436,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "156c9891-9914-4601-9af8-09f1f94dd437" + "391b8390-7b49-4a64-8ee3-5dee6b6d920d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142025Z:156c9891-9914-4601-9af8-09f1f94dd437" + "FRANCESOUTH:20201108T182303Z:391b8390-7b49-4a64-8ee3-5dee6b6d920d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,10 +2448,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:25 GMT" + "Sun, 08 Nov 2020 18:23:02 GMT" ], "Content-Length": [ - "1284" + "1535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2463,26 +2460,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A20%3A12.1310178Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A22%3A55.9220945Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n },\r\n {\r\n \"ruleIndex\": 3,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7cd2b9a-23f6-4352-ac7e-af38c5715c94" + "d21791f8-5e98-44e7-8267-172d9afa1efc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2499,10 +2496,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A20%3A26.9855557Z'\"" + "W/\"datetime'2020-11-08T18%3A23%3A03.8627485Z'\"" ], "x-ms-request-id": [ - "08ce6b5e-bf29-4964-8ddf-f9fdc0b974d1" + "3c312994-dd98-4a9b-9a32-4b9c09513f00" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2520,10 +2517,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "98f8265c-2c6b-4900-94da-59aa5ce49e40" + "e7b1c349-891d-43a8-bda9-6c3de12102cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142029Z:98f8265c-2c6b-4900-94da-59aa5ce49e40" + "FRANCESOUTH:20201108T182310Z:e7b1c349-891d-43a8-bda9-6c3de12102cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2532,10 +2529,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:28 GMT" + "Sun, 08 Nov 2020 18:23:10 GMT" ], "Content-Length": [ - "1399" + "1806" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2544,26 +2541,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A20%3A26.9855557Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n },\r\n {\r\n \"ruleIndex\": 3,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"1.2.3.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A23%3A03.8627485Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n },\r\n {\r\n \"ruleIndex\": 3,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczEwNDg/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczI3MzQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c90935e2-e955-4e6f-b6c3-1a5ff17653ea" + "91aa562f-d983-43b9-a202-a243c0826582" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2574,10 +2571,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e26adb12-4658-48a3-95f3-f2f8ccf2c999?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c308b098-f8f0-4a37-b032-d6ccaac8158c?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e26adb12-4658-48a3-95f3-f2f8ccf2c999?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c308b098-f8f0-4a37-b032-d6ccaac8158c?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2595,13 +2592,13 @@ "14999" ], "x-ms-request-id": [ - "f6a52ea6-03b5-4508-a793-58570f5fd541" + "61cb15eb-1ea8-44c3-bc5a-210af3fb71da" ], "x-ms-correlation-request-id": [ - "f6a52ea6-03b5-4508-a793-58570f5fd541" + "61cb15eb-1ea8-44c3-bc5a-210af3fb71da" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142030Z:f6a52ea6-03b5-4508-a793-58570f5fd541" + "FRANCESOUTH:20201108T182311Z:61cb15eb-1ea8-44c3-bc5a-210af3fb71da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,7 +2607,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:30 GMT" + "Sun, 08 Nov 2020 18:23:11 GMT" ], "Expires": [ "-1" @@ -2623,16 +2620,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e26adb12-4658-48a3-95f3-f2f8ccf2c999?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTI2YWRiMTItNDY1OC00OGEzLTk1ZjMtZjJmOGNjZjJjOTk5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c308b098-f8f0-4a37-b032-d6ccaac8158c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzMwOGIwOTgtZjhmMC00YTM3LWIwMzItZDZjY2FhYzgxNThjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2643,7 +2640,7 @@ "no-cache" ], "x-ms-request-id": [ - "b57254bd-604d-4c78-94a6-922aad6733fe" + "b5c48de6-ba8a-4490-88d9-7e4af0af3bbd" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2651,20 +2648,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], "x-ms-correlation-request-id": [ - "e9217635-4043-47ba-956e-972f3d680aad" + "da9c0d59-5623-45f8-8d01-2d2c3f26ce5f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142100Z:e9217635-4043-47ba-956e-972f3d680aad" + "FRANCESOUTH:20201108T182341Z:da9c0d59-5623-45f8-8d01-2d2c3f26ce5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,10 +2670,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:20:59 GMT" + "Sun, 08 Nov 2020 18:23:41 GMT" ], "Content-Length": [ - "525" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2685,20 +2682,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e26adb12-4658-48a3-95f3-f2f8ccf2c999\",\r\n \"name\": \"e26adb12-4658-48a3-95f3-f2f8ccf2c999\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:20:30.3835179Z\",\r\n \"endTime\": \"2020-09-07T14:20:37.3953624Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c308b098-f8f0-4a37-b032-d6ccaac8158c\",\r\n \"name\": \"c308b098-f8f0-4a37-b032-d6ccaac8158c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:23:11.3850347Z\",\r\n \"endTime\": \"2020-11-08T18:23:18.5715098Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/e26adb12-4658-48a3-95f3-f2f8ccf2c999?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTI2YWRiMTItNDY1OC00OGEzLTk1ZjMtZjJmOGNjZjJjOTk5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c308b098-f8f0-4a37-b032-d6ccaac8158c?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvYzMwOGIwOTgtZjhmMC00YTM3LWIwMzItZDZjY2FhYzgxNThjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2709,7 +2706,7 @@ "no-cache" ], "x-ms-request-id": [ - "4d03d5ba-62fb-4340-bb94-a9f825c22a54" + "eafe13a6-b6ea-4c10-b405-33726cb06d97" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2727,10 +2724,10 @@ "11981" ], "x-ms-correlation-request-id": [ - "2d0f845e-af6f-4322-adf2-f56769bab31d" + "2e48219c-e86d-479e-a870-5484508df77c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142100Z:2d0f845e-af6f-4322-adf2-f56769bab31d" + "FRANCESOUTH:20201108T182342Z:2e48219c-e86d-479e-a870-5484508df77c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,10 +2736,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:21:00 GMT" + "Sun, 08 Nov 2020 18:23:41 GMT" ], "Content-Length": [ - "2079" + "2177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2751,26 +2748,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"name\": \"ps8623/ps1301/ps1048\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A20%3A30.4350013Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"name\": \"ps1048\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps1048\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n },\r\n {\r\n \"ruleIndex\": 3,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps1048\",\r\n \"poolId\": \"a0b11a36-e539-06e6-ee4f-cdae3a0b2028\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"fileSystemId\": \"8bf1e116-004d-d892-11c4-edc5d7d0eaea\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"name\": \"ps4686/ps7403/ps2734\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A23%3A11.6512928Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"name\": \"ps2734\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps2734\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n },\r\n {\r\n \"ruleIndex\": 3,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps2734\",\r\n \"poolId\": \"230e9e1a-fe1c-644b-ea4e-4b60368cacdc\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"fileSystemId\": \"56bd03b4-7da4-5607-dceb-edf14b1ed4bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczEzMDEvdm9sdW1lcy9wczY3MjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczc0MDMvdm9sdW1lcy9wczkwMDg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f84d0d2-fa0f-41bb-b51f-38c3b810fab8" + "dcca5aa4-9a87-4418-9025-5aee2daeb9d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2781,10 +2778,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2802,13 +2799,13 @@ "14998" ], "x-ms-request-id": [ - "946dbf23-5c90-4438-89a5-85fadcf8c63c" + "d5be0573-b4aa-451a-b466-200ff6111cbb" ], "x-ms-correlation-request-id": [ - "946dbf23-5c90-4438-89a5-85fadcf8c63c" + "d5be0573-b4aa-451a-b466-200ff6111cbb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142102Z:946dbf23-5c90-4438-89a5-85fadcf8c63c" + "FRANCESOUTH:20201108T182343Z:d5be0573-b4aa-451a-b466-200ff6111cbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2817,7 +2814,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:21:01 GMT" + "Sun, 08 Nov 2020 18:23:42 GMT" ], "Expires": [ "-1" @@ -2830,16 +2827,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZWJjNmZiNjgtZGFjYy00MzlmLTkyZmMtODJjZmFiMDMxYzdiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBmZWVmYzMtYTNmYy00N2M3LTgzNTktYTZjMzg1N2U5MWIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2850,7 +2847,7 @@ "no-cache" ], "x-ms-request-id": [ - "98383941-d6fe-49cd-85ee-a0ae3c381e3a" + "7697cac3-2a6b-4f6f-8fb5-3753887a9189" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2868,10 +2865,10 @@ "11979" ], "x-ms-correlation-request-id": [ - "27654372-e74d-454b-a12c-0b02dae4c4e1" + "d6d2b66a-41c3-453d-82da-de910efdb5f3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142132Z:27654372-e74d-454b-a12c-0b02dae4c4e1" + "FRANCESOUTH:20201108T182414Z:d6d2b66a-41c3-453d-82da-de910efdb5f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2880,10 +2877,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:21:32 GMT" + "Sun, 08 Nov 2020 18:24:13 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2892,20 +2889,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"name\": \"ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-09-07T14:21:01.8804899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"name\": \"60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-11-08T18:23:43.6831209Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZWJjNmZiNjgtZGFjYy00MzlmLTkyZmMtODJjZmFiMDMxYzdiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBmZWVmYzMtYTNmYy00N2M3LTgzNTktYTZjMzg1N2U5MWIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2916,7 +2913,7 @@ "no-cache" ], "x-ms-request-id": [ - "964f2212-2295-4d90-8c80-27ff0732a24b" + "4ead6dc2-23c0-4b58-86ec-705d4a9bde22" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -2934,10 +2931,10 @@ "11978" ], "x-ms-correlation-request-id": [ - "8dada84d-8bd7-4706-ab3e-c6bc37f96d3a" + "cf0a334a-901b-4f4d-a22b-407f9823c543" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142202Z:8dada84d-8bd7-4706-ab3e-c6bc37f96d3a" + "FRANCESOUTH:20201108T182444Z:cf0a334a-901b-4f4d-a22b-407f9823c543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2946,10 +2943,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:22:01 GMT" + "Sun, 08 Nov 2020 18:24:44 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2958,20 +2955,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"name\": \"ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-09-07T14:21:01.8804899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"name\": \"60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-11-08T18:23:43.6831209Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZWJjNmZiNjgtZGFjYy00MzlmLTkyZmMtODJjZmFiMDMxYzdiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBmZWVmYzMtYTNmYy00N2M3LTgzNTktYTZjMzg1N2U5MWIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -2982,7 +2979,7 @@ "no-cache" ], "x-ms-request-id": [ - "d99e0303-73e1-4a1b-a18b-e53c9279e884" + "4892d15b-b137-4c34-be5a-1d25514dc796" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3000,10 +2997,10 @@ "11977" ], "x-ms-correlation-request-id": [ - "d5281770-2d13-43b2-bb12-b6a65d6b23f5" + "6cd020d9-cc58-4a58-8c57-c9b2ab13d12d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142232Z:d5281770-2d13-43b2-bb12-b6a65d6b23f5" + "FRANCESOUTH:20201108T182514Z:6cd020d9-cc58-4a58-8c57-c9b2ab13d12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3012,10 +3009,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:22:32 GMT" + "Sun, 08 Nov 2020 18:25:14 GMT" ], "Content-Length": [ - "514" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3024,20 +3021,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"name\": \"ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-09-07T14:21:01.8804899Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"name\": \"60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2020-11-08T18:23:43.6831209Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZWJjNmZiNjgtZGFjYy00MzlmLTkyZmMtODJjZmFiMDMxYzdiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBmZWVmYzMtYTNmYy00N2M3LTgzNTktYTZjMzg1N2U5MWIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3048,7 +3045,7 @@ "no-cache" ], "x-ms-request-id": [ - "43f2889c-d3ec-4e94-88fa-8393e0d3034e" + "d16aae24-1cd3-40a9-b6e1-7f65d72b9a32" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3066,10 +3063,10 @@ "11976" ], "x-ms-correlation-request-id": [ - "464a13a7-5b25-4699-884a-f3d9a81970cc" + "d2e8f18b-9723-4255-9c4a-a6579e68d758" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142302Z:464a13a7-5b25-4699-884a-f3d9a81970cc" + "FRANCESOUTH:20201108T182544Z:d2e8f18b-9723-4255-9c4a-a6579e68d758" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3078,10 +3075,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:02 GMT" + "Sun, 08 Nov 2020 18:25:44 GMT" ], "Content-Length": [ - "524" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3090,20 +3087,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"name\": \"ebc6fb68-dacc-439f-92fc-82cfab031c7b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:21:01.8804899Z\",\r\n \"endTime\": \"2020-09-07T14:22:36.838622Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"name\": \"60feefc3-a3fc-47c7-8359-a6c3857e91b3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:23:43.6831209Z\",\r\n \"endTime\": \"2020-11-08T18:25:21.5891867Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/ebc6fb68-dacc-439f-92fc-82cfab031c7b?api-version=2020-02-01&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZWJjNmZiNjgtZGFjYy00MzlmLTkyZmMtODJjZmFiMDMxYzdiP2FwaS12ZXJzaW9uPTIwMjAtMDItMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/60feefc3-a3fc-47c7-8359-a6c3857e91b3?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvNjBmZWVmYzMtYTNmYy00N2M3LTgzNTktYTZjMzg1N2U5MWIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3114,7 +3111,7 @@ "no-cache" ], "x-ms-request-id": [ - "730104b8-b20c-4295-8ea4-8dd5068fbc69" + "0c28173c-c946-4024-809b-6072bb5cf601" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3132,10 +3129,10 @@ "11975" ], "x-ms-correlation-request-id": [ - "6ab9ce8a-4944-4036-b7f0-1280c98b3c71" + "71c87381-ff53-46cd-b7fe-11c43a757795" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142303Z:6ab9ce8a-4944-4036-b7f0-1280c98b3c71" + "FRANCESOUTH:20201108T182544Z:71c87381-ff53-46cd-b7fe-11c43a757795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3144,10 +3141,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:02 GMT" + "Sun, 08 Nov 2020 18:25:44 GMT" ], "Content-Length": [ - "1796" + "1875" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3156,32 +3153,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"name\": \"ps8623/ps1301/ps6720\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A21%3A01.9433463Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"name\": \"ps6720\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps6720\",\r\n \"ownerId\": \"8f82c7b4-0509-489d-9e97-d719b9b955b4\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv4\": true,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4f96af77\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps1301/volumes/ps6720\",\r\n \"poolId\": \"a0b11a36-e539-06e6-ee4f-cdae3a0b2028\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"fileSystemId\": \"2625a666-8c00-2c44-c3c7-326ed68016c5\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"name\": \"ps4686/ps7403/ps9008\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A23%3A43.7581409Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"name\": \"ps9008\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"ps9008\",\r\n \"ownerId\": \"d6b6d566-7ca6-11e9-bd52-5e79ea9641f1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": false,\r\n \"nfsv4\": true,\r\n \"nfsv41\": true,\r\n \"allowedClients\": \"1.2.3.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv4.1\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_f1908a75\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"vendorID\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps7403/volumes/ps9008\",\r\n \"poolId\": \"230e9e1a-fe1c-644b-ea4e-4b60368cacdc\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"fileSystemId\": \"9711fae0-4623-0083-6f17-5a3b1333ce1e\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"isCreate\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\",\r\n \"smbEncryption\": false,\r\n \"qosType\": \"Auto\",\r\n \"smbContinuouslyAvailable\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczI4NjI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczM0Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0098f288-c11d-4530-b8ff-7f8815402de9" + "ce7d5949-a868-4d1a-b9b4-415ba31d0aaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "114" + "120" ] }, "ResponseHeaders": { @@ -3192,13 +3189,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A23%3A06.8339354Z'\"" + "W/\"datetime'2020-11-08T18%3A25%3A50.0870418Z'\"" ], "x-ms-request-id": [ - "f924fbfd-32cf-4b38-a5b8-63bf528637df" + "de301398-6f9c-4ac9-a239-a0ae928ab70e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a1dbc6-11f6-42a8-a8a9-5cef2332a241?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1bc3b25b-7205-47e4-a2af-311c01542411?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3216,10 +3213,10 @@ "1193" ], "x-ms-correlation-request-id": [ - "6ffa26a9-92e9-4a61-8784-6e56abeb97a0" + "d7e979c4-9bee-4b94-b7bc-5316d9f174c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142307Z:6ffa26a9-92e9-4a61-8784-6e56abeb97a0" + "FRANCESOUTH:20201108T182551Z:d7e979c4-9bee-4b94-b7bc-5316d9f174c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3228,10 +3225,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:07 GMT" + "Sun, 08 Nov 2020 18:25:51 GMT" ], "Content-Length": [ - "402" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3240,20 +3237,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862\",\r\n \"name\": \"ps8623/ps2862\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A23%3A06.8339354Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343\",\r\n \"name\": \"ps4686/ps343\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A25%3A50.0870418Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"totalThroughputMibps\": 0.0,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a1dbc6-11f6-42a8-a8a9-5cef2332a241?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjRhMWRiYzYtMTFmNi00MmE4LWE4YTktNWNlZjIzMzJhMjQxP2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1bc3b25b-7205-47e4-a2af-311c01542411?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWJjM2IyNWItNzIwNS00N2U0LWEyYWYtMzExYzAxNTQyNDExP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3264,7 +3261,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef492853-8c49-41c1-ba63-8c15e844d9cb" + "6727fe96-e1a8-47a4-b6d1-b389132820a6" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3282,10 +3279,10 @@ "11973" ], "x-ms-correlation-request-id": [ - "cbd37401-8c55-46a1-91bf-52dbdf3bed97" + "364a73af-ce85-4058-9bcf-9ff73d5dad1f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142337Z:cbd37401-8c55-46a1-91bf-52dbdf3bed97" + "FRANCESOUTH:20201108T182621Z:364a73af-ce85-4058-9bcf-9ff73d5dad1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3294,10 +3291,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:37 GMT" + "Sun, 08 Nov 2020 18:26:21 GMT" ], "Content-Length": [ - "510" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3306,20 +3303,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/b4a1dbc6-11f6-42a8-a8a9-5cef2332a241\",\r\n \"name\": \"b4a1dbc6-11f6-42a8-a8a9-5cef2332a241\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:23:06.7502297Z\",\r\n \"endTime\": \"2020-09-07T14:23:07.1721436Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1bc3b25b-7205-47e4-a2af-311c01542411\",\r\n \"name\": \"1bc3b25b-7205-47e4-a2af-311c01542411\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:25:50.0059695Z\",\r\n \"endTime\": \"2020-11-08T18:25:50.302794Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczI4NjI/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczM0Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3330,10 +3327,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A23%3A07.1621681Z'\"" + "W/\"datetime'2020-11-08T18%3A25%3A58.5410587Z'\"" ], "x-ms-request-id": [ - "c6d9f4c4-72e3-45f1-93f7-f2d799eff871" + "d30059c4-2908-4c2e-afe3-885fe0cf8441" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3351,10 +3348,10 @@ "11972" ], "x-ms-correlation-request-id": [ - "392ada05-d762-4c1f-b5f2-c8af31ea8e37" + "cdc824a1-356c-4891-93f5-5c7847824d45" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142338Z:392ada05-d762-4c1f-b5f2-c8af31ea8e37" + "FRANCESOUTH:20201108T182622Z:cdc824a1-356c-4891-93f5-5c7847824d45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3363,10 +3360,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:37 GMT" + "Sun, 08 Nov 2020 18:26:21 GMT" ], "Content-Length": [ - "451" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3375,32 +3372,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862\",\r\n \"name\": \"ps8623/ps2862\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A23%3A07.1621681Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"bd85353b-1057-4218-870f-187c1e838c2b\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343\",\r\n \"name\": \"ps4686/ps343\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A25%3A58.5410587Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"poolId\": \"7b593f2c-3680-d407-60ac-19b16f1c1450\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"qosType\": \"Auto\",\r\n \"totalThroughputMibps\": 65.536,\r\n \"utilizedThroughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczI4NjIvdm9sdW1lcy9wczgzNzk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczM0My92b2x1bWVzL3BzNTUzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps8379\",\r\n \"serviceLevel\": \"Standard\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"ps5531\",\r\n \"serviceLevel\": \"Standard\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfa438dd-6598-47f3-91ae-df773fe34f03" + "11f49f75-49af-43ab-9be9-77521344b96c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "661" + "738" ] }, "ResponseHeaders": { @@ -3411,13 +3408,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A23%3A40.7940182Z'\"" + "W/\"datetime'2020-11-08T18%3A26%3A23.9331316Z'\"" ], "x-ms-request-id": [ - "e3fc642f-f2c3-465b-a0d9-bcdbc34ab331" + "f90d1eca-a6d9-4dca-a4c7-bb5cf0c4b225" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3435,10 +3432,10 @@ "1192" ], "x-ms-correlation-request-id": [ - "256bd28e-bf31-4c33-a0fa-1924ee151a61" + "e7deb7a1-bd8b-423c-96fd-8d9f10809ac0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142341Z:256bd28e-bf31-4c33-a0fa-1924ee151a61" + "FRANCESOUTH:20201108T182624Z:e7deb7a1-bd8b-423c-96fd-8d9f10809ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3447,10 +3444,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:23:40 GMT" + "Sun, 08 Nov 2020 18:26:24 GMT" ], "Content-Length": [ - "808" + "1032" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3459,20 +3456,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\",\r\n \"name\": \"ps8623/ps2862/ps8379\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A23%3A40.7940182Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps8379\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\",\r\n \"name\": \"ps4686/ps343/ps5531\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A26%3A23.9331316Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps5531\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3483,7 +3480,7 @@ "no-cache" ], "x-ms-request-id": [ - "fa7bd264-7eb3-4b29-a5ab-82173e72f9a4" + "4c47f7b4-4161-407c-ad9b-0d9f4dc64bca" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3501,10 +3498,10 @@ "11971" ], "x-ms-correlation-request-id": [ - "19e871f2-164d-41a0-974e-92277ba642b7" + "41fb9782-6087-4082-aba2-52b91ca0ff5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142411Z:19e871f2-164d-41a0-974e-92277ba642b7" + "FRANCESOUTH:20201108T182655Z:41fb9782-6087-4082-aba2-52b91ca0ff5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3513,10 +3510,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:24:11 GMT" + "Sun, 08 Nov 2020 18:26:54 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3525,20 +3522,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3549,7 +3546,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5e043bf-42f5-4848-a5ed-91b87d097b2b" + "f68e5788-bf20-4cc2-b637-a9b5b3e708ac" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3567,10 +3564,10 @@ "11970" ], "x-ms-correlation-request-id": [ - "3522fec9-84cd-46d2-b114-825e266fecc6" + "658b9c80-b908-46a7-9ee1-9e7de3c22f2a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142442Z:3522fec9-84cd-46d2-b114-825e266fecc6" + "FRANCESOUTH:20201108T182725Z:658b9c80-b908-46a7-9ee1-9e7de3c22f2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3579,10 +3576,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:24:41 GMT" + "Sun, 08 Nov 2020 18:27:24 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3591,20 +3588,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3615,7 +3612,7 @@ "no-cache" ], "x-ms-request-id": [ - "19d220cb-6e59-4428-8933-879246c8edb3" + "609ee969-1925-46a7-ae91-3eda027dccb5" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3623,20 +3620,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "x-ms-correlation-request-id": [ - "c44d874b-0bc6-4ffc-a31b-9a1db01fd7de" + "c3156839-3412-4d41-9abc-4859cb36e6ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142512Z:c44d874b-0bc6-4ffc-a31b-9a1db01fd7de" + "FRANCESOUTH:20201108T182755Z:c3156839-3412-4d41-9abc-4859cb36e6ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3645,10 +3642,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:25:12 GMT" + "Sun, 08 Nov 2020 18:27:55 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3657,20 +3654,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3681,7 +3678,7 @@ "no-cache" ], "x-ms-request-id": [ - "dc6c59f3-aeae-4124-b2f7-8ef163edc4ef" + "3ee38044-50bb-438c-ab67-0fa809f5ed23" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3689,20 +3686,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], "x-ms-correlation-request-id": [ - "4729ad2d-fc52-4385-9d4c-e9cbb1662473" + "85200558-5a5a-4afe-a559-2378af73cdfe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142543Z:4729ad2d-fc52-4385-9d4c-e9cbb1662473" + "FRANCESOUTH:20201108T182825Z:85200558-5a5a-4afe-a559-2378af73cdfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3711,10 +3708,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:25:42 GMT" + "Sun, 08 Nov 2020 18:28:25 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3723,20 +3720,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3747,7 +3744,7 @@ "no-cache" ], "x-ms-request-id": [ - "cae80dfb-9007-4b22-80dc-94637eba6b38" + "c1c54466-3f4a-420c-8787-b51d885695b7" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3765,10 +3762,10 @@ "11967" ], "x-ms-correlation-request-id": [ - "74a20999-9413-4275-ad07-2cfe8657a3fa" + "7f9edec3-ee18-43b7-9d58-95b1cdf060c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142614Z:74a20999-9413-4275-ad07-2cfe8657a3fa" + "FRANCESOUTH:20201108T182856Z:7f9edec3-ee18-43b7-9d58-95b1cdf060c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3777,10 +3774,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:26:13 GMT" + "Sun, 08 Nov 2020 18:28:55 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3789,20 +3786,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3813,7 +3810,7 @@ "no-cache" ], "x-ms-request-id": [ - "7acb102d-7e32-4336-9034-1081dcf050ea" + "5402b169-d59e-454a-adf1-a6d2bdbb2772" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3821,20 +3818,20 @@ "Access-Control-Expose-Headers": [ "Request-Context" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], "Server": [ "Microsoft-IIS/10.0" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], "x-ms-correlation-request-id": [ - "c91b5d97-ce14-432f-b21d-7dc82d3facd0" + "e826ab39-e5e2-4e98-998f-1f9d4118834f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142644Z:c91b5d97-ce14-432f-b21d-7dc82d3facd0" + "FRANCESOUTH:20201108T182926Z:e826ab39-e5e2-4e98-998f-1f9d4118834f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3843,10 +3840,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:26:44 GMT" + "Sun, 08 Nov 2020 18:29:25 GMT" ], "Content-Length": [ - "514" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3855,20 +3852,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYxM2FjNzItM2JkMC00Y2M2LWEzOTQtZWE4MTBjNTg1MzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDItMDE=", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMDQ3YmM5OTYtNThlMS00MTlkLWE3MjctNGViMTVkNjg5MThhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3879,7 +3876,7 @@ "no-cache" ], "x-ms-request-id": [ - "c101a54a-dd38-4208-a597-7febc88f96c9" + "07fc8b99-bbd4-4bfc-aa64-293398e1c87b" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3897,10 +3894,10 @@ "11965" ], "x-ms-correlation-request-id": [ - "03199914-94c5-4a5a-831a-38d36a898750" + "54979b73-598f-4448-9dd8-6722b509d7c1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142714Z:03199914-94c5-4a5a-831a-38d36a898750" + "FRANCESOUTH:20201108T182957Z:54979b73-598f-4448-9dd8-6722b509d7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3909,10 +3906,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:14 GMT" + "Sun, 08 Nov 2020 18:29:56 GMT" ], "Content-Length": [ - "525" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3921,20 +3918,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westus2/operationResults/f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"name\": \"f613ac72-3bd0-4cc6-a394-ea810c585349\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-07T14:23:40.7268077Z\",\r\n \"endTime\": \"2020-09-07T14:26:49.1085813Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.NetApp/locations/westcentralus/operationResults/047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"name\": \"047bc996-58e1-419d-a727-4eb15d68918a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-08T18:26:23.8329731Z\",\r\n \"endTime\": \"2020-11-08T18:29:43.5405057Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczI4NjIvdm9sdW1lcy9wczgzNzk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczM0My92b2x1bWVzL3BzNTUzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ] }, "ResponseHeaders": { @@ -3945,10 +3942,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A26%3A49.1068157Z'\"" + "W/\"datetime'2020-11-08T18%3A29%3A43.5325009Z'\"" ], "x-ms-request-id": [ - "19dbc732-dc85-4d7a-a204-1a8880d26c18" + "20106a3f-bff9-4fe0-bac6-25edfcef1f35" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -3966,10 +3963,10 @@ "11964" ], "x-ms-correlation-request-id": [ - "6579b21a-c546-4afc-a0dd-0508c98cf2c4" + "43b95f36-3829-4d97-ab71-858f031a9877" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142715Z:6579b21a-c546-4afc-a0dd-0508c98cf2c4" + "FRANCESOUTH:20201108T182957Z:43b95f36-3829-4d97-ab71-858f031a9877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3978,10 +3975,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:14 GMT" + "Sun, 08 Nov 2020 18:29:56 GMT" ], "Content-Length": [ - "1285" + "1534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3990,26 +3987,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\",\r\n \"name\": \"ps8623/ps2862/ps8379\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A26%3A49.1068157Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"fileSystemId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"name\": \"ps8379\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps8379\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv4\": false,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2df1b99d\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\",\r\n \"name\": \"ps4686/ps343/ps5531\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A29%3A43.5325009Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"fileSystemId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"name\": \"ps5531\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps5531\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 1,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"0.0.0.0/0\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false,\r\n \"hasRootAccess\": true\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_88ce0341\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379?api-version=2020-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzOTkxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczg2MjMvY2FwYWNpdHlQb29scy9wczI4NjIvdm9sdW1lcy9wczgzNzk/YXBpLXZlcnNpb249MjAyMC0wMi0wMQ==", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzYyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ2ODYvY2FwYWNpdHlQb29scy9wczM0My92b2x1bWVzL3BzNTUzMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 2,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"2.3.4.0/24\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1db5bc60-2625-4326-884a-167e32c38cea" + "4e1122dd-a619-4a0e-a3e4-1913e696e581" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.6.0.0" + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4026,10 +4023,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2020-09-07T14%3A27%3A15.96387Z'\"" + "W/\"datetime'2020-11-08T18%3A29%3A57.8116623Z'\"" ], "x-ms-request-id": [ - "c1f0b78a-c4ce-43df-8aa2-07997b7fbca4" + "1e6ff87d-49a4-435a-b175-a63f2fc8d46e" ], "Request-Context": [ "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" @@ -4047,10 +4044,10 @@ "1191" ], "x-ms-correlation-request-id": [ - "cc2df090-03d1-49b5-9725-d48447ca6fdb" + "6cd0ffe1-460f-4d52-8248-79ef61780459" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142719Z:cc2df090-03d1-49b5-9725-d48447ca6fdb" + "FRANCESOUTH:20201108T183004Z:6cd0ffe1-460f-4d52-8248-79ef61780459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4059,10 +4056,10 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:18 GMT" + "Sun, 08 Nov 2020 18:30:04 GMT" ], "Content-Length": [ - "1270" + "1514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4071,26 +4068,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.NetApp/netAppAccounts/ps8623/capacityPools/ps2862/volumes/ps8379\",\r\n \"name\": \"ps8623/ps2862/ps8379\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-09-07T14%3A27%3A15.96387Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"fileSystemId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"7fd9e5d5-def0-c1a7-fbc3-ffa41b6865bf\",\r\n \"name\": \"ps8379\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps8379\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 2,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"2.3.4.0/24\"\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2df1b99d\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps9910/providers/Microsoft.Network/virtualNetworks/ps9910-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.NetApp/netAppAccounts/ps4686/capacityPools/ps343/volumes/ps5531\",\r\n \"name\": \"ps4686/ps343/ps5531\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2020-11-08T18%3A29%3A57.8116623Z'\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"\",\r\n \"mountTargetId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"fileSystemId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"startIp\": \"\",\r\n \"endIp\": \"\",\r\n \"gateway\": \"\",\r\n \"netmask\": \"\",\r\n \"subnet\": \"\",\r\n \"ipAddress\": \"10.0.1.4\",\r\n \"smbServerFQDN\": \"\"\r\n }\r\n ],\r\n \"throughputMibps\": 0.0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"61113e96-c173-b053-a9b8-693476a1fe62\",\r\n \"name\": \"ps5531\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"ps5531\",\r\n \"usageThreshold\": 214748364800,\r\n \"exportPolicy\": {\r\n \"rules\": [\r\n {\r\n \"ruleIndex\": 2,\r\n \"unixReadOnly\": false,\r\n \"unixReadWrite\": true,\r\n \"cifs\": false,\r\n \"nfsv3\": true,\r\n \"nfsv41\": false,\r\n \"allowedClients\": \"2.3.4.0/24\",\r\n \"kerberos5ReadOnly\": false,\r\n \"kerberos5ReadWrite\": false,\r\n \"kerberos5iReadOnly\": false,\r\n \"kerberos5iReadWrite\": false,\r\n \"kerberos5pReadOnly\": false,\r\n \"kerberos5pReadWrite\": false\r\n }\r\n ]\r\n },\r\n \"protocolTypes\": [\r\n \"NFSv3\"\r\n ],\r\n \"baremetalTenantId\": \"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_88ce0341\",\r\n \"subnetId\": \"/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourceGroups/ps3622/providers/Microsoft.Network/virtualNetworks/ps3622-vnet/subnets/default\",\r\n \"snapshotDirectoryVisible\": false,\r\n \"kerberosEnabled\": false,\r\n \"securityStyle\": \"Unix\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps9910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzOTkxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps3622?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzYyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13893c29-272c-41f7-8d30-eec151dcdf74" + "a90d6f4e-2949-40c9-8232-89b88e8666f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4101,7 +4098,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4110,13 +4107,13 @@ "14999" ], "x-ms-request-id": [ - "f96b3cae-68b0-4fe5-a75d-7e4b140c4d21" + "38a6e652-9d9e-4db8-b16b-860fb6f30c55" ], "x-ms-correlation-request-id": [ - "f96b3cae-68b0-4fe5-a75d-7e4b140c4d21" + "38a6e652-9d9e-4db8-b16b-860fb6f30c55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142722Z:f96b3cae-68b0-4fe5-a75d-7e4b140c4d21" + "FRANCESOUTH:20201108T183008Z:38a6e652-9d9e-4db8-b16b-860fb6f30c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4125,7 +4122,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:22 GMT" + "Sun, 08 Nov 2020 18:30:07 GMT" ], "Expires": [ "-1" @@ -4138,16 +4135,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4158,7 +4155,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4167,13 +4164,13 @@ "11999" ], "x-ms-request-id": [ - "d9111b42-04c0-4f95-9d18-e1beca2f2dae" + "9f36e2cc-6c24-4afd-9fd9-ac6de068285a" ], "x-ms-correlation-request-id": [ - "d9111b42-04c0-4f95-9d18-e1beca2f2dae" + "9f36e2cc-6c24-4afd-9fd9-ac6de068285a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142738Z:d9111b42-04c0-4f95-9d18-e1beca2f2dae" + "FRANCESOUTH:20201108T183023Z:9f36e2cc-6c24-4afd-9fd9-ac6de068285a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4182,7 +4179,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:37 GMT" + "Sun, 08 Nov 2020 18:30:23 GMT" ], "Expires": [ "-1" @@ -4195,16 +4192,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4215,7 +4212,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4224,13 +4221,13 @@ "11998" ], "x-ms-request-id": [ - "d6cca7dc-91b6-4eae-907f-0743e504a9b7" + "15643aaf-76ac-47b7-8876-45ed40be8265" ], "x-ms-correlation-request-id": [ - "d6cca7dc-91b6-4eae-907f-0743e504a9b7" + "15643aaf-76ac-47b7-8876-45ed40be8265" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142753Z:d6cca7dc-91b6-4eae-907f-0743e504a9b7" + "FRANCESOUTH:20201108T183039Z:15643aaf-76ac-47b7-8876-45ed40be8265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4239,7 +4236,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:27:53 GMT" + "Sun, 08 Nov 2020 18:30:38 GMT" ], "Expires": [ "-1" @@ -4252,16 +4249,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4272,7 +4269,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4281,13 +4278,13 @@ "11997" ], "x-ms-request-id": [ - "b6138532-878c-42eb-bc07-b85ccd362324" + "ddfd2782-b8e6-42cb-bd5f-ac10db2e3749" ], "x-ms-correlation-request-id": [ - "b6138532-878c-42eb-bc07-b85ccd362324" + "ddfd2782-b8e6-42cb-bd5f-ac10db2e3749" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142808Z:b6138532-878c-42eb-bc07-b85ccd362324" + "FRANCESOUTH:20201108T183054Z:ddfd2782-b8e6-42cb-bd5f-ac10db2e3749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4296,7 +4293,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:28:08 GMT" + "Sun, 08 Nov 2020 18:30:54 GMT" ], "Expires": [ "-1" @@ -4309,16 +4306,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4329,7 +4326,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4338,13 +4335,13 @@ "11996" ], "x-ms-request-id": [ - "d868240a-25a8-4df2-a9ed-55a2d254dc46" + "d86ec736-6cc9-4ba9-9ace-3e0dbe8a50ad" ], "x-ms-correlation-request-id": [ - "d868240a-25a8-4df2-a9ed-55a2d254dc46" + "d86ec736-6cc9-4ba9-9ace-3e0dbe8a50ad" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142824Z:d868240a-25a8-4df2-a9ed-55a2d254dc46" + "FRANCESOUTH:20201108T183109Z:d86ec736-6cc9-4ba9-9ace-3e0dbe8a50ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4353,7 +4350,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:28:23 GMT" + "Sun, 08 Nov 2020 18:31:09 GMT" ], "Expires": [ "-1" @@ -4366,16 +4363,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4386,7 +4383,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4395,13 +4392,13 @@ "11995" ], "x-ms-request-id": [ - "7129b3b7-962f-4f90-af2b-f68ca98eebde" + "2464409b-c233-4565-b0e1-7e67eb709437" ], "x-ms-correlation-request-id": [ - "7129b3b7-962f-4f90-af2b-f68ca98eebde" + "2464409b-c233-4565-b0e1-7e67eb709437" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142839Z:7129b3b7-962f-4f90-af2b-f68ca98eebde" + "FRANCESOUTH:20201108T183125Z:2464409b-c233-4565-b0e1-7e67eb709437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4410,7 +4407,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:28:38 GMT" + "Sun, 08 Nov 2020 18:31:25 GMT" ], "Expires": [ "-1" @@ -4423,16 +4420,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4443,7 +4440,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4452,13 +4449,13 @@ "11994" ], "x-ms-request-id": [ - "15ff0278-5066-4f3e-91eb-24ac4723ed87" + "1f7fb2ec-4185-440d-9806-b189250e74f3" ], "x-ms-correlation-request-id": [ - "15ff0278-5066-4f3e-91eb-24ac4723ed87" + "1f7fb2ec-4185-440d-9806-b189250e74f3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142854Z:15ff0278-5066-4f3e-91eb-24ac4723ed87" + "FRANCESOUTH:20201108T183140Z:1f7fb2ec-4185-440d-9806-b189250e74f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4467,7 +4464,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:28:54 GMT" + "Sun, 08 Nov 2020 18:31:40 GMT" ], "Expires": [ "-1" @@ -4480,16 +4477,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4500,7 +4497,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4509,13 +4506,13 @@ "11993" ], "x-ms-request-id": [ - "f09813e6-ec3d-46ca-ac64-224a255e23cd" + "6ca82c1f-b429-4261-99f2-4fd46e8d605b" ], "x-ms-correlation-request-id": [ - "f09813e6-ec3d-46ca-ac64-224a255e23cd" + "6ca82c1f-b429-4261-99f2-4fd46e8d605b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142910Z:f09813e6-ec3d-46ca-ac64-224a255e23cd" + "FRANCESOUTH:20201108T183155Z:6ca82c1f-b429-4261-99f2-4fd46e8d605b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4524,7 +4521,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:29:09 GMT" + "Sun, 08 Nov 2020 18:31:55 GMT" ], "Expires": [ "-1" @@ -4537,16 +4534,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4557,7 +4554,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4566,13 +4563,13 @@ "11992" ], "x-ms-request-id": [ - "62816361-b199-405f-8017-9161d2a4f1c5" + "883368ff-76ed-4b40-a22f-555c6ae92eb1" ], "x-ms-correlation-request-id": [ - "62816361-b199-405f-8017-9161d2a4f1c5" + "883368ff-76ed-4b40-a22f-555c6ae92eb1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142925Z:62816361-b199-405f-8017-9161d2a4f1c5" + "FRANCESOUTH:20201108T183211Z:883368ff-76ed-4b40-a22f-555c6ae92eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4581,7 +4578,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:29:24 GMT" + "Sun, 08 Nov 2020 18:32:10 GMT" ], "Expires": [ "-1" @@ -4594,16 +4591,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4614,7 +4611,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4623,13 +4620,13 @@ "11991" ], "x-ms-request-id": [ - "981656ce-bdb9-4ae8-9dc4-b68010917034" + "01d57cda-8cac-4e13-a4f1-90b1af342c8e" ], "x-ms-correlation-request-id": [ - "981656ce-bdb9-4ae8-9dc4-b68010917034" + "01d57cda-8cac-4e13-a4f1-90b1af342c8e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142940Z:981656ce-bdb9-4ae8-9dc4-b68010917034" + "FRANCESOUTH:20201108T183226Z:01d57cda-8cac-4e13-a4f1-90b1af342c8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4638,7 +4635,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:29:39 GMT" + "Sun, 08 Nov 2020 18:32:25 GMT" ], "Expires": [ "-1" @@ -4651,16 +4648,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4671,7 +4668,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4680,13 +4677,13 @@ "11990" ], "x-ms-request-id": [ - "b5150990-095d-4e86-a735-d9b3d3f78e2b" + "76aefdb9-d63c-4529-b825-03a6b4f38529" ], "x-ms-correlation-request-id": [ - "b5150990-095d-4e86-a735-d9b3d3f78e2b" + "76aefdb9-d63c-4529-b825-03a6b4f38529" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T142956Z:b5150990-095d-4e86-a735-d9b3d3f78e2b" + "FRANCESOUTH:20201108T183241Z:76aefdb9-d63c-4529-b825-03a6b4f38529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4695,7 +4692,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:29:56 GMT" + "Sun, 08 Nov 2020 18:32:41 GMT" ], "Expires": [ "-1" @@ -4708,16 +4705,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4728,7 +4725,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4737,13 +4734,13 @@ "11989" ], "x-ms-request-id": [ - "a58a7c9a-7a23-44e9-b467-44d60a31215c" + "7ce4c217-9695-40d5-8a69-d83a3ff2f1ca" ], "x-ms-correlation-request-id": [ - "a58a7c9a-7a23-44e9-b467-44d60a31215c" + "7ce4c217-9695-40d5-8a69-d83a3ff2f1ca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143011Z:a58a7c9a-7a23-44e9-b467-44d60a31215c" + "FRANCESOUTH:20201108T183257Z:7ce4c217-9695-40d5-8a69-d83a3ff2f1ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4752,7 +4749,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:30:11 GMT" + "Sun, 08 Nov 2020 18:32:56 GMT" ], "Expires": [ "-1" @@ -4765,16 +4762,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4785,7 +4782,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4794,13 +4791,13 @@ "11988" ], "x-ms-request-id": [ - "928e3cd2-0dad-4bb8-95ae-a0fd43be6ca2" + "9aa92578-9143-474e-b4bb-ec1d2fa70a4c" ], "x-ms-correlation-request-id": [ - "928e3cd2-0dad-4bb8-95ae-a0fd43be6ca2" + "9aa92578-9143-474e-b4bb-ec1d2fa70a4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143026Z:928e3cd2-0dad-4bb8-95ae-a0fd43be6ca2" + "FRANCESOUTH:20201108T183312Z:9aa92578-9143-474e-b4bb-ec1d2fa70a4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4809,7 +4806,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:30:26 GMT" + "Sun, 08 Nov 2020 18:33:12 GMT" ], "Expires": [ "-1" @@ -4822,16 +4819,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4842,7 +4839,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4851,13 +4848,13 @@ "11987" ], "x-ms-request-id": [ - "f6147116-861d-4a03-b210-b71d6ba0b086" + "58073c01-ce36-4856-bb2c-c6fd11d37091" ], "x-ms-correlation-request-id": [ - "f6147116-861d-4a03-b210-b71d6ba0b086" + "58073c01-ce36-4856-bb2c-c6fd11d37091" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143042Z:f6147116-861d-4a03-b210-b71d6ba0b086" + "FRANCESOUTH:20201108T183328Z:58073c01-ce36-4856-bb2c-c6fd11d37091" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4866,7 +4863,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:30:41 GMT" + "Sun, 08 Nov 2020 18:33:27 GMT" ], "Expires": [ "-1" @@ -4879,16 +4876,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4899,7 +4896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4908,13 +4905,13 @@ "11986" ], "x-ms-request-id": [ - "5014af06-162c-4b11-bc12-db11c546f44e" + "7e7f6288-01c6-4db6-adfd-9893919f3ddc" ], "x-ms-correlation-request-id": [ - "5014af06-162c-4b11-bc12-db11c546f44e" + "7e7f6288-01c6-4db6-adfd-9893919f3ddc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143057Z:5014af06-162c-4b11-bc12-db11c546f44e" + "FRANCESOUTH:20201108T183343Z:7e7f6288-01c6-4db6-adfd-9893919f3ddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,7 +4920,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:30:56 GMT" + "Sun, 08 Nov 2020 18:33:43 GMT" ], "Expires": [ "-1" @@ -4936,16 +4933,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -4956,7 +4953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4965,13 +4962,13 @@ "11985" ], "x-ms-request-id": [ - "61984987-fbdb-4c42-b92c-f4496cebbc3b" + "e49c5862-86ad-4d61-bbb9-c893c074255e" ], "x-ms-correlation-request-id": [ - "61984987-fbdb-4c42-b92c-f4496cebbc3b" + "e49c5862-86ad-4d61-bbb9-c893c074255e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143112Z:61984987-fbdb-4c42-b92c-f4496cebbc3b" + "FRANCESOUTH:20201108T183358Z:e49c5862-86ad-4d61-bbb9-c893c074255e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4980,7 +4977,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:31:11 GMT" + "Sun, 08 Nov 2020 18:33:58 GMT" ], "Expires": [ "-1" @@ -4993,16 +4990,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5013,7 +5010,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5022,13 +5019,13 @@ "11984" ], "x-ms-request-id": [ - "418ea31e-2285-41ee-9232-dc6420c2ecb2" + "7bd4116e-6ead-4ac3-b1e8-123d89d6c659" ], "x-ms-correlation-request-id": [ - "418ea31e-2285-41ee-9232-dc6420c2ecb2" + "7bd4116e-6ead-4ac3-b1e8-123d89d6c659" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143128Z:418ea31e-2285-41ee-9232-dc6420c2ecb2" + "FRANCESOUTH:20201108T183414Z:7bd4116e-6ead-4ac3-b1e8-123d89d6c659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5037,7 +5034,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:31:28 GMT" + "Sun, 08 Nov 2020 18:34:13 GMT" ], "Expires": [ "-1" @@ -5050,16 +5047,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5070,7 +5067,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5079,13 +5076,13 @@ "11983" ], "x-ms-request-id": [ - "29f509ab-b758-4939-a6d5-5932ec260c74" + "4a2b93a0-652d-4e00-ab9f-7eabd1fee847" ], "x-ms-correlation-request-id": [ - "29f509ab-b758-4939-a6d5-5932ec260c74" + "4a2b93a0-652d-4e00-ab9f-7eabd1fee847" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143143Z:29f509ab-b758-4939-a6d5-5932ec260c74" + "FRANCESOUTH:20201108T183429Z:4a2b93a0-652d-4e00-ab9f-7eabd1fee847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5094,7 +5091,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:31:43 GMT" + "Sun, 08 Nov 2020 18:34:29 GMT" ], "Expires": [ "-1" @@ -5107,16 +5104,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5127,7 +5124,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5136,13 +5133,13 @@ "11982" ], "x-ms-request-id": [ - "b62b474f-e83d-4ef3-879d-860ac327d3ff" + "b4f8c423-53b5-4d38-a5d0-3275005ef7cc" ], "x-ms-correlation-request-id": [ - "b62b474f-e83d-4ef3-879d-860ac327d3ff" + "b4f8c423-53b5-4d38-a5d0-3275005ef7cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143158Z:b62b474f-e83d-4ef3-879d-860ac327d3ff" + "FRANCESOUTH:20201108T183445Z:b4f8c423-53b5-4d38-a5d0-3275005ef7cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5151,7 +5148,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:31:58 GMT" + "Sun, 08 Nov 2020 18:34:45 GMT" ], "Expires": [ "-1" @@ -5164,16 +5161,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5184,7 +5181,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5193,13 +5190,13 @@ "11981" ], "x-ms-request-id": [ - "a686d1c4-5ee1-4ba2-9aea-3be45937e774" + "9cde5995-1eab-4704-8dc7-25bd66e7db12" ], "x-ms-correlation-request-id": [ - "a686d1c4-5ee1-4ba2-9aea-3be45937e774" + "9cde5995-1eab-4704-8dc7-25bd66e7db12" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143214Z:a686d1c4-5ee1-4ba2-9aea-3be45937e774" + "FRANCESOUTH:20201108T183500Z:9cde5995-1eab-4704-8dc7-25bd66e7db12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5208,7 +5205,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:32:13 GMT" + "Sun, 08 Nov 2020 18:34:59 GMT" ], "Expires": [ "-1" @@ -5221,16 +5218,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5241,7 +5238,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5250,13 +5247,13 @@ "11980" ], "x-ms-request-id": [ - "367eb6f0-36ed-46d0-b911-cb4ec70b6afe" + "abca31b7-9370-4e75-8c0a-2b1fead05a9b" ], "x-ms-correlation-request-id": [ - "367eb6f0-36ed-46d0-b911-cb4ec70b6afe" + "abca31b7-9370-4e75-8c0a-2b1fead05a9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143229Z:367eb6f0-36ed-46d0-b911-cb4ec70b6afe" + "FRANCESOUTH:20201108T183515Z:abca31b7-9370-4e75-8c0a-2b1fead05a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5265,7 +5262,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:32:29 GMT" + "Sun, 08 Nov 2020 18:35:15 GMT" ], "Expires": [ "-1" @@ -5278,16 +5275,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5298,7 +5295,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5307,13 +5304,13 @@ "11979" ], "x-ms-request-id": [ - "06499e66-2f06-48c6-92d4-0eb865e5ff1d" + "b8ff5744-5fe6-4bf0-a5f9-6066d291401d" ], "x-ms-correlation-request-id": [ - "06499e66-2f06-48c6-92d4-0eb865e5ff1d" + "b8ff5744-5fe6-4bf0-a5f9-6066d291401d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143245Z:06499e66-2f06-48c6-92d4-0eb865e5ff1d" + "FRANCESOUTH:20201108T183531Z:b8ff5744-5fe6-4bf0-a5f9-6066d291401d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5322,7 +5319,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:32:44 GMT" + "Sun, 08 Nov 2020 18:35:30 GMT" ], "Expires": [ "-1" @@ -5335,16 +5332,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5355,7 +5352,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5364,13 +5361,13 @@ "11978" ], "x-ms-request-id": [ - "941c4954-2608-4103-8480-4bd93c88af78" + "194558f0-6ff7-42f5-950b-bd38c7ae6b5f" ], "x-ms-correlation-request-id": [ - "941c4954-2608-4103-8480-4bd93c88af78" + "194558f0-6ff7-42f5-950b-bd38c7ae6b5f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143300Z:941c4954-2608-4103-8480-4bd93c88af78" + "FRANCESOUTH:20201108T183546Z:194558f0-6ff7-42f5-950b-bd38c7ae6b5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5379,7 +5376,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:33:00 GMT" + "Sun, 08 Nov 2020 18:35:46 GMT" ], "Expires": [ "-1" @@ -5392,16 +5389,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5412,7 +5409,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5421,13 +5418,13 @@ "11977" ], "x-ms-request-id": [ - "561b50fa-9bd4-40f4-8d16-ea819f94a648" + "e390fda0-b0c0-4c55-9905-f88700b505e8" ], "x-ms-correlation-request-id": [ - "561b50fa-9bd4-40f4-8d16-ea819f94a648" + "e390fda0-b0c0-4c55-9905-f88700b505e8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143315Z:561b50fa-9bd4-40f4-8d16-ea819f94a648" + "FRANCESOUTH:20201108T183601Z:e390fda0-b0c0-4c55-9905-f88700b505e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5436,7 +5433,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:33:15 GMT" + "Sun, 08 Nov 2020 18:36:01 GMT" ], "Expires": [ "-1" @@ -5449,16 +5446,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5469,7 +5466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5478,13 +5475,13 @@ "11976" ], "x-ms-request-id": [ - "9628aaa2-1ef2-4e74-bfba-bbc5e47c869b" + "ac0e5a22-1f18-4da3-9939-94b133b2a56e" ], "x-ms-correlation-request-id": [ - "9628aaa2-1ef2-4e74-bfba-bbc5e47c869b" + "ac0e5a22-1f18-4da3-9939-94b133b2a56e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143331Z:9628aaa2-1ef2-4e74-bfba-bbc5e47c869b" + "FRANCESOUTH:20201108T183617Z:ac0e5a22-1f18-4da3-9939-94b133b2a56e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5493,7 +5490,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:33:30 GMT" + "Sun, 08 Nov 2020 18:36:17 GMT" ], "Expires": [ "-1" @@ -5506,16 +5503,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5526,7 +5523,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5535,13 +5532,13 @@ "11975" ], "x-ms-request-id": [ - "019889e4-b60d-468a-b7d8-47ca19f2e9f3" + "1719086f-a81f-4b44-bab9-cd1879cdecc8" ], "x-ms-correlation-request-id": [ - "019889e4-b60d-468a-b7d8-47ca19f2e9f3" + "1719086f-a81f-4b44-bab9-cd1879cdecc8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143346Z:019889e4-b60d-468a-b7d8-47ca19f2e9f3" + "FRANCESOUTH:20201108T183632Z:1719086f-a81f-4b44-bab9-cd1879cdecc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5550,7 +5547,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:33:45 GMT" + "Sun, 08 Nov 2020 18:36:32 GMT" ], "Expires": [ "-1" @@ -5563,16 +5560,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5586,13 +5583,13 @@ "11974" ], "x-ms-request-id": [ - "272cfaf4-fef5-428a-bbbc-b696df19a55e" + "8b63d3b2-5abd-4dc9-bf6f-c72ee10dd33d" ], "x-ms-correlation-request-id": [ - "272cfaf4-fef5-428a-bbbc-b696df19a55e" + "8b63d3b2-5abd-4dc9-bf6f-c72ee10dd33d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143401Z:272cfaf4-fef5-428a-bbbc-b696df19a55e" + "FRANCESOUTH:20201108T183647Z:8b63d3b2-5abd-4dc9-bf6f-c72ee10dd33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5601,7 +5598,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:34:01 GMT" + "Sun, 08 Nov 2020 18:36:47 GMT" ], "Expires": [ "-1" @@ -5614,16 +5611,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM2MjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNMk1qSXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" ] }, "ResponseHeaders": { @@ -5637,13 +5634,13 @@ "11973" ], "x-ms-request-id": [ - "7b56bd14-6ae3-48ee-a6d5-a95b61c06e22" + "ab3b596d-bf5f-4834-9fd6-18a4eb34b9cb" ], "x-ms-correlation-request-id": [ - "7b56bd14-6ae3-48ee-a6d5-a95b61c06e22" + "ab3b596d-bf5f-4834-9fd6-18a4eb34b9cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200907T143402Z:7b56bd14-6ae3-48ee-a6d5-a95b61c06e22" + "FRANCESOUTH:20201108T183648Z:ab3b596d-bf5f-4834-9fd6-18a4eb34b9cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5652,7 +5649,7 @@ "nosniff" ], "Date": [ - "Mon, 07 Sep 2020 14:34:02 GMT" + "Sun, 08 Nov 2020 18:36:48 GMT" ], "Expires": [ "-1" @@ -5667,14 +5664,14 @@ ], "Names": { "Test-VolumeCrud": [ - "ps9910", - "ps8623", - "ps1301", - "ps2862", - "ps1048", - "ps6720", - "ps4632", - "ps8379" + "ps3622", + "ps4686", + "ps7403", + "ps343", + "ps2734", + "ps9008", + "ps7434", + "ps5531" ] }, "Variables": { From 6153083328696495593c3fa22fdb4795fc2e2a9f Mon Sep 17 00:00:00 2001 From: Yeming Liu Date: Mon, 9 Nov 2020 11:21:59 +0800 Subject: [PATCH 22/22] remove version in changelog --- src/NetAppFiles/NetAppFiles/ChangeLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 703524513c60..33257500abd0 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -19,7 +19,6 @@ --> ## Upcoming Release -## Version 0.1.7 * Add new Backup Policy cmdlets: - `Get-AzNetAppFilesBackupPolicy` - `New-AzNetAppFilesBackupPolicy`