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..c2f651a88729 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/ActiveDirectoryTests.ps1 @@ -0,0 +1,126 @@ +# ---------------------------------------------------------------------------------- +# +# 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" + $adSmbServerName2 = "PSMBSName2" + + 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 -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 + 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 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 + Assert-AreEqual $adDns $getRetrievedAd.Dns + Assert-AreEqual $adSmbServerName $getRetrievedAd.SmbServerName + + #update AD + $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 -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 -ActiveDirectoryId $getRetrievedAd.ActiveDirectoryId + 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 -AdName $activeDirectoryName1 -Username $adUsername -Password $sPass -Domain $adDomain -Dns $adDns -SmbServerName $adSmbServerName + + $getRetrievedAd = Get-AzNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 | Get-AzNetAppFilesActiveDirectory -ActiveDirectoryId $retrievedAd.ActiveDirectoryId + } + 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..42fdc371f5c5 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupPolicyTests.ps1 @@ -0,0 +1,150 @@ +# ---------------------------------------------------------------------------------- +# +# 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 = "southcentralus" + + 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 + + $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 + 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..3daf2ab0c7db --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/BackupTests.ps1 @@ -0,0 +1,260 @@ +# ---------------------------------------------------------------------------------- +# +# 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" + $labelUpdate = "powershellBackupTestUpdate" + $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 + + # update and check a Backup by name and check again + $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 + + #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..0983f35c925f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotPolicyTests.ps1 @@ -0,0 +1,179 @@ +# ---------------------------------------------------------------------------------- +# +# 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 "$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 + 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 "$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 "$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 + 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 {"$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 "$accName1/$snapshotPolicyName1" $getRetrievedSnapshotPolicy.Name + + # get and check the SnapshotPolicy again using the resource id just obtained + $getRetrievedSnapshotPolicyById = Get-AzNetAppFilesSnapshotPolicy -ResourceId $retrievedSnapshotPolicy.Id + Assert-AreEqual "$accName1/$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..0d2e71d573b5 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 TestSetVolumePool() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SetVolumePool"); + } [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..f34c0a737f0c 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 Set-AzNetAppFilesVolumePool operation +#> +function Test-SetVolumePool +{ + $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 = 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 + 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.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.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.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..2e801377d7d0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.ActiveDirectoryTests/TestActiveDirectoryCrud.json @@ -0,0 +1,1750 @@ +{ + "Entries": [ + { + "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": [ + "e432c665-2839-49f3-904a-78898d8b96ec" + ], + "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": [ + "1198" + ], + "x-ms-request-id": [ + "29b66985-12c5-4140-9674-c554bcaeaeed" + ], + "x-ms-correlation-request-id": [ + "29b66985-12c5-4140-9674-c554bcaeaeed" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152326Z:29b66985-12c5-4140-9674-c554bcaeaeed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:23:26 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "8596eb4a-3f9f-401a-816b-1aa547194716" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-04T15%3A23%3A34.0461472Z'\"" + ], + "x-ms-request-id": [ + "ba47bafd-43a7-406b-a63b-afacc461c8f3" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "f94cb810-0639-4f17-a9f9-d95634a2ea1f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152335Z:f94cb810-0639-4f17-a9f9-d95634a2ea1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:23:35 GMT" + ], + "Content-Length": [ + "341" + ], + "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%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/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": [ + "d9a72c02-778b-4c65-aef3-0c5ba9ae8596" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-04T15%3A24%3A15.3748207Z'\"" + ], + "x-ms-request-id": [ + "6e41aebf-356c-4782-94b3-98bd6f9232d8" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "d9a692e8-84b6-444e-bfc9-85bce8b441dd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152415Z:d9a692e8-84b6-444e-bfc9-85bce8b441dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:14 GMT" + ], + "Content-Length": [ + "616" + ], + "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%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/c56296cd-253f-4c92-833c-d3d13e73fd23?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzU2Mjk2Y2QtMjUzZi00YzkyLTgzM2MtZDNkMTNlNzNmZDIzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "4d672aad-4b17-43c2-bd0e-6f75841dd9fd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "20d69f89-28bb-4eb4-ad57-59faa904bb81" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152405Z:20d69f89-28bb-4eb4-ad57-59faa904bb81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:04 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/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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/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-11-04T15%3A23%3A34.1212011Z'\"" + ], + "x-ms-request-id": [ + "8eb711ee-11b0-4cd2-bfd4-5016e17cee3c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3979c4bf-7f94-4f75-901f-f6724e3b253a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152405Z:3979c4bf-7f94-4f75-901f-f6724e3b253a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:05 GMT" + ], + "Content-Length": [ + "342" + ], + "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%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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd8feb36-8be4-4372-9a60-2cde1b899eb1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A23%3A34.1212011Z'\"" + ], + "x-ms-request-id": [ + "ab912cd8-dba7-4b5c-8e26-c7d7cb5f21cc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "eeeca85d-bb43-4237-9569-2823d5b8d5c5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152406Z:eeeca85d-bb43-4237-9569-2823d5b8d5c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:05 GMT" + ], + "Content-Length": [ + "342" + ], + "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%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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f906cc1e-418b-4df5-b734-0a8bbd05eee7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A07.1829368Z'\"" + ], + "x-ms-request-id": [ + "af70c23f-30ff-439e-a162-aff656f290b9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8e05d7cd-fe5c-46b8-8b96-19935e816ef9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152407Z:8e05d7cd-fe5c-46b8-8b96-19935e816ef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:07 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%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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b00cfdd-80d3-434b-af95-c2c2b276afa7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A07.1829368Z'\"" + ], + "x-ms-request-id": [ + "716eec2d-5334-4c45-995e-46a39a4ba2de" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d9e925fb-f908-4544-a12c-5e963d02431e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152407Z:d9e925fb-f908-4544-a12c-5e963d02431e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:07 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%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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0416c9f-7c93-4604-b160-92951de08390" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A07.1829368Z'\"" + ], + "x-ms-request-id": [ + "97d7015a-565e-49f5-bd00-c24c5cab92dc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "90494aaf-2068-4595-8ad7-8bc608813d0f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152408Z:90494aaf-2068-4595-8ad7-8bc608813d0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:07 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%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/ps8722/providers/Microsoft.NetApp/netAppAccounts/ps3536?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczM1MzY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d01aabcb-ec14-4009-936d-76b177ffad13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A14.1809645Z'\"" + ], + "x-ms-request-id": [ + "ae0f6df4-69cd-4b4c-a826-d94585becf8d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "dc219fe3-6bba-4fb3-95b5-baceb3b92af7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152414Z:dc219fe3-6bba-4fb3-95b5-baceb3b92af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "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": [ + "21b21488-fa8c-43ee-915b-4033d134c9ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A14.1809645Z'\"" + ], + "x-ms-request-id": [ + "b75e1d5e-2171-4d2e-b4b0-f44a27169fdb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f8363d15-d3d3-413a-bdd1-b0157371d7f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152414Z:f8363d15-d3d3-413a-bdd1-b0157371d7f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "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" + ], + "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%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/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 \"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": [ + "a904be97-b41f-4b93-b59e-ac30c585c995" + ], + "Accept-Language": [ + "en-US" + ], + "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": [ + "274" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T15%3A24%3A06.7386176Z'\"" + ], + "x-ms-request-id": [ + "67d6d86f-36db-4b39-a726-3ee1336f97b7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "44fb683e-7937-45a4-a738-5f7b7886fcce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152407Z:44fb683e-7937-45a4-a738-5f7b7886fcce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:06 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%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/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": [ + "4246d0d2-a5c9-457e-97d0-55554b8346fa" + ], + "Accept-Language": [ + "en-US" + ], + "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": [ + "344" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T15%3A24%3A08.5569285Z'\"" + ], + "x-ms-request-id": [ + "f810e43e-92a2-47b1-9e09-4a6715be06cb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "720b6699-9c97-416b-89b1-d288a0769f28" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152414Z:720b6699-9c97-416b-89b1-d288a0769f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:13 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%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/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", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "0d5f9fc9-7986-4f64-af94-6e26a906bd87" + ], + "x-ms-correlation-request-id": [ + "0d5f9fc9-7986-4f64-af94-6e26a906bd87" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152434Z:0d5f9fc9-7986-4f64-af94-6e26a906bd87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11988" + ], + "x-ms-request-id": [ + "81148277-1dd8-4cbb-b406-0a9c44a299e2" + ], + "x-ms-correlation-request-id": [ + "81148277-1dd8-4cbb-b406-0a9c44a299e2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152449Z:81148277-1dd8-4cbb-b406-0a9c44a299e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:24:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11987" + ], + "x-ms-request-id": [ + "01888b91-ce02-4167-836e-990a312ddd8e" + ], + "x-ms-correlation-request-id": [ + "01888b91-ce02-4167-836e-990a312ddd8e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152504Z:01888b91-ce02-4167-836e-990a312ddd8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:25:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11986" + ], + "x-ms-request-id": [ + "e0ee4272-da3f-418f-803e-fcfe29f0a0b2" + ], + "x-ms-correlation-request-id": [ + "e0ee4272-da3f-418f-803e-fcfe29f0a0b2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152520Z:e0ee4272-da3f-418f-803e-fcfe29f0a0b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:25:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11985" + ], + "x-ms-request-id": [ + "653203b5-297c-4342-9676-69da15e1b67b" + ], + "x-ms-correlation-request-id": [ + "653203b5-297c-4342-9676-69da15e1b67b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152535Z:653203b5-297c-4342-9676-69da15e1b67b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:25:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11984" + ], + "x-ms-request-id": [ + "f1da4e34-386d-4e16-bb96-226ae0152973" + ], + "x-ms-correlation-request-id": [ + "f1da4e34-386d-4e16-bb96-226ae0152973" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152551Z:f1da4e34-386d-4e16-bb96-226ae0152973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:25:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11983" + ], + "x-ms-request-id": [ + "18d83ce4-3923-41e2-a30b-db3b4cfb5e40" + ], + "x-ms-correlation-request-id": [ + "18d83ce4-3923-41e2-a30b-db3b4cfb5e40" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152606Z:18d83ce4-3923-41e2-a30b-db3b4cfb5e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:26:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11982" + ], + "x-ms-request-id": [ + "19eec237-0d33-4450-a477-8e676d7ba0fa" + ], + "x-ms-correlation-request-id": [ + "19eec237-0d33-4450-a477-8e676d7ba0fa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152622Z:19eec237-0d33-4450-a477-8e676d7ba0fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:26:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11981" + ], + "x-ms-request-id": [ + "7432b961-4b82-4c42-a699-845da1b086ce" + ], + "x-ms-correlation-request-id": [ + "7432b961-4b82-4c42-a699-845da1b086ce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152637Z:7432b961-4b82-4c42-a699-845da1b086ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:26:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11980" + ], + "x-ms-request-id": [ + "083de50d-98b8-4957-b1cb-d941eae5d424" + ], + "x-ms-correlation-request-id": [ + "083de50d-98b8-4957-b1cb-d941eae5d424" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152652Z:083de50d-98b8-4957-b1cb-d941eae5d424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:26:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "1fab20e2-3a3e-4813-a206-503a24b62fcd" + ], + "x-ms-correlation-request-id": [ + "1fab20e2-3a3e-4813-a206-503a24b62fcd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152708Z:1fab20e2-3a3e-4813-a206-503a24b62fcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:27:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg3MjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnM01qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" + ], + "x-ms-correlation-request-id": [ + "cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152708Z:cb413f3f-58f2-42f2-8ae5-35dbfb848bfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:27:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ActiveDirectoryCrud": [ + "ps8722", + "ps3536", + "ps6642", + "ps5180", + "ps9787" + ] + }, + "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..c8e204391199 --- /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/ps4085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDA4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfaa1b4a-f3eb-44f1-b777-fa6538ef547a" + ], + "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": [ + "6ed73157-e666-4872-ad3e-de551177a795" + ], + "x-ms-correlation-request-id": [ + "6ed73157-e666-4872-ad3e-de551177a795" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152740Z:6ed73157-e666-4872-ad3e-de551177a795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:27:40 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "0cc1877b-92af-469d-a173-72b39ff4bede" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-04T15%3A27%3A47.4961249Z'\"" + ], + "x-ms-request-id": [ + "a997f9a2-578e-4601-be48-b0c076eeb647" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "26c0e3b8-4013-4210-9c5d-35d8c282f96d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152749Z:26c0e3b8-4013-4210-9c5d-35d8c282f96d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:27:48 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/103685fb-e811-4b00-bf92-29f7451949d7?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMTAzNjg1ZmItZTgxMS00YjAwLWJmOTItMjlmNzQ1MTk0OWQ3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "c3fc7967-d5dc-4f9b-9673-7edc29f2647e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4a530e92-206f-47b3-a531-7c03986c179b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152819Z:4a530e92-206f-47b3-a531-7c03986c179b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:18 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/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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/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-11-04T15%3A27%3A47.5661756Z'\"" + ], + "x-ms-request-id": [ + "de6c1cfb-25bb-4f41-8199-57a866af11ed" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "31595bad-8cc2-4930-a65d-dac077dcf012" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152819Z:31595bad-8cc2-4930-a65d-dac077dcf012" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:19 GMT" + ], + "Content-Length": [ + "314" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc09cdeb-3104-4ff5-987f-e306f6d69a3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A27%3A47.5661756Z'\"" + ], + "x-ms-request-id": [ + "a7bce984-4046-42c3-bb04-46de8e73e95f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "627185c7-683f-46a3-8407-99d5e0b2c299" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152820Z:627185c7-683f-46a3-8407-99d5e0b2c299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:19 GMT" + ], + "Content-Length": [ + "314" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccb4e6b8-8272-4c75-a54c-8a5ee655f848" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A27%3A47.5661756Z'\"" + ], + "x-ms-request-id": [ + "f62c2c3f-e11a-441e-ae82-14739952bec4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "469eaa44-99c7-468d-b045-bffb0408ef71" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152820Z:469eaa44-99c7-468d-b045-bffb0408ef71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:19 GMT" + ], + "Content-Length": [ + "314" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73442632-97ce-431f-b585-2f5b2214087c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A28%3A21.3624439Z'\"" + ], + "x-ms-request-id": [ + "4603328a-5701-47e6-8098-55af05ddac8d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fbfab21b-d7c7-44c0-9992-ab8b1d1b8b63" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152821Z:fbfab21b-d7c7-44c0-9992-ab8b1d1b8b63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:21 GMT" + ], + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "404a049d-960a-4610-8cf5-21fbb311099a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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%3A28%3A21.3624439Z'\"" + ], + "x-ms-request-id": [ + "529be6a8-2f7d-408f-a635-19039fa09d20" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fba18f23-2ec0-4e99-bb92-85b7b78a0358" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152822Z:fba18f23-2ec0-4e99-bb92-85b7b78a0358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:21 GMT" + ], + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085/providers/Microsoft.NetApp/netAppAccounts/ps2031?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIwMzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PATCH", + "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": [ + "99baaed1-35b2-4521-a83c-976bf4753ab4" + ], + "Accept-Language": [ + "en-US" + ], + "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": [ + "274" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2020-11-04T15%3A28%3A20.8750943Z'\"" + ], + "x-ms-request-id": [ + "4ab57dbe-0925-4404-831f-1a842a4f4405" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "97e62e6b-c9a6-48cc-8291-57b0fcab4bd2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152821Z:97e62e6b-c9a6-48cc-8291-57b0fcab4bd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:20 GMT" + ], + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDA4NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d855efb0-a057-4c32-a8c4-cf15a3f90bc4" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "2eecedf2-5475-4e8f-aebb-8b098fc2c6df" + ], + "x-ms-correlation-request-id": [ + "2eecedf2-5475-4e8f-aebb-8b098fc2c6df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152824Z:2eecedf2-5475-4e8f-aebb-8b098fc2c6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11999" + ], + "x-ms-request-id": [ + "93480e40-3aa0-4d72-a16a-4bb55039207e" + ], + "x-ms-correlation-request-id": [ + "93480e40-3aa0-4d72-a16a-4bb55039207e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152840Z:93480e40-3aa0-4d72-a16a-4bb55039207e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11998" + ], + "x-ms-request-id": [ + "966dba3e-632c-4625-a672-6b045ce2ec2a" + ], + "x-ms-correlation-request-id": [ + "966dba3e-632c-4625-a672-6b045ce2ec2a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152855Z:966dba3e-632c-4625-a672-6b045ce2ec2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:28:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11997" + ], + "x-ms-request-id": [ + "49924751-afe7-4aaa-8b7a-ba61e4ccb853" + ], + "x-ms-correlation-request-id": [ + "49924751-afe7-4aaa-8b7a-ba61e4ccb853" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152911Z:49924751-afe7-4aaa-8b7a-ba61e4ccb853" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:29:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11996" + ], + "x-ms-request-id": [ + "7cf22174-a95a-4e67-821b-5cbff0a1c027" + ], + "x-ms-correlation-request-id": [ + "7cf22174-a95a-4e67-821b-5cbff0a1c027" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152926Z:7cf22174-a95a-4e67-821b-5cbff0a1c027" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:29:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11995" + ], + "x-ms-request-id": [ + "aa222bcc-acf4-4cde-8e52-028697b278a5" + ], + "x-ms-correlation-request-id": [ + "aa222bcc-acf4-4cde-8e52-028697b278a5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152941Z:aa222bcc-acf4-4cde-8e52-028697b278a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:29:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11994" + ], + "x-ms-request-id": [ + "a0bbda9d-ad95-446d-8795-c3a6c814770a" + ], + "x-ms-correlation-request-id": [ + "a0bbda9d-ad95-446d-8795-c3a6c814770a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T152957Z:a0bbda9d-ad95-446d-8795-c3a6c814770a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:29:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11993" + ], + "x-ms-request-id": [ + "36998fa7-94ed-4846-b507-73d6e69daaf1" + ], + "x-ms-correlation-request-id": [ + "36998fa7-94ed-4846-b507-73d6e69daaf1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T153012Z:36998fa7-94ed-4846-b507-73d6e69daaf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:30:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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": [ + "11992" + ], + "x-ms-request-id": [ + "1d932c7c-3dc3-4e31-9328-36f26a9252a3" + ], + "x-ms-correlation-request-id": [ + "1d932c7c-3dc3-4e31-9328-36f26a9252a3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T153028Z:1d932c7c-3dc3-4e31-9328-36f26a9252a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:30:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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" + ], + "x-ms-request-id": [ + "9665ceab-194e-4a41-a1d7-5f81f56b9897" + ], + "x-ms-correlation-request-id": [ + "9665ceab-194e-4a41-a1d7-5f81f56b9897" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T153043Z:9665ceab-194e-4a41-a1d7-5f81f56b9897" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:30:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "11990" + ], + "x-ms-request-id": [ + "3bc5e011-0d18-4f02-a03d-3aed82e76322" + ], + "x-ms-correlation-request-id": [ + "3bc5e011-0d18-4f02-a03d-3aed82e76322" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T153058Z:3bc5e011-0d18-4f02-a03d-3aed82e76322" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQwODUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRd09EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "942b039d-6ec7-484c-9804-2ae988f4d300" + ], + "x-ms-correlation-request-id": [ + "942b039d-6ec7-484c-9804-2ae988f4d300" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201104T153059Z:942b039d-6ec7-484c-9804-2ae988f4d300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 04 Nov 2020 15:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ActiveDirectoryPipelines": [ + "ps4085", + "ps2031", + "ps4848" + ] + }, + "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..bd82600564b4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyCrud.json @@ -0,0 +1,2410 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/resourcegroups/ps1621?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc88b8f9-a6c1-4e68-873f-93e40a940741" + ], + "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": [ + "e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" + ], + "x-ms-correlation-request-id": [ + "e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134205Z:e86d8a9d-adb1-4dd3-a6ad-e7a56c5ade1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:42:04 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "704a31ea-5662-4027-af6a-ac16ada5fba6" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A42%3A11.4887775Z'\"" + ], + "x-ms-request-id": [ + "6159270d-13e6-4187-af43-f380d0eb7cb7" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "4109df54-0b03-403e-a2c0-7c655c0ad2a7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134212Z:4109df54-0b03-403e-a2c0-7c655c0ad2a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:42:12 GMT" + ], + "Content-Length": [ + "346" + ], + "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\",\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/southcentralus/operationResults/0a1c209a-011d-45ab-a4af-7af85a1a9370?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzBhMWMyMDlhLTAxMWQtNDVhYi1hNGFmLTdhZjg1YTFhOTM3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "577e9ef2-774e-4142-acd3-f3c69d2547b1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "77bdc176-ed52-4c33-b08e-bcffb8cba1cf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134243Z:77bdc176-ed52-4c33-b08e-bcffb8cba1cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:42:42 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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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-06T13%3A42%3A11.5858484Z'\"" + ], + "x-ms-request-id": [ + "bb1d1193-02b6-433c-bbeb-485bf8c83e43" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "310b0e09-8368-4796-941c-69c4b7efeff6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134243Z:310b0e09-8368-4796-941c-69c4b7efeff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:42:43 GMT" + ], + "Content-Length": [ + "347" + ], + "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\",\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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/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": [ + "b030d009-6d0d-44e3-b20b-9fe862ec550e" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A42%3A45.0914561Z'\"" + ], + "x-ms-request-id": [ + "7cf7df89-418d-4b99-a662-da74c9796fda" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "6b1843b3-d036-43b7-bfb2-159fc578fdad" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134246Z:6b1843b3-d036-43b7-bfb2-159fc578fdad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:42:45 GMT" + ], + "Content-Length": [ + "473" + ], + "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%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/southcentralus/operationResults/fae18126-8b83-46f3-b0c5-42d6fcad5cf4?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2ZhZTE4MTI2LThiODMtNDZmMy1iMGM1LTQyZDZmY2FkNWNmND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "24fdc05e-a6fa-4c74-b5d2-eea29406d7ad" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fd5ae1c8-4343-4a95-ba19-b8bfdf0c5d35" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134316Z:fd5ae1c8-4343-4a95-ba19-b8bfdf0c5d35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:16 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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps6152?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczYxNTI/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-11-06T13%3A42%3A45.3026119Z'\"" + ], + "x-ms-request-id": [ + "13035589-005a-4329-bd32-6aae99230774" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "775af5e0-61f8-4f3a-84fc-ad18ef90725c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134316Z:775af5e0-61f8-4f3a-84fc-ad18ef90725c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:16 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%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/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": [ + "6ce109c1-7ab9-4bce-b1b9-919d7db0d0a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A42%3A45.3026119Z'\"" + ], + "x-ms-request-id": [ + "0d768a3a-c4ac-4ca6-8668-23b6b63ae6dc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3d76d9df-3d98-459b-9566-ba95cb07f794" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134317Z:3d76d9df-3d98-459b-9566-ba95cb07f794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:17 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%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/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": [ + "b42d4cb3-e29e-420a-a0bf-47bf08fb4355" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A43%3A17.9847694Z'\"" + ], + "x-ms-request-id": [ + "3a2cc763-7b90-4af6-b433-565bf9f8eca6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "860ec224-66e5-449e-857a-ad61a6aa4225" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134352Z:860ec224-66e5-449e-857a-ad61a6aa4225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:51 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.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/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": [ + "9846d1f1-1b4b-4d16-bc6c-ed50183d203e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A43%3A17.9847694Z'\"" + ], + "x-ms-request-id": [ + "3497e278-62d9-4f8b-a774-f8e1a8347738" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "878c829a-9b44-47b7-8fb6-a8ac38355b7c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134352Z:878c829a-9b44-47b7-8fb6-a8ac38355b7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:51 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.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/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\": \"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": [ + "a18a5d81-949a-447f-83a8-23ad8754cd9d" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A43%3A19.7790929Z'\"" + ], + "x-ms-request-id": [ + "5f8f6e75-b1da-435e-a0d1-cd58df2309f2" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "db7c6b5e-d8db-44c6-8b81-e8a69acd2724" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134320Z:db7c6b5e-d8db-44c6-8b81-e8a69acd2724" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:20 GMT" + ], + "Content-Length": [ + "471" + ], + "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/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/southcentralus/operationResults/1c0d5965-75fd-4049-8c99-2fcd385582f7?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFjMGQ1OTY1LTc1ZmQtNDA0OS04Yzk5LTJmY2QzODU1ODJmNz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "7408f69b-6343-4002-b425-09ac139a3d61" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4abdcd16-10a1-46aa-a0e1-e70843f71f5e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134350Z:4abdcd16-10a1-46aa-a0e1-e70843f71f5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:50 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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczg5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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-06T13%3A43%3A19.9302048Z'\"" + ], + "x-ms-request-id": [ + "62a298a3-25e5-417c-ac79-ce554d044d25" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4d791943-53fb-4ad2-971f-e7266565f691" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134351Z:4d791943-53fb-4ad2-971f-e7266565f691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:50 GMT" + ], + "Content-Length": [ + "528" + ], + "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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8736302b-4a36-45d8-a07a-53382e50cad8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8d24699-a951-462b-969c-fbcd28957df1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ad34d9d0-7199-4b36-b4af-5877e8d482bb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134351Z:ad34d9d0-7199-4b36-b4af-5877e8d482bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:51 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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f1ee8fa-28d6-4486-9ce1-eea1a216c441" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0515106-7578-4740-9f4c-8d7e9c4dc313" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "dc9fb84a-fb9c-41a6-bd30-a4344d271bff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134423Z:dc9fb84a-fb9c-41a6-bd30-a4344d271bff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:23 GMT" + ], + "Content-Length": [ + "540" + ], + "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/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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d97e0b2-c1c3-46e1-a075-a2cc68cad17a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "130bddfc-bb80-4eba-900b-3b85c2c6b2b7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "75e4dbff-77f1-4fb3-8311-a919ec4741e7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134455Z:75e4dbff-77f1-4fb3-8311-a919ec4741e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:54 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/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": [ + "e48d14d6-6c05-4e23-874d-bb5f25232da1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/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/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?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": [ + "c16729f8-0443-411f-a8fc-024be0646d6c" + ], + "x-ms-correlation-request-id": [ + "c16729f8-0443-411f-a8fc-024be0646d6c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134353Z:c16729f8-0443-411f-a8fc-024be0646d6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:43:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "14097eb6-e46d-497f-86d9-3b83b5fd576d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b1f48f24-7f4d-432c-9877-6b86f5edd1fb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134423Z:b1f48f24-7f4d-432c-9877-6b86f5edd1fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13: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/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/southcentralus/operationResults/4c862de7-3c87-436c-91d9-080300e91284?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRjODYyZGU3LTNjODctNDM2Yy05MWQ5LTA4MDMwMGU5MTI4ND9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "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": [ + "497a15b8-993a-4ccc-b292-fbb64606fd85" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5a6b59f6-2058-4548-83b4-5318881f95ff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134423Z:5a6b59f6-2058-4548-83b4-5318881f95ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:23 GMT" + ], + "Content-Length": [ + "529" + ], + "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%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/ps1621/providers/Microsoft.NetApp/netAppAccounts/ps430/backupPolicies/ps898?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTYyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQzMC9iYWNrdXBQb2xpY2llcy9wczg5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f14aa22-88ce-4483-959e-7129c68360a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/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/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?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": [ + "faf79f27-06f9-4152-88b2-974132c011c7" + ], + "x-ms-correlation-request-id": [ + "faf79f27-06f9-4152-88b2-974132c011c7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134424Z:faf79f27-06f9-4152-88b2-974132c011c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6dc47524-bdc3-4235-9ff2-9efaebc764a9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "716dceeb-8bc0-4046-abb4-cfd79562d130" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134455Z:716dceeb-8bc0-4046-abb4-cfd79562d130" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:54 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/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/southcentralus/operationResults/937dbafa-c7ee-48ba-9f2f-6bc15129d2ee?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkzN2RiYWZhLWM3ZWUtNDhiYS05ZjJmLTZiYzE1MTI5ZDJlZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "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": [ + "2a310fe5-b726-4e94-8558-b5ac7b9606f5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8a639068-84d4-4a87-9967-832250d3b3ff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134455Z:8a639068-84d4-4a87-9967-832250d3b3ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:54 GMT" + ], + "Content-Length": [ + "527" + ], + "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/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/ps1621?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTYyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bfc9f19-8d4a-46cf-94dc-714578c10741" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "5c3fe956-a64d-445b-9e17-43ae732b4aaf" + ], + "x-ms-correlation-request-id": [ + "5c3fe956-a64d-445b-9e17-43ae732b4aaf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134459Z:5c3fe956-a64d-445b-9e17-43ae732b4aaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:44:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5c5d24bb-576f-4509-8e69-99ebbc402fc1" + ], + "x-ms-correlation-request-id": [ + "5c5d24bb-576f-4509-8e69-99ebbc402fc1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134514Z:5c5d24bb-576f-4509-8e69-99ebbc402fc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:45:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "81591942-f9f0-41fc-abb0-fa27e6f10cb6" + ], + "x-ms-correlation-request-id": [ + "81591942-f9f0-41fc-abb0-fa27e6f10cb6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134530Z:81591942-f9f0-41fc-abb0-fa27e6f10cb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:45:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "afd28912-803f-45de-ba5a-641633a2ef7a" + ], + "x-ms-correlation-request-id": [ + "afd28912-803f-45de-ba5a-641633a2ef7a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134545Z:afd28912-803f-45de-ba5a-641633a2ef7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:45:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "068f0b19-bebe-446c-bb4c-32a60766d9b0" + ], + "x-ms-correlation-request-id": [ + "068f0b19-bebe-446c-bb4c-32a60766d9b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134600Z:068f0b19-bebe-446c-bb4c-32a60766d9b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:46:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "ded1c880-da3c-4ad9-9d95-641be68677e9" + ], + "x-ms-correlation-request-id": [ + "ded1c880-da3c-4ad9-9d95-641be68677e9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134616Z:ded1c880-da3c-4ad9-9d95-641be68677e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:46:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "8a6c09ab-61ae-4830-98e8-822afec9bb7f" + ], + "x-ms-correlation-request-id": [ + "8a6c09ab-61ae-4830-98e8-822afec9bb7f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134631Z:8a6c09ab-61ae-4830-98e8-822afec9bb7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:46:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "3b65875d-9a73-41a1-aca6-9c871db8f5fe" + ], + "x-ms-correlation-request-id": [ + "3b65875d-9a73-41a1-aca6-9c871db8f5fe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134646Z:3b65875d-9a73-41a1-aca6-9c871db8f5fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:46:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" + ], + "x-ms-correlation-request-id": [ + "b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134702Z:b9a627d3-7b5c-40e9-92b6-1ec0d90b1e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "720a5754-bc34-4fbb-b8ba-a215c93bfa21" + ], + "x-ms-correlation-request-id": [ + "720a5754-bc34-4fbb-b8ba-a215c93bfa21" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134717Z:720a5754-bc34-4fbb-b8ba-a215c93bfa21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" + ], + "x-ms-correlation-request-id": [ + "f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134732Z:f4ee534c-9fa6-4d6a-9de6-10bcde6fe9b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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": [ + "8c5b3685-856d-44a7-9a6a-09483d2161be" + ], + "x-ms-correlation-request-id": [ + "8c5b3685-856d-44a7-9a6a-09483d2161be" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134748Z:8c5b3685-856d-44a7-9a6a-09483d2161be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE2MjEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMk1qRXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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": [ + "1f9ce8b1-67d6-462f-947e-ef3cbff04676" + ], + "x-ms-correlation-request-id": [ + "1f9ce8b1-67d6-462f-947e-ef3cbff04676" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134748Z:1f9ce8b1-67d6-462f-947e-ef3cbff04676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPolicyCrud": [ + "ps1621", + "ps430", + "ps6152", + "ps898", + "ps732" + ] + }, + "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..0318836bfb79 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupPolicyTests/TestBackupPolicyPipelines.json @@ -0,0 +1,1423 @@ +{ + "Entries": [ + { + "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": [ + "39b86dc3-e311-4f51-ac4f-c396bfdbdb24" + ], + "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": [ + "e85562d6-cd69-469c-862d-765901b185e1" + ], + "x-ms-correlation-request-id": [ + "e85562d6-cd69-469c-862d-765901b185e1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134756Z:e85562d6-cd69-469c-862d-765901b185e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:47:56 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "dfd1ca23-3c5d-491b-9a27-8e47ecd22ba8" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A48%3A03.007979Z'\"" + ], + "x-ms-request-id": [ + "9241eb3b-9954-4ee0-b722-445ede0885cf" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "fea480be-d8fc-4980-b3ec-0dab83accaff" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134804Z:fea480be-d8fc-4980-b3ec-0dab83accaff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:48:03 GMT" + ], + "Content-Length": [ + "316" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/6e9e1405-6804-4390-b2d5-39c52d5fae62?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzZlOWUxNDA1LTY4MDQtNDM5MC1iMmQ1LTM5YzUyZDVmYWU2Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "c335b610-0c67-400d-9f48-f80d1681eec9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fdc7260d-4ff4-4b2e-8856-7cdd5529826a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134834Z:fdc7260d-4ff4-4b2e-8856-7cdd5529826a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:48:34 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/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/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/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-11-06T13%3A48%3A03.1330707Z'\"" + ], + "x-ms-request-id": [ + "e5143d52-41b9-4977-8a6b-3d5af3b11666" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d688cb7f-90b3-4c58-a843-70ebbfb26d3c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134834Z:d688cb7f-90b3-4c58-a843-70ebbfb26d3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:48:34 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ae147d9-a8b7-48c2-b486-d7c659a44445" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A48%3A03.1330707Z'\"" + ], + "x-ms-request-id": [ + "a58c1133-9ee9-441e-b222-d90eb34a4b2d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5db98ddd-f9ea-4ed9-aea8-22119e7cac83" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134834Z:5db98ddd-f9ea-4ed9-aea8-22119e7cac83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:48:34 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8183624-bf7d-4fc0-8160-052653a8cbbc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A48%3A03.1330707Z'\"" + ], + "x-ms-request-id": [ + "813998ee-212c-4109-809f-ae1d41cf7a1b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "48651351-2c44-4634-b376-9547b123f63b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134907Z:48651351-2c44-4634-b376-9547b123f63b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:07 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "e51e4ac4-d9c5-47b3-9f23-b8bd38cb1758" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A48%3A36.3116053Z'\"" + ], + "x-ms-request-id": [ + "0debcd0c-4a99-474a-afb4-c302b064ccca" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "00139540-2a76-4270-be2f-b5452cb94af7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134837Z:00139540-2a76-4270-be2f-b5452cb94af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:48:37 GMT" + ], + "Content-Length": [ + "470" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/acc1b518-62a8-4c88-a881-b6490f991f18?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzL2FjYzFiNTE4LTYyYTgtNGM4OC1hODgxLWI2NDkwZjk5MWYxOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "d9de78e8-b201-4d8b-afc8-652ef1463787" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "50947837-011e-4219-8619-eeb00895230b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134907Z:50947837-011e-4219-8619-eeb00895230b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:06 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/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/ps3849/providers/Microsoft.NetApp/netAppAccounts/ps2352/backupPolicies/ps566?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMzg0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczIzNTIvYmFja3VwUG9saWNpZXMvcHM1NjY/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-11-06T13%3A48%3A36.5998192Z'\"" + ], + "x-ms-request-id": [ + "3301053a-304c-4dd2-82fd-4ab4c8d9951d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2e52980d-3d6c-4ecf-9677-399e26d0ff7d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134907Z:2e52980d-3d6c-4ecf-9677-399e26d0ff7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:06 GMT" + ], + "Content-Length": [ + "527" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "5f3016d4-c118-497b-bfe3-881110df64c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A48%3A36.5998192Z'\"" + ], + "x-ms-request-id": [ + "eef8a41f-9d88-48cb-ad39-f1d23d592d19" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fe9bcb67-05ae-470d-ae95-48310b8c080f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134908Z:fe9bcb67-05ae-470d-ae95-48310b8c080f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:07 GMT" + ], + "Content-Length": [ + "527" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps3849?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMzg0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e3f36bb-f994-47ec-a376-50ed42899949" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "366a907d-a611-4a94-87b7-3b979c35c73f" + ], + "x-ms-correlation-request-id": [ + "366a907d-a611-4a94-87b7-3b979c35c73f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134910Z:366a907d-a611-4a94-87b7-3b979c35c73f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11999" + ], + "x-ms-request-id": [ + "055ed3bf-978b-4c96-9f10-4c964e1cce47" + ], + "x-ms-correlation-request-id": [ + "055ed3bf-978b-4c96-9f10-4c964e1cce47" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134925Z:055ed3bf-978b-4c96-9f10-4c964e1cce47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11998" + ], + "x-ms-request-id": [ + "248b2cf2-9703-444f-ad3a-5214e3be87b1" + ], + "x-ms-correlation-request-id": [ + "248b2cf2-9703-444f-ad3a-5214e3be87b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134940Z:248b2cf2-9703-444f-ad3a-5214e3be87b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11997" + ], + "x-ms-request-id": [ + "258857c7-ffde-4561-9a4b-791b16576b25" + ], + "x-ms-correlation-request-id": [ + "258857c7-ffde-4561-9a4b-791b16576b25" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T134956Z:258857c7-ffde-4561-9a4b-791b16576b25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:49:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7e0045cf-095e-4400-81a6-094a74384cf6" + ], + "x-ms-correlation-request-id": [ + "7e0045cf-095e-4400-81a6-094a74384cf6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135011Z:7e0045cf-095e-4400-81a6-094a74384cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:50:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5b82e43b-3323-460f-9c49-b1742c1b5953" + ], + "x-ms-correlation-request-id": [ + "5b82e43b-3323-460f-9c49-b1742c1b5953" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135026Z:5b82e43b-3323-460f-9c49-b1742c1b5953" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:50:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11994" + ], + "x-ms-request-id": [ + "afb48779-ceff-4154-acc8-dd0ba940e7e1" + ], + "x-ms-correlation-request-id": [ + "afb48779-ceff-4154-acc8-dd0ba940e7e1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135041Z:afb48779-ceff-4154-acc8-dd0ba940e7e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:50:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11993" + ], + "x-ms-request-id": [ + "adf6738c-3e65-4184-8a43-22ce5371ee1e" + ], + "x-ms-correlation-request-id": [ + "adf6738c-3e65-4184-8a43-22ce5371ee1e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135057Z:adf6738c-3e65-4184-8a43-22ce5371ee1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:50:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11992" + ], + "x-ms-request-id": [ + "de02cf25-a737-4c97-8518-e95972583cfe" + ], + "x-ms-correlation-request-id": [ + "de02cf25-a737-4c97-8518-e95972583cfe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135112Z:de02cf25-a737-4c97-8518-e95972583cfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:51:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-reads": [ + "11991" + ], + "x-ms-request-id": [ + "08df6835-b8d6-446f-a8ca-ca86159e9bde" + ], + "x-ms-correlation-request-id": [ + "08df6835-b8d6-446f-a8ca-ca86159e9bde" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135127Z:08df6835-b8d6-446f-a8ca-ca86159e9bde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:51:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "11990" + ], + "x-ms-request-id": [ + "768986d7-3733-4a61-b1e1-634c261f83c3" + ], + "x-ms-correlation-request-id": [ + "768986d7-3733-4a61-b1e1-634c261f83c3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135143Z:768986d7-3733-4a61-b1e1-634c261f83c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:51:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "b9804118-3089-4073-8a9f-dec09b033934" + ], + "x-ms-correlation-request-id": [ + "b9804118-3089-4073-8a9f-dec09b033934" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T135143Z:b9804118-3089-4073-8a9f-dec09b033934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:51:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPolicyPipelines": [ + "ps3849", + "ps2352", + "ps566", + "ps7036", + "ps1606" + ] + }, + "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..8319271ca71c --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupCrud.json @@ -0,0 +1,5764 @@ +{ + "Entries": [ + { + "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": [ + "cc95fcb8-5c5c-46e5-a36d-addcbb723d85" + ], + "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": [ + "5675ac53-24f7-4bdd-b4ae-ebe066e64487" + ], + "x-ms-correlation-request-id": [ + "5675ac53-24f7-4bdd-b4ae-ebe066e64487" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134458Z:5675ac53-24f7-4bdd-b4ae-ebe066e64487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:44:58 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ca4a31f-1ed3-41f7-af96-60be60ae0656" + ], + "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": [ + "9e3c83eb-da79-40ba-b339-37a35fdc729d" + ], + "x-ms-correlation-request-id": [ + "9e3c83eb-da79-40ba-b339-37a35fdc729d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134459Z:9e3c83eb-da79-40ba-b339-37a35fdc729d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:44:59 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/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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" + ], + "x-ms-request-id": [ + "d0cb51c6-f105-4503-97ff-13c77361e2ed" + ], + "x-ms-correlation-request-id": [ + "f2432475-9de2-4d55-93ca-9d6d908c69bb" + ], + "x-ms-arm-service-request-id": [ + "25e11312-f616-4c9d-a08d-766f18262559" + ], + "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:20201107T134510Z:f2432475-9de2-4d55-93ca-9d6d908c69bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:09 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e81f105f-9a52-4939-97b3-3dc12e14d712" + ], + "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/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" + ], + "x-ms-request-id": [ + "e67f8c28-4219-4c3e-b1d0-4d75424949a9" + ], + "x-ms-correlation-request-id": [ + "aede2ec7-162f-49af-8acb-f3add3e665dc" + ], + "x-ms-arm-service-request-id": [ + "a86f62fc-3ae1-46b4-90d2-eb21f7dd338e" + ], + "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:20201107T134510Z:aede2ec7-162f-49af-8acb-f3add3e665dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:09 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40324952-6334-4130-985e-bef94342f903" + ], + "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/\"da85afa7-8663-4d22-bb78-cf52660f43d7\"" + ], + "x-ms-request-id": [ + "2cbe9a7a-a065-4f80-93cf-5c503bc10740" + ], + "x-ms-correlation-request-id": [ + "ce80585c-d3a5-41f3-818f-52910a26f0be" + ], + "x-ms-arm-service-request-id": [ + "f643560a-4d63-43e9-a8d9-2591d0beff39" + ], + "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:20201107T134510Z:ce80585c-d3a5-41f3-818f-52910a26f0be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:10 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\"" + ], + "x-ms-request-id": [ + "80fdac9a-6a1b-4dfa-8bb9-4640bc99b4c9" + ], + "x-ms-correlation-request-id": [ + "6a2ec4c3-f078-476a-adcb-e6178111f94d" + ], + "x-ms-arm-service-request-id": [ + "83a8c0a6-68c9-43a7-aa06-bfb2f11b3d1a" + ], + "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:20201107T134515Z:6a2ec4c3-f078-476a-adcb-e6178111f94d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:14 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNjkxOS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f24d21b3-f4e3-4183-8bca-554690cd2e68" + ], + "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/\"1fa6d7a4-07bf-4f47-a626-3b9f6f3a23bb\"" + ], + "x-ms-request-id": [ + "be1bf2c9-e8b5-4ae3-b8bc-4a9dd6ffc44b" + ], + "x-ms-correlation-request-id": [ + "61077134-3054-4444-9cf0-58afc0333a80" + ], + "x-ms-arm-service-request-id": [ + "72fd1c30-1459-4714-ab4d-8c24c39c27a8" + ], + "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:20201107T134515Z:61077134-3054-4444-9cf0-58afc0333a80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:14 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "7db545bf-19a8-449e-a7af-3dbf747515a1" + ], + "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": [ + "60020805-8059-4be0-af23-f03cbb7fc192" + ], + "Azure-AsyncOperation": [ + "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": [ + "19b6c633-10e5-4aa8-9d4c-20b70566159e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "8d4be053-72df-423b-918a-dcc5a399070b" + ], + "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:20201107T134506Z:19b6c633-10e5-4aa8-9d4c-20b70566159e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:06 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps6919/providers/Microsoft.Network/virtualNetworks/ps6919-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e65127f-b7cf-4ce5-9c18-a362cc06fc5f" + ], + "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": [ + "cf1ebb87-ec8e-4664-a087-a3542f148d6f" + ], + "Azure-AsyncOperation": [ + "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": [ + "02eac0db-a357-4270-af11-9b6ceff05723" + ], + "x-ms-arm-service-request-id": [ + "c2987e80-6d7b-42ec-b5a1-d4c7ec7fec61" + ], + "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:20201107T134511Z:02eac0db-a357-4270-af11-9b6ceff05723" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:11 GMT" + ], + "Content-Length": [ + "2182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/60020805-8059-4be0-af23-f03cbb7fc192?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy82MDAyMDgwNS04MDU5LTRiZTAtYWYyMy1mMDNjYmI3ZmMxOTI/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": [ + "dc99db22-2084-4349-9aa2-852f9be1aa39" + ], + "x-ms-correlation-request-id": [ + "384f145e-50c1-4662-be7a-ce124221c36c" + ], + "x-ms-arm-service-request-id": [ + "85ac71f2-24fc-4f16-a41e-273bb9dae617" + ], + "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:20201107T134510Z:384f145e-50c1-4662-be7a-ce124221c36c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:09 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/cf1ebb87-ec8e-4664-a087-a3542f148d6f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jZjFlYmI4Ny1lYzhlLTQ2NjQtYTA4Ny1hMzU0MmYxNDhkNmY/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": [ + "feec053c-7f10-4c5f-a1d3-de9fda53b1bd" + ], + "x-ms-correlation-request-id": [ + "db318043-5d03-4df7-bd86-f7f04a57445d" + ], + "x-ms-arm-service-request-id": [ + "210e1413-5167-41df-9dd3-5cf2cef347b4" + ], + "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:20201107T134514Z:db318043-5d03-4df7-bd86-f7f04a57445d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:14 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/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": [ + "561d7b74-397e-4f50-a5c5-ea4ded4ba32b" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T13%3A45%3A22.2806312Z'\"" + ], + "x-ms-request-id": [ + "b3391031-1f28-47de-b66d-ef8c69c197b7" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "e1932663-4c5f-48a3-887e-9059757b48f3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134523Z:e1932663-4c5f-48a3-887e-9059757b48f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:23 GMT" + ], + "Content-Length": [ + "348" + ], + "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\",\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/d48071dc-303f-4746-a456-34bdda8a849d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Q0ODA3MWRjLTMwM2YtNDc0Ni1hNDU2LTM0YmRkYThhODQ5ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "0aff89ee-5504-4370-a1f6-6518675b50da" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "6fd66daf-cb9b-4fe9-98f4-230a7da639ef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134553Z:6fd66daf-cb9b-4fe9-98f4-230a7da639ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:52 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1Njk/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-11-07T13%3A45%3A22.3476784Z'\"" + ], + "x-ms-request-id": [ + "f9be1177-f100-4bf3-84ba-3bb7e0aceb36" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ebe81c66-2a68-4d1a-8a96-e985d1624468" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134553Z:ebe81c66-2a68-4d1a-8a96-e985d1624468" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:52 GMT" + ], + "Content-Length": [ + "349" + ], + "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\",\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/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": [ + "2b4d785c-510f-42a2-b48f-af3445074d07" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T13%3A45%3A56.0444Z'\"" + ], + "x-ms-request-id": [ + "a6135613-9262-446f-9315-2398f1262632" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "08df88fd-43a2-4ff3-9b9c-78654b9a5c80" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134557Z:08df88fd-43a2-4ff3-9b9c-78654b9a5c80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:45:56 GMT" + ], + "Content-Length": [ + "470" + ], + "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/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/1c8c7275-2607-40ec-90d6-d769fdc0398d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzFjOGM3Mjc1LTI2MDctNDBlYy05MGQ2LWQ3NjlmZGMwMzk4ZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "899436b3-6232-4d4a-8dca-456c340ff6c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "10842396-6a85-4795-aa58-d7ee65df0dd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134627Z:10842396-6a85-4795-aa58-d7ee65df0dd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:46:26 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/backupPolicies/ps327?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvYmFja3VwUG9saWNpZXMvcHMzMjc/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-11-07T13%3A45%3A57.463401Z'\"" + ], + "x-ms-request-id": [ + "c4c79235-dc95-4b81-b14d-eb587f5a5c98" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d711e741-e819-4bc4-881d-c3e6cb3bd3e5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134627Z:d711e741-e819-4bc4-881d-c3e6cb3bd3e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:46:27 GMT" + ], + "Content-Length": [ + "529" + ], + "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/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/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": [ + "bc2cb3c1-5a98-42b5-800e-492f9a8abb29" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T13%3A46%3A29.7801503Z'\"" + ], + "x-ms-request-id": [ + "818d1dcb-9e21-41ab-b02c-ad0be884b96b" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "da985e81-c630-4404-a291-22d561b9f98e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134630Z:da985e81-c630-4404-a291-22d561b9f98e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:46:29 GMT" + ], + "Content-Length": [ + "465" + ], + "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\",\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/917331d9-96fa-4530-8e93-c583a9f44e16?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzkxNzMzMWQ5LTk2ZmEtNDUzMC04ZTkzLWM1ODNhOWY0NGUxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "edcce208-008b-454d-a0f7-f99b8880db59" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f39d0dd7-b704-4c5c-b865-4ddb9d2c0188" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134700Z:f39d0dd7-b704-4c5c-b865-4ddb9d2c0188" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:47:00 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTU/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-11-07T13%3A46%3A29.9832932Z'\"" + ], + "x-ms-request-id": [ + "7340fa28-1562-4f12-8983-af92fd6a9a20" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5eda855a-c6e3-4378-a89d-0c0043d2b6fd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134701Z:5eda855a-c6e3-4378-a89d-0c0043d2b6fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:47:01 GMT" + ], + "Content-Length": [ + "535" + ], + "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\",\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/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\": \"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": [ + "6911db7d-e380-40f4-999b-376ae716125f" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T13%3A47%3A02.9434986Z'\"" + ], + "x-ms-request-id": [ + "567d528b-9126-447d-859d-053cb4c1f64c" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "63cd04be-6cc8-4bbf-ac74-2b0aa12a71cc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134703Z:63cd04be-6cc8-4bbf-ac74-2b0aa12a71cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:47:03 GMT" + ], + "Content-Length": [ + "1060" + ], + "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\",\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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "e4bd42a5-f04c-47a7-83d5-dc5df5f504fb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f4b6326c-1d19-4a2b-80cc-83339e34c8c2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134734Z:f4b6326c-1d19-4a2b-80cc-83339e34c8c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:47:33 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "94cb9d5a-2c96-4b98-a4a5-285469ff2469" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "6c18969e-23bf-4be8-83cd-36dfc96f72e9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134804Z:6c18969e-23bf-4be8-83cd-36dfc96f72e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:48:03 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "65b545cc-a865-433b-b509-e72d4bff29c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3661df99-409d-427e-8772-3775a182461f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134834Z:3661df99-409d-427e-8772-3775a182461f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:48:34 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "f76b4315-0036-4c2d-9bc5-1654760da2af" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "7cff34c6-8074-44ef-87fa-6467a569d045" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134904Z:7cff34c6-8074-44ef-87fa-6467a569d045" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:49:04 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "796c1195-2325-42a5-afec-438b08cb0021" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b78a25d3-aa3f-457d-8b73-2c75a14135f3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T134935Z:b78a25d3-aa3f-457d-8b73-2c75a14135f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:49:34 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "97581a96-8558-4df8-8f95-b53431986ad6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "19f375b9-d466-4382-a941-ca83455a3d7d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135005Z:19f375b9-d466-4382-a941-ca83455a3d7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:05 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/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/c8a2a46b-f021-4ffe-a2c4-12600d991c9e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2M4YTJhNDZiLWYwMjEtNGZmZS1hMmM0LTEyNjAwZDk5MWM5ZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "27d062e3-6ff6-4bbe-aff6-9785a1199747" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a8939e49-3ddb-404f-92af-3363efd04058" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135035Z:a8939e49-3ddb-404f-92af-3363efd04058" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:34 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDA/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-11-07T13%3A50%3A11.2390571Z'\"" + ], + "x-ms-request-id": [ + "a2b1461a-cd9e-454a-b8f7-a59a65a95502" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e19aa46b-bef4-4220-bf08-cffbff7d38f3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135035Z:e19aa46b-bef4-4220-bf08-cffbff7d38f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:35 GMT" + ], + "Content-Length": [ + "1536" + ], + "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\",\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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18996e6e-ac5c-41ef-89c0-9b1207c4cac0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d993d961-96ca-4f1b-8e87-9840edd7b6ad" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d8e3e54a-2b7e-4f93-975e-04a5212b9608" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135036Z:d8e3e54a-2b7e-4f93-975e-04a5212b9608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:35 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/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/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/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": [ + "a936c75e-bb00-4b2e-9ee7-0e700678a7dd" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T13%3A50%3A36.6288656Z'\"" + ], + "x-ms-request-id": [ + "5ea87458-cf18-4c75-b7c0-b0231672c8b0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "95199b45-88b8-4131-af4d-b2da9dc07a51" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135040Z:95199b45-88b8-4131-af4d-b2da9dc07a51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:39 GMT" + ], + "Content-Length": [ + "1760" + ], + "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\",\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/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": [ + "67ecc4ee-581d-470e-b437-076aff317f8a" + ], + "Accept-Language": [ + "en-US" + ], + "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/f33d9659-bb68-4b42-88f4-b25919c0801e?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "defaaf31-8588-4566-97b8-ad7108bc8c72" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "c87d7135-826c-4378-92dd-0478533300a2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135041Z:c87d7135-826c-4378-92dd-0478533300a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:50:40 GMT" + ], + "Content-Length": [ + "449" + ], + "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 \"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/f33d9659-bb68-4b42-88f4-b25919c0801e?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YzM2Q5NjU5LWJiNjgtNGI0Mi04OGY0LWIyNTkxOWMwODAxZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "87d37c14-d018-4b86-b1fc-e9bece3b885d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "002f546c-76ae-41c4-bcde-2ee63d81d4af" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135111Z:002f546c-76ae-41c4-bcde-2ee63d81d4af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:10 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps9314?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczkzMTQ/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": [ + "6ccd3990-043a-4110-9068-2800951724c6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b39d6c7e-a1ce-44b5-80de-407185728c58" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135111Z:b39d6c7e-a1ce-44b5-80de-407185728c58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:10 GMT" + ], + "Content-Length": [ + "513" + ], + "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 \"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": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caad7ec4-0ec7-4365-9e00-31201e60c82d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3a733607-7b26-4dc0-8767-f7e25b8f67c7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "6b7829eb-d8c5-4b26-aef2-0c7d3abca9cc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135112Z:6b7829eb-d8c5-4b26-aef2-0c7d3abca9cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:11 GMT" + ], + "Content-Length": [ + "513" + ], + "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 \"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": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7677c2c4-fe89-471a-aafc-201b919127a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2472668c-2c2b-4d72-ad00-110ae574b4cb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e827071d-5c0b-47ce-aa04-42597b0b29d0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135149Z:e827071d-5c0b-47ce-aa04-42597b0b29d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:49 GMT" + ], + "Content-Length": [ + "513" + ], + "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 \"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": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d30455-edf8-4cd2-b775-9ba0216f6310" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be68fee0-06cc-4f02-ab09-ef4baac5ad12" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0462aa65-ba9a-498f-bb6c-36a2d54cfab7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135150Z:0462aa65-ba9a-498f-bb6c-36a2d54cfab7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:50 GMT" + ], + "Content-Length": [ + "513" + ], + "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 \"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/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": [ + "9f9c0b1e-9462-44b5-8cb1-4b59acb77e06" + ], + "Accept-Language": [ + "en-US" + ], + "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/77ff8ee8-be19-479d-8e29-d9a1205e2ff3?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "44a5be85-c8eb-43a6-9e75-f4fce459a607" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "ce860a09-4576-4a04-aef6-1cef0b7ae144" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135118Z:ce860a09-4576-4a04-aef6-1cef0b7ae144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:18 GMT" + ], + "Content-Length": [ + "450" + ], + "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/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/77ff8ee8-be19-479d-8e29-d9a1205e2ff3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzc3ZmY4ZWU4LWJlMTktNDc5ZC04ZTI5LWQ5YTEyMDVlMmZmMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "91c47f1f-b2f1-4842-a943-5c87f359f2b0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "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-correlation-request-id": [ + "e0cd8c85-fc78-4c19-9a8a-ee5690ce0ff4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135148Z:e0cd8c85-fc78-4c19-9a8a-ee5690ce0ff4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:48 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/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/ps6919/providers/Microsoft.NetApp/netAppAccounts/ps4569/capacityPools/ps6755/volumes/ps9740/backups/ps1580?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNjkxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQ1NjkvY2FwYWNpdHlQb29scy9wczY3NTUvdm9sdW1lcy9wczk3NDAvYmFja3Vwcy9wczE1ODA/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": [ + "5d482c4e-aef8-4a7a-a591-2b0739efd0ad" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4bb9b5ca-ce5f-435b-a52e-bad005f03f70" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135149Z:4bb9b5ca-ce5f-435b-a52e-bad005f03f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:49 GMT" + ], + "Content-Length": [ + "513" + ], + "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/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/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": [ + "33d1efad-f0cf-414f-a1be-8c2e5061024a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c49d5264-ddab-4e47-9b9a-53338d834c93" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e3e1b434-d745-437d-aaff-db936fe0f95a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135149Z:e3e1b434-d745-437d-aaff-db936fe0f95a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:49 GMT" + ], + "Content-Length": [ + "1039" + ], + "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/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/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": [ + "eb7f70c0-1ac3-4a80-a745-319c4890a7ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f1d5c296-ddcb-46b0-9e51-6def70e3eefe" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b925b5c4-a0ff-434e-885c-6fb6edaba46b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135221Z:b925b5c4-a0ff-434e-885c-6fb6edaba46b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:20 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/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/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": [ + "1f1fd5be-591a-4461-82ac-93ff26c68e12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9143394-03e1-4907-8a26-65ab4dee3050" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a60ce076-f0dd-4ed4-aae0-b732a4fe4e92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135252Z:a60ce076-f0dd-4ed4-aae0-b732a4fe4e92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:52 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/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": [ + "a5c21c34-c853-42bb-b45b-31c6083e59f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "7f1d21ee-b5be-49b1-b2f2-d4ade9716113" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "3e59a9b3-056d-4168-b05d-5cd1c0c1bb53" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135150Z:3e59a9b3-056d-4168-b05d-5cd1c0c1bb53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:51:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03231ad7-9273-4ab6-b73d-5e6019a94c1e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "529c44da-4d71-4029-a120-53865f014726" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135220Z:529c44da-4d71-4029-a120-53865f014726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:20 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/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/adbc2905-afa1-44ab-8a2e-a70f250c2f47?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2FkYmMyOTA1LWFmYTEtNDRhYi04YTJlLWE3MGYyNTBjMmY0Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "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": [ + "71d0305a-09cb-4087-9810-2cdc11cfd7ab" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "06bbf090-5b56-450a-b4f7-bfda97b9b2f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135221Z:06bbf090-5b56-450a-b4f7-bfda97b9b2f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:20 GMT" + ], + "Content-Length": [ + "318" + ], + "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 \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "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": [ + "39ccdc06-01c3-4360-b978-3a752d015a9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "16219183-b0d4-4af0-8e45-7bf87efabf74" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "8d24afc7-91ee-4992-b85c-be91f8ed91d3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135221Z:8d24afc7-91ee-4992-b85c-be91f8ed91d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cef03e0a-70bf-4040-9a71-53ca518b2264" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f1911298-850d-412b-ad88-b3c84cf4a520" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135252Z:f1911298-850d-412b-ad88-b3c84cf4a520" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:51 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/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/8baba468-0d21-4dfb-997b-3a9c0fedc5fa?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhiYWJhNDY4LTBkMjEtNGRmYi05OTdiLTNhOWMwZmVkYzVmYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "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": [ + "fd7c0c0e-c4ea-45df-bd47-9a79e4b4a693" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "99fe311d-a140-4506-b4c3-ed076d406bd2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135252Z:99fe311d-a140-4506-b4c3-ed076d406bd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:51 GMT" + ], + "Content-Length": [ + "318" + ], + "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/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/ps6919?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNjkxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c65f9221-12fb-4c1f-b46e-a8490fa4bb3b" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MTktU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "de1a168b-102d-4bdb-9620-9a19c904d57a" + ], + "x-ms-correlation-request-id": [ + "de1a168b-102d-4bdb-9620-9a19c904d57a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135258Z:de1a168b-102d-4bdb-9620-9a19c904d57a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:52:58 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": [ + "11999" + ], + "x-ms-request-id": [ + "f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" + ], + "x-ms-correlation-request-id": [ + "f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135313Z:f2c4860b-6e5d-4d39-8cf6-f50c36e44c25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:53:13 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": [ + "11998" + ], + "x-ms-request-id": [ + "813f0a7e-2653-4e42-bf4c-e66fd0fcea17" + ], + "x-ms-correlation-request-id": [ + "813f0a7e-2653-4e42-bf4c-e66fd0fcea17" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135329Z:813f0a7e-2653-4e42-bf4c-e66fd0fcea17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:53:28 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": [ + "11997" + ], + "x-ms-request-id": [ + "4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" + ], + "x-ms-correlation-request-id": [ + "4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135344Z:4282b33a-3fe6-4b78-ab3a-99cd22c28ef7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:53:44 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": [ + "11996" + ], + "x-ms-request-id": [ + "818111f8-a9ee-42da-bbd3-fe5d5c2ae503" + ], + "x-ms-correlation-request-id": [ + "818111f8-a9ee-42da-bbd3-fe5d5c2ae503" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135359Z:818111f8-a9ee-42da-bbd3-fe5d5c2ae503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:53:59 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": [ + "11995" + ], + "x-ms-request-id": [ + "076dd4d3-af11-4183-9ed3-f35e3b188e73" + ], + "x-ms-correlation-request-id": [ + "076dd4d3-af11-4183-9ed3-f35e3b188e73" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135415Z:076dd4d3-af11-4183-9ed3-f35e3b188e73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:54:14 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": [ + "11994" + ], + "x-ms-request-id": [ + "13534ce7-ae96-4ac5-889b-4db1be0595b0" + ], + "x-ms-correlation-request-id": [ + "13534ce7-ae96-4ac5-889b-4db1be0595b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135430Z:13534ce7-ae96-4ac5-889b-4db1be0595b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:54:30 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": [ + "11993" + ], + "x-ms-request-id": [ + "f57c1e53-1a82-407c-a945-314a62f876f7" + ], + "x-ms-correlation-request-id": [ + "f57c1e53-1a82-407c-a945-314a62f876f7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135446Z:f57c1e53-1a82-407c-a945-314a62f876f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:54:45 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": [ + "11992" + ], + "x-ms-request-id": [ + "6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" + ], + "x-ms-correlation-request-id": [ + "6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135501Z:6b5ea5ff-8a6d-4ae5-a30b-70ba4f56c3ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:55:00 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": [ + "11991" + ], + "x-ms-request-id": [ + "d2738a2b-e1ed-40f7-8e62-39b65915b87b" + ], + "x-ms-correlation-request-id": [ + "d2738a2b-e1ed-40f7-8e62-39b65915b87b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135516Z:d2738a2b-e1ed-40f7-8e62-39b65915b87b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:55:16 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": [ + "11990" + ], + "x-ms-request-id": [ + "c5af50a9-8fac-4784-88c0-a068dfa3abe9" + ], + "x-ms-correlation-request-id": [ + "c5af50a9-8fac-4784-88c0-a068dfa3abe9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135532Z:c5af50a9-8fac-4784-88c0-a068dfa3abe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:55:31 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": [ + "11989" + ], + "x-ms-request-id": [ + "0ecb9f22-8c84-4d36-bbfc-06bf36f94989" + ], + "x-ms-correlation-request-id": [ + "0ecb9f22-8c84-4d36-bbfc-06bf36f94989" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135547Z:0ecb9f22-8c84-4d36-bbfc-06bf36f94989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:55:47 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": [ + "11988" + ], + "x-ms-request-id": [ + "102c245a-3c31-42fe-8e1c-cec59926d518" + ], + "x-ms-correlation-request-id": [ + "102c245a-3c31-42fe-8e1c-cec59926d518" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135602Z:102c245a-3c31-42fe-8e1c-cec59926d518" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:56:01 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": [ + "11987" + ], + "x-ms-request-id": [ + "50fedc04-eee9-4119-b4c3-0effa85f2a7b" + ], + "x-ms-correlation-request-id": [ + "50fedc04-eee9-4119-b4c3-0effa85f2a7b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135618Z:50fedc04-eee9-4119-b4c3-0effa85f2a7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:56:17 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": [ + "11986" + ], + "x-ms-request-id": [ + "13880641-02b4-4eb8-a30e-cd3dfa7842ea" + ], + "x-ms-correlation-request-id": [ + "13880641-02b4-4eb8-a30e-cd3dfa7842ea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135633Z:13880641-02b4-4eb8-a30e-cd3dfa7842ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:56:32 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": [ + "11985" + ], + "x-ms-request-id": [ + "67fe0fa9-ce17-4890-ab4f-5145912331e7" + ], + "x-ms-correlation-request-id": [ + "67fe0fa9-ce17-4890-ab4f-5145912331e7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135648Z:67fe0fa9-ce17-4890-ab4f-5145912331e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:56:48 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": [ + "11984" + ], + "x-ms-request-id": [ + "9c42289c-0592-49e3-8cc6-fa2ab43b30e2" + ], + "x-ms-correlation-request-id": [ + "9c42289c-0592-49e3-8cc6-fa2ab43b30e2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135704Z:9c42289c-0592-49e3-8cc6-fa2ab43b30e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:57:04 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": [ + "11983" + ], + "x-ms-request-id": [ + "b48660b5-91f0-4d88-98ec-765422a62558" + ], + "x-ms-correlation-request-id": [ + "b48660b5-91f0-4d88-98ec-765422a62558" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135719Z:b48660b5-91f0-4d88-98ec-765422a62558" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:57:18 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": [ + "11982" + ], + "x-ms-request-id": [ + "b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" + ], + "x-ms-correlation-request-id": [ + "b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135734Z:b876bd4b-9559-4cb3-80cd-37e4bf7eeffc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:57:34 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": [ + "11981" + ], + "x-ms-request-id": [ + "66004013-a85f-480d-aaff-b6691aa87f41" + ], + "x-ms-correlation-request-id": [ + "66004013-a85f-480d-aaff-b6691aa87f41" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135750Z:66004013-a85f-480d-aaff-b6691aa87f41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:57:49 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": [ + "11980" + ], + "x-ms-request-id": [ + "1326620c-07af-420f-80c6-9e7bb76ae02e" + ], + "x-ms-correlation-request-id": [ + "1326620c-07af-420f-80c6-9e7bb76ae02e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135806Z:1326620c-07af-420f-80c6-9e7bb76ae02e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:58:05 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": [ + "11979" + ], + "x-ms-request-id": [ + "d3dedf46-4600-45d3-b97f-1d75c8003648" + ], + "x-ms-correlation-request-id": [ + "d3dedf46-4600-45d3-b97f-1d75c8003648" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135821Z:d3dedf46-4600-45d3-b97f-1d75c8003648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:58:21 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": [ + "11978" + ], + "x-ms-request-id": [ + "ef0b1216-1c42-459c-b2ce-b8dff66251d9" + ], + "x-ms-correlation-request-id": [ + "ef0b1216-1c42-459c-b2ce-b8dff66251d9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135836Z:ef0b1216-1c42-459c-b2ce-b8dff66251d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:58:36 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": [ + "11977" + ], + "x-ms-request-id": [ + "520d1e43-dc4e-4530-bfa0-223755c51a73" + ], + "x-ms-correlation-request-id": [ + "520d1e43-dc4e-4530-bfa0-223755c51a73" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135852Z:520d1e43-dc4e-4530-bfa0-223755c51a73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:58:51 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": [ + "11976" + ], + "x-ms-request-id": [ + "2be550f9-7ff7-4463-984a-baeb6bba2608" + ], + "x-ms-correlation-request-id": [ + "2be550f9-7ff7-4463-984a-baeb6bba2608" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135907Z:2be550f9-7ff7-4463-984a-baeb6bba2608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:59:07 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": [ + "11975" + ], + "x-ms-request-id": [ + "9a6227bc-453a-4486-82e2-39eee971b2c2" + ], + "x-ms-correlation-request-id": [ + "9a6227bc-453a-4486-82e2-39eee971b2c2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135922Z:9a6227bc-453a-4486-82e2-39eee971b2c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:59:22 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": [ + "11974" + ], + "x-ms-request-id": [ + "1fc19cc4-aeed-4001-9270-e7d1b7a90543" + ], + "x-ms-correlation-request-id": [ + "1fc19cc4-aeed-4001-9270-e7d1b7a90543" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135938Z:1fc19cc4-aeed-4001-9270-e7d1b7a90543" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:59:37 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": [ + "11973" + ], + "x-ms-request-id": [ + "86297792-2075-40a9-8d82-3463831b622f" + ], + "x-ms-correlation-request-id": [ + "86297792-2075-40a9-8d82-3463831b622f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T135953Z:86297792-2075-40a9-8d82-3463831b622f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 13:59:53 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": [ + "11972" + ], + "x-ms-request-id": [ + "e839a2c8-63b9-4ec3-a7f1-6f932180b225" + ], + "x-ms-correlation-request-id": [ + "e839a2c8-63b9-4ec3-a7f1-6f932180b225" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140008Z:e839a2c8-63b9-4ec3-a7f1-6f932180b225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:00:08 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": [ + "11971" + ], + "x-ms-request-id": [ + "6ccff480-05a0-4f4b-9246-d2f52ea9abca" + ], + "x-ms-correlation-request-id": [ + "6ccff480-05a0-4f4b-9246-d2f52ea9abca" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140024Z:6ccff480-05a0-4f4b-9246-d2f52ea9abca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:00:23 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": [ + "11970" + ], + "x-ms-request-id": [ + "aa5147c1-90c8-4ece-812e-373d54861c79" + ], + "x-ms-correlation-request-id": [ + "aa5147c1-90c8-4ece-812e-373d54861c79" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140039Z:aa5147c1-90c8-4ece-812e-373d54861c79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:00:39 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": [ + "11969" + ], + "x-ms-request-id": [ + "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": [ + "bfa9fe9e-b04b-4f85-9c02-15390ae0d362" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140227Z:bfa9fe9e-b04b-4f85-9c02-15390ae0d362" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:02:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupCrud": [ + "ps6919", + "ps4569", + "ps6755", + "ps29", + "ps9314", + "ps1580", + "ps327", + "ps9740" + ] + }, + "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..f7d1d0d55e44 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.BackupTests/TestBackupPipelines.json @@ -0,0 +1,5253 @@ +{ + "Entries": [ + { + "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": [ + "02307d94-6dd1-4771-9969-5082e9a39aa9" + ], + "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": [ + "83088968-dc2b-4bb5-812c-0594cfce9947" + ], + "x-ms-correlation-request-id": [ + "83088968-dc2b-4bb5-812c-0594cfce9947" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140546Z:83088968-dc2b-4bb5-812c-0594cfce9947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:05:45 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "1f4cbc78-85b8-49e7-aca5-7b4c7bdbc42d" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T14%3A05%3A52.2040054Z'\"" + ], + "x-ms-request-id": [ + "e1278cfd-ff5b-4c01-b003-db6973e85ae5" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "d0cbf120-6ed5-486d-876e-7f685e1b3532" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140553Z:d0cbf120-6ed5-486d-876e-7f685e1b3532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:05:53 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "3919e3b6-0d0e-4c8b-8cc9-309bbc558867" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T14%3A10%3A52.8836133Z'\"" + ], + "x-ms-request-id": [ + "09b902e9-8ca5-483c-ac62-07dee996e0ba" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "38a02b65-1e41-42bd-9be4-ac53d717277f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141054Z:38a02b65-1e41-42bd-9be4-ac53d717277f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:10:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/00b23f35-a2ea-4016-b906-536e71633ba2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzAwYjIzZjM1LWEyZWEtNDAxNi1iOTA2LTUzNmU3MTYzM2JhMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "f1ffdcf6-fca3-42af-9c69-9eda4920cb6c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "07c2878b-010a-410d-a41e-43559e1056b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140623Z:07c2878b-010a-410d-a41e-43559e1056b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:22 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/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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/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-11-07T14%3A05%3A52.280059Z'\"" + ], + "x-ms-request-id": [ + "03e8a0ac-5207-43e2-b0a8-f59444e2ad8f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d7bafcc7-20ce-4160-9973-da0098b79f1d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140624Z:d7bafcc7-20ce-4160-9973-da0098b79f1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDE/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-11-07T14%3A10%3A52.9506601Z'\"" + ], + "x-ms-request-id": [ + "060c3e14-2a42-47ce-91f8-0d529a2556a3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "91950123-bcc4-4d00-8c7e-c93dbccc15fc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141125Z:91950123-bcc4-4d00-8c7e-c93dbccc15fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:25 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "15a10b15-b051-47b1-ac9f-9917cae7a766" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T14%3A06%3A25.8607056Z'\"" + ], + "x-ms-request-id": [ + "95d10f99-298b-4828-ae4e-4246f622ab2e" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "13867961-757c-4a03-ae51-cdb6b7b9923a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140626Z:13867961-757c-4a03-ae51-cdb6b7b9923a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:25 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/947df35c-f3fe-4131-9ae6-86a4cdd9f9ef?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzk0N2RmMzVjLWYzZmUtNDEzMS05YWU2LTg2YTRjZGQ5ZjllZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "9310e767-74ae-4cd4-8470-e366996be5cf" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d723d55b-01a2-4083-9bdc-e038225b97eb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140656Z:d723d55b-01a2-4083-9bdc-e038225b97eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:56 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/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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTg/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-11-07T14%3A06%3A26.0888665Z'\"" + ], + "x-ms-request-id": [ + "2c573042-585f-414c-9af2-10cb9334ddf8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "56035d00-f999-4752-89ea-b39b13b28f7e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140657Z:56035d00-f999-4752-89ea-b39b13b28f7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:57 GMT" + ], + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "22793304-2665-475a-89b8-5315b48138eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-07T14%3A06%3A26.0888665Z'\"" + ], + "x-ms-request-id": [ + "7d5304b3-eeab-406f-9dc9-1c125ad1d930" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8ae8eea3-167c-462c-acbc-c26b593cb983" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140714Z:8ae8eea3-167c-462c-acbc-c26b593cb983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:14 GMT" + ], + "Content-Length": [ + "535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccb9f934-5784-4d49-b4b4-ac97c36c6651" + ], + "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": [ + "f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" + ], + "x-ms-correlation-request-id": [ + "f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140658Z:f2f0ae6c-ecb9-45f9-b282-56d3b9726d0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:06:57 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/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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" + ], + "x-ms-request-id": [ + "acfc087a-e005-47a6-b521-cf2acc12ec39" + ], + "x-ms-correlation-request-id": [ + "6b65e7a0-fa0b-4075-b00c-9aec90ecaf39" + ], + "x-ms-arm-service-request-id": [ + "05204070-985d-4eb0-bc14-6d51b0a6b064" + ], + "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:20201107T140709Z:6b65e7a0-fa0b-4075-b00c-9aec90ecaf39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:09 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dafe753c-0d52-4274-8c52-4d04d864e792" + ], + "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/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" + ], + "x-ms-request-id": [ + "a0ad22af-d632-4885-9da5-cfb212eb5e03" + ], + "x-ms-correlation-request-id": [ + "b9e4196a-d86c-457c-bc62-702a3cb3a00b" + ], + "x-ms-arm-service-request-id": [ + "19d385c4-8810-4d63-aafb-b581cb2e0f0d" + ], + "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:20201107T140709Z:b9e4196a-d86c-457c-bc62-702a3cb3a00b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:09 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "183f9a8d-a2cd-4059-bd58-819339c0e87b" + ], + "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/\"40add4d0-81b0-4ce6-af9b-ed2683677a40\"" + ], + "x-ms-request-id": [ + "8fd8870d-bfea-41f0-892f-448c6d2f6d32" + ], + "x-ms-correlation-request-id": [ + "a76bd582-8dac-4946-8fac-a93609aec393" + ], + "x-ms-arm-service-request-id": [ + "26f2b772-15ac-47b2-bf96-03a3173660f7" + ], + "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:20201107T140710Z:a76bd582-8dac-4946-8fac-a93609aec393" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:09 GMT" + ], + "Content-Length": [ + "649" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\"" + ], + "x-ms-request-id": [ + "acdcd1ba-80d7-4bcf-aca5-4a3841e2f18a" + ], + "x-ms-correlation-request-id": [ + "e9ed4a40-6099-436e-8479-6bece1804f48" + ], + "x-ms-arm-service-request-id": [ + "ffa19dd3-2092-410c-821e-d0052fb1ee54" + ], + "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:20201107T140714Z:e9ed4a40-6099-436e-8479-6bece1804f48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:13 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTQ4Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7cf26b0-31b6-4479-9a9c-0a87c7d2da38" + ], + "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/\"9ca55771-8c9a-49c9-bde9-0346c3f1e0d2\"" + ], + "x-ms-request-id": [ + "463092af-14e3-4239-a7ae-51c916e955c3" + ], + "x-ms-correlation-request-id": [ + "1fece5ff-7e5e-4d29-bb6d-d9164bed4f5c" + ], + "x-ms-arm-service-request-id": [ + "78cf1d8d-cd75-4903-a13c-ebcc6d5a74d5" + ], + "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:20201107T140714Z:1fece5ff-7e5e-4d29-bb6d-d9164bed4f5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:14 GMT" + ], + "Content-Length": [ + "2184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "ce8c44e4-3ab5-4b08-8b55-c89254c84176" + ], + "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": [ + "c60541a5-5ace-44cf-a3dc-320efeeb4387" + ], + "Azure-AsyncOperation": [ + "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": [ + "84c27190-0667-4ab1-aed7-1e7df93feb21" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ec9f0b4d-0c93-4380-9d24-a6cd1707e698" + ], + "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:20201107T140706Z:84c27190-0667-4ab1-aed7-1e7df93feb21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:05 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps5487/providers/Microsoft.Network/virtualNetworks/ps5487-vnet\",\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c843131-f693-4a04-85b3-d6239497e11c" + ], + "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": [ + "cee00c63-089e-4ef3-adc6-75603f4be2a1" + ], + "Azure-AsyncOperation": [ + "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": [ + "44957720-a83a-4f96-b6d2-15cf48011aa3" + ], + "x-ms-arm-service-request-id": [ + "540ac156-64d7-4225-b2f4-6bf32ba54468" + ], + "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:20201107T140710Z:44957720-a83a-4f96-b6d2-15cf48011aa3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:10 GMT" + ], + "Content-Length": [ + "2182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/c60541a5-5ace-44cf-a3dc-320efeeb4387?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jNjA1NDFhNS01YWNlLTQ0Y2YtYTNkYy0zMjBlZmVlYjQzODc/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": [ + "218d3e10-b9ef-40c1-b52d-3f267cb345c8" + ], + "x-ms-correlation-request-id": [ + "6d5d527a-d3eb-4474-b26b-098211497f87" + ], + "x-ms-arm-service-request-id": [ + "a735e83b-33a6-4343-b982-9bc1ca619f81" + ], + "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:20201107T140709Z:6d5d527a-d3eb-4474-b26b-098211497f87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:09 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/cee00c63-089e-4ef3-adc6-75603f4be2a1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9jZWUwMGM2My0wODllLTRlZjMtYWRjNi03NTYwM2Y0YmUyYTE/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": [ + "abdc6857-3f3f-4f98-abe7-fad776f5c261" + ], + "x-ms-correlation-request-id": [ + "7ba9f3f3-7bc4-4eca-9a57-4160b0b0a283" + ], + "x-ms-arm-service-request-id": [ + "a9082932-97fd-43f8-bd75-f1cb031395e7" + ], + "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:20201107T140714Z:7ba9f3f3-7bc4-4eca-9a57-4160b0b0a283" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:13 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/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\": \"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": [ + "1aceaef2-88c2-48f2-b0f6-6807b810e830" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T14%3A07%3A18.598835Z'\"" + ], + "x-ms-request-id": [ + "c209b22f-6067-4488-bf51-3cf34c7dd577" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "edfcd2cc-ddb6-476b-8b4d-9d673664520d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140719Z:edfcd2cc-ddb6-476b-8b4d-9d673664520d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:19 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "88ba7f20-ec7e-4617-8978-3bf75f607305" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2e73bdc1-f50a-4ad1-9004-caa84ca9b2c6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140749Z:2e73bdc1-f50a-4ad1-9004-caa84ca9b2c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:07:49 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "95b22cdc-5e49-4369-accc-61c19c77b75e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "49b37fb3-b69b-4acf-b989-273f7edb88f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140819Z:49b37fb3-b69b-4acf-b989-273f7edb88f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:08:19 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "676a884d-7e54-4480-acb8-1c7e889bfb7a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4ddb6b16-abdb-42a8-8996-7f3ee9b9baf9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140850Z:4ddb6b16-abdb-42a8-8996-7f3ee9b9baf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:08:49 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "c98b74ca-cb9b-4857-9c6d-74779dfca2d7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "05ce78c7-cc00-4dcd-b799-cdfefa0005b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140920Z:05ce78c7-cc00-4dcd-b799-cdfefa0005b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:09:19 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "360c9bec-b203-4a8d-97dc-f7c25f29f251" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "09f306d6-2fed-47fe-b65b-159ec5b82076" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T140950Z:09f306d6-2fed-47fe-b65b-159ec5b82076" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:09:49 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "68ec5358-7696-4fc8-a15d-f966a2cafdd2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ad8fb903-ab84-4642-8848-13fc0af91339" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141020Z:ad8fb903-ab84-4642-8848-13fc0af91339" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:10:20 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/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/efecca40-9b4e-4e71-89ff-9c2356b96ed3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2VmZWNjYTQwLTliNGUtNGU3MS04OWZmLTljMjM1NmI5NmVkMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "5a86cbaf-36c1-4dd3-85f6-a124002c8f27" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "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-correlation-request-id": [ + "067cf220-6c96-4274-bfba-6c1181fcd81e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141050Z:067cf220-6c96-4274-bfba-6c1181fcd81e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:10:50 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/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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzg/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-11-07T14%3A10%3A35.0981863Z'\"" + ], + "x-ms-request-id": [ + "6383f97e-a6dd-46c1-b6ca-17b3e69415b6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0212ee15-d50e-4ed2-abc2-2939f70be62d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141051Z:0212ee15-d50e-4ed2-abc2-2939f70be62d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:10:51 GMT" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "35cfa90f-3e35-4ad5-81b2-7f96e05f819f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-07T14%3A11%3A29.4781825Z'\"" + ], + "x-ms-request-id": [ + "5b9004e8-85ad-42fa-9468-eee2a3d63647" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3dcab2b8-d522-4bae-9ede-e05b0f3a6654" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141130Z:3dcab2b8-d522-4bae-9ede-e05b0f3a6654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:29 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "bf22fec2-8e99-47c1-8e59-a837fed08a9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-07T14%3A11%3A29.4781825Z'\"" + ], + "x-ms-request-id": [ + "997da6da-8a94-426a-9cbc-c51bd3cda164" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "05daf193-a808-4b03-8385-68f76cbfc479" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141201Z:05daf193-a808-4b03-8385-68f76cbfc479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:01 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "596933e0-79cd-4d26-9acf-8fdb6965c40f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-07T14%3A11%3A29.4781825Z'\"" + ], + "x-ms-request-id": [ + "ed6ac2e9-3c52-4ee4-87de-e315169837f2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "30797238-4f80-430d-82c7-746e28edf233" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141240Z:30797238-4f80-430d-82c7-746e28edf233" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:39 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/d9e7cb77-04d8-4acd-9c70-187d211f20ed?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Q5ZTdjYjc3LTA0ZDgtNGFjZC05YzcwLTE4N2QyMTFmMjBlZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "fe555793-7853-459a-9d2b-588ef4c7dcc3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bb8b24de-aac8-4031-9d10-6c5c53448f3e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141125Z:bb8b24de-aac8-4031-9d10-6c5c53448f3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:25 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/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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68d813fa-82ae-48f3-9e21-5732fe765c43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "310812be-0b63-4096-9662-dedb25788d86" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c8ce72fd-07f7-47c5-8332-980bf7ae0dce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141125Z:c8ce72fd-07f7-47c5-8332-980bf7ae0dce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:25 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/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/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/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": [ + "870380f3-9294-499a-93d2-ea4ae1f558fb" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-07T14%3A11%3A25.9747346Z'\"" + ], + "x-ms-request-id": [ + "c436d1f4-9c9b-42cb-bab4-2f3bf4a433eb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "d2d9be7c-7216-45dd-8156-26dae081c7ae" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141129Z:d2d9be7c-7216-45dd-8156-26dae081c7ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:29 GMT" + ], + "Content-Length": [ + "1732" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "a7792eb4-5b5d-4a6e-906d-b6bdd7b917d5" + ], + "Accept-Language": [ + "en-US" + ], + "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/3ff95be3-3fd5-4933-932f-90e5be9b03b1?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "1d408f3e-4eeb-4032-984c-14e41d2dfa05" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "56837456-d37b-4d61-9989-2e6f6cc622af" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141130Z:56837456-d37b-4d61-9989-2e6f6cc622af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:11:30 GMT" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/3ff95be3-3fd5-4933-932f-90e5be9b03b1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzNmZjk1YmUzLTNmZDUtNDkzMy05MzJmLTkwZTViZTliMDNiMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "84b4da6d-7220-4610-976d-4e601fde9f9d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5650035e-cb21-495a-88f5-ef8898fb5163" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141201Z:5650035e-cb21-495a-88f5-ef8898fb5163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:01 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/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/ps5487/providers/Microsoft.NetApp/netAppAccounts/ps4241/capacityPools/ps8518/volumes/ps9038/backups/ps9887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNTQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczQyNDEvY2FwYWNpdHlQb29scy9wczg1MTgvdm9sdW1lcy9wczkwMzgvYmFja3Vwcy9wczk4ODc/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": [ + "c71a2ff9-0c32-4901-af32-4924bac85e99" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ead84081-7a9c-4218-b102-71bab2fa7fdb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141201Z:ead84081-7a9c-4218-b102-71bab2fa7fdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:01 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "18618723-83d0-41ad-b514-cda37a103a6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a0ad977-1c7d-4f4a-a3e1-8af98c885562" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c5bbf842-c5a5-4cab-afd0-a3b5439cbc02" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141208Z:c5bbf842-c5a5-4cab-afd0-a3b5439cbc02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:08 GMT" + ], + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "96ee8895-4732-4e68-8c9b-258cccedbd67" + ], + "Accept-Language": [ + "en-US" + ], + "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": [ + "8a8a6317-d4ea-4976-9bca-17023e05474d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-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": [ + "a121347b-b61f-4e17-91ee-7c110a2c20be" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141208Z:a121347b-b61f-4e17-91ee-7c110a2c20be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:07 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "68c5e222-e903-48ef-8469-cd91b4995ca6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2c3e5e1-7d8b-4873-b23e-79091f3dfb52" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "319b9234-7a37-4828-ba25-91d355976027" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141208Z:319b9234-7a37-4828-ba25-91d355976027" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:08 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/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/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": [ + "b9678e27-9284-4207-a9ea-c9568b399aea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40f5c60e-9b4d-4624-bb81-5bd6ee418375" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4baae9c2-f73d-4074-bac9-41eb2cdf66d1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141240Z:4baae9c2-f73d-4074-bac9-41eb2cdf66d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:39 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/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": [ + "a2763173-b899-461d-8cf4-2006d0861ac3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01&operationResultResponseType=Location" + ], + "x-ms-request-id": [ + "a0fff318-446b-4677-b79e-3931a424e040" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "bfdb5432-135c-4786-9231-a9855118600a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141209Z:bfdb5432-135c-4786-9231-a9855118600a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0a19e5cc-7c4d-4caa-8e29-6816923af11e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "899b1fcc-5da0-48e6-8527-133d1f76d72b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141239Z:899b1fcc-5da0-48e6-8527-133d1f76d72b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:39 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/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/8ad4f442-95fd-44bb-9b98-86ec9f936098?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhhZDRmNDQyLTk1ZmQtNDRiYi05Yjk4LTg2ZWM5ZjkzNjA5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==", + "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": [ + "92b19a89-9ea5-4fd1-90af-4ca47c0b83a7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f961ddd8-9383-43ea-91af-e8e335d6aeee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141239Z:f961ddd8-9383-43ea-91af-e8e335d6aeee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:12:39 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps5487?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNTQ4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1b99285-bdec-45f8-a477-104dd4bac4ad" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU0ODctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "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": [ + "603caf44-31b0-4435-a4f0-5b6328c99a3c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141446Z:603caf44-31b0-4435-a4f0-5b6328c99a3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:14:46 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": [ + "11991" + ], + "x-ms-request-id": [ + "ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" + ], + "x-ms-correlation-request-id": [ + "ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141502Z:ee0e018f-1ac0-4444-86c0-c6ecebac4fd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:15:02 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": [ + "11990" + ], + "x-ms-request-id": [ + "b3aafd1b-c59b-4d7c-b988-74b7d89dd117" + ], + "x-ms-correlation-request-id": [ + "b3aafd1b-c59b-4d7c-b988-74b7d89dd117" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141517Z:b3aafd1b-c59b-4d7c-b988-74b7d89dd117" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:15:17 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": [ + "11989" + ], + "x-ms-request-id": [ + "9fa739d2-a4a3-495c-ab67-e05612cd54d7" + ], + "x-ms-correlation-request-id": [ + "9fa739d2-a4a3-495c-ab67-e05612cd54d7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141532Z:9fa739d2-a4a3-495c-ab67-e05612cd54d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:15:32 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": [ + "11988" + ], + "x-ms-request-id": [ + "14e2dae9-bd8f-41f7-9721-d456fd570988" + ], + "x-ms-correlation-request-id": [ + "14e2dae9-bd8f-41f7-9721-d456fd570988" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141548Z:14e2dae9-bd8f-41f7-9721-d456fd570988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:15:47 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": [ + "11987" + ], + "x-ms-request-id": [ + "79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" + ], + "x-ms-correlation-request-id": [ + "79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141603Z:79c0726d-ea3f-47fe-8d31-3cb2ec6669bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:16:03 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": [ + "11986" + ], + "x-ms-request-id": [ + "b8076d81-5cd4-4955-919c-fcdc799667a8" + ], + "x-ms-correlation-request-id": [ + "b8076d81-5cd4-4955-919c-fcdc799667a8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141618Z:b8076d81-5cd4-4955-919c-fcdc799667a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:16:18 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": [ + "11985" + ], + "x-ms-request-id": [ + "fc30814f-4f14-48a1-9d88-4b9c403b6c03" + ], + "x-ms-correlation-request-id": [ + "fc30814f-4f14-48a1-9d88-4b9c403b6c03" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141634Z:fc30814f-4f14-48a1-9d88-4b9c403b6c03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:16:33 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": [ + "11984" + ], + "x-ms-request-id": [ + "dad9a808-c78d-4c9b-90a3-18eb2925eef8" + ], + "x-ms-correlation-request-id": [ + "dad9a808-c78d-4c9b-90a3-18eb2925eef8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141649Z:dad9a808-c78d-4c9b-90a3-18eb2925eef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:16:49 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": [ + "11983" + ], + "x-ms-request-id": [ + "76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" + ], + "x-ms-correlation-request-id": [ + "76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141705Z:76fe8c25-0fc6-43f1-9bfe-cce1a067f5b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:17:04 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": [ + "11982" + ], + "x-ms-request-id": [ + "640bb8d8-5e50-45a7-a364-a542e63d33b4" + ], + "x-ms-correlation-request-id": [ + "640bb8d8-5e50-45a7-a364-a542e63d33b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141720Z:640bb8d8-5e50-45a7-a364-a542e63d33b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:17:20 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": [ + "11981" + ], + "x-ms-request-id": [ + "106f47c8-849a-41ee-871b-19091b5a7de2" + ], + "x-ms-correlation-request-id": [ + "106f47c8-849a-41ee-871b-19091b5a7de2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141735Z:106f47c8-849a-41ee-871b-19091b5a7de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:17:35 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": [ + "11980" + ], + "x-ms-request-id": [ + "db0cd439-517e-44c2-9c2b-1c7104f8b16d" + ], + "x-ms-correlation-request-id": [ + "db0cd439-517e-44c2-9c2b-1c7104f8b16d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141751Z:db0cd439-517e-44c2-9c2b-1c7104f8b16d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:17:51 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": [ + "11979" + ], + "x-ms-request-id": [ + "1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" + ], + "x-ms-correlation-request-id": [ + "1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141806Z:1acf13e1-fdfa-4e75-b5fd-9535ab5cb68f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:18:05 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": [ + "11978" + ], + "x-ms-request-id": [ + "80d5cba8-423b-4711-937c-28669c51a9ee" + ], + "x-ms-correlation-request-id": [ + "80d5cba8-423b-4711-937c-28669c51a9ee" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141821Z:80d5cba8-423b-4711-937c-28669c51a9ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:18:21 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": [ + "11977" + ], + "x-ms-request-id": [ + "6d44bf9b-6d2a-42df-ba36-5549b60678ec" + ], + "x-ms-correlation-request-id": [ + "6d44bf9b-6d2a-42df-ba36-5549b60678ec" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141837Z:6d44bf9b-6d2a-42df-ba36-5549b60678ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:18:37 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": [ + "11976" + ], + "x-ms-request-id": [ + "c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" + ], + "x-ms-correlation-request-id": [ + "c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141852Z:c5d2e8e1-6781-4fbb-ac60-36cffa2d2f3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:18:51 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": [ + "11975" + ], + "x-ms-request-id": [ + "9d01f2c4-97f9-49f9-bc60-136e89657253" + ], + "x-ms-correlation-request-id": [ + "9d01f2c4-97f9-49f9-bc60-136e89657253" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141907Z:9d01f2c4-97f9-49f9-bc60-136e89657253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:19:07 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": [ + "11974" + ], + "x-ms-request-id": [ + "1c00a191-8e9e-4ce0-a302-706b488bb343" + ], + "x-ms-correlation-request-id": [ + "1c00a191-8e9e-4ce0-a302-706b488bb343" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141923Z:1c00a191-8e9e-4ce0-a302-706b488bb343" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:19:22 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": [ + "11973" + ], + "x-ms-request-id": [ + "0d162542-acfc-4d26-9bd3-3a5a6ab2400b" + ], + "x-ms-correlation-request-id": [ + "0d162542-acfc-4d26-9bd3-3a5a6ab2400b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141938Z:0d162542-acfc-4d26-9bd3-3a5a6ab2400b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:19:38 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": [ + "11972" + ], + "x-ms-request-id": [ + "8f6e328c-4890-4a89-8d1b-94e177ab3192" + ], + "x-ms-correlation-request-id": [ + "8f6e328c-4890-4a89-8d1b-94e177ab3192" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T141953Z:8f6e328c-4890-4a89-8d1b-94e177ab3192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:19:52 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": [ + "11971" + ], + "x-ms-request-id": [ + "dc0f8d9d-b8c2-400e-99ea-fe262dfba383" + ], + "x-ms-correlation-request-id": [ + "dc0f8d9d-b8c2-400e-99ea-fe262dfba383" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142009Z:dc0f8d9d-b8c2-400e-99ea-fe262dfba383" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:20:08 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": [ + "11970" + ], + "x-ms-request-id": [ + "1bc3f47c-ee54-4bd8-b48d-56e93086c55b" + ], + "x-ms-correlation-request-id": [ + "1bc3f47c-ee54-4bd8-b48d-56e93086c55b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142024Z:1bc3f47c-ee54-4bd8-b48d-56e93086c55b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:20:24 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": [ + "11969" + ], + "x-ms-request-id": [ + "6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" + ], + "x-ms-correlation-request-id": [ + "6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142039Z:6eacaa4d-270f-4781-b40d-c0a7cbfa2f92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:20:39 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": [ + "11968" + ], + "x-ms-request-id": [ + "d065d600-8f03-499a-b8f3-001d8193d2f3" + ], + "x-ms-correlation-request-id": [ + "d065d600-8f03-499a-b8f3-001d8193d2f3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142055Z:d065d600-8f03-499a-b8f3-001d8193d2f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:20:54 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": [ + "11967" + ], + "x-ms-request-id": [ + "e5a31c0f-f340-4ad1-8178-5937de179b0b" + ], + "x-ms-correlation-request-id": [ + "e5a31c0f-f340-4ad1-8178-5937de179b0b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142110Z:e5a31c0f-f340-4ad1-8178-5937de179b0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:21:09 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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "d6a4d719-ac35-430f-9c5b-1c2b79cb0692" + ], + "x-ms-correlation-request-id": [ + "d6a4d719-ac35-430f-9c5b-1c2b79cb0692" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142125Z:d6a4d719-ac35-430f-9c5b-1c2b79cb0692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:21:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "4f59f0db-5c2a-450f-a27e-a80bb06861c8" + ], + "x-ms-correlation-request-id": [ + "4f59f0db-5c2a-450f-a27e-a80bb06861c8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201107T142126Z:4f59f0db-5c2a-450f-a27e-a80bb06861c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 07 Nov 2020 14:21:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-BackupPipelines": [ + "ps5487", + "ps5404", + "ps4241", + "ps9038", + "ps9887", + "ps3189", + "ps8518" + ] + }, + "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.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 new file mode 100644 index 000000000000..9b8f892c75d5 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyCrud.json @@ -0,0 +1,1998 @@ +{ + "Entries": [ + { + "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": [ + "7627ce5a-73a5-4e79-81db-bd5f0db752f1" + ], + "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": [ + "1194" + ], + "x-ms-request-id": [ + "cc2cb5cd-2f73-4612-8211-5d37abea3add" + ], + "x-ms-correlation-request-id": [ + "cc2cb5cd-2f73-4612-8211-5d37abea3add" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133001Z:cc2cb5cd-2f73-4612-8211-5d37abea3add" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:00 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "5b3a2255-6f69-4bde-aaf3-a2d242c08468" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A30%3A09.8762449Z'\"" + ], + "x-ms-request-id": [ + "6d16d5c7-892c-4456-abea-64e2228400b6" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "29e90fad-d5af-4d6d-b799-f8952c9122c0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133011Z:29e90fad-d5af-4d6d-b799-f8952c9122c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:11 GMT" + ], + "Content-Length": [ + "347" + ], + "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\",\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/ffe0df3b-6913-43e9-94bc-6bd445b2ec3b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZmZlMGRmM2ItNjkxMy00M2U5LTk0YmMtNmJkNDQ1YjJlYzNiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "66c71d7f-2da0-4026-a29a-e0294f11b6a3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ff9557e0-f977-4393-8426-bae509af0e08" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133041Z:ff9557e0-f977-4393-8426-bae509af0e08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:40 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/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/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQ/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-11-06T13%3A30%3A09.9593024Z'\"" + ], + "x-ms-request-id": [ + "6e3fffe0-cffc-4319-ae04-7b3b28549889" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "30ffee05-64d5-4672-b989-dffdecd04995" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133042Z:30ffee05-64d5-4672-b989-dffdecd04995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:41 GMT" + ], + "Content-Length": [ + "348" + ], + "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\",\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/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": [ + "0cab3b09-3510-42a1-a63d-92b4ebdad86e" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A30%3A42.6271173Z'\"" + ], + "x-ms-request-id": [ + "3ec77480-2324-47f8-a409-f078fedae408" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "028d63ea-72bc-443b-9e1e-d2ddae092fa2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133042Z:028d63ea-72bc-443b-9e1e-d2ddae092fa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:41 GMT" + ], + "Content-Length": [ + "671" + ], + "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%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/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": [ + "4cbb64f6-54d2-4eba-afaf-5fdf114572eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A30%3A42.7001679Z'\"" + ], + "x-ms-request-id": [ + "181e9149-65ca-4f56-97d8-c5d3f97d8cf9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2ebe7a7d-2f05-4101-877f-4beadb39fcde" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133043Z:2ebe7a7d-2f05-4101-877f-4beadb39fcde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:42 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%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/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": [ + "2d061c1b-94ea-491e-8a36-8e04ce833bf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A30%3A43.5697705Z'\"" + ], + "x-ms-request-id": [ + "f1baf033-5056-48a9-b205-6286d0801827" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c5941eb6-5e6f-4a8c-bf6e-68cda517eb3f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133045Z:c5941eb6-5e6f-4a8c-bf6e-68cda517eb3f" + ], + "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": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04c6bfc3-6748-422c-8acb-b81a23b7242f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A30%3A43.5697705Z'\"" + ], + "x-ms-request-id": [ + "94b1f006-9d80-4cc4-9f01-00a17027c1bd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "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": [ + "5f611dfa-5351-49a4-a540-8c04b77dfe9e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133043Z:5f611dfa-5351-49a4-a540-8c04b77dfe9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:42 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.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/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": [ + "ea0755b3-a9d5-4b27-b43f-595d3d3d40f5" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A30%3A44.4113567Z'\"" + ], + "x-ms-request-id": [ + "9c703c0a-2304-480a-abeb-1d0de68be77c" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "b0508057-ef4b-41c5-9e69-fbfcceb5d2cb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133044Z:b0508057-ef4b-41c5-9e69-fbfcceb5d2cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:43 GMT" + ], + "Content-Length": [ + "671" + ], + "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/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/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02f66e14-4e36-467b-ba83-0fa65262b487" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b60f2ede-e258-4c46-8dea-4688f5b1afef" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "71181859-3708-4332-9f27-28ba1a4df189" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133044Z:71181859-3708-4332-9f27-28ba1a4df189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:43 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/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/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f099eba6-af05-4b01-ad45-3561b65ea1f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b51b9be-9092-4a9e-8570-d8def58b1691" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "030a9d49-1e1a-41b2-9722-d155ce78c91f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133116Z:030a9d49-1e1a-41b2-9722-d155ce78c91f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:15 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/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/ps8572/providers/Microsoft.NetApp/netAppAccounts/ps5394/snapshotPolicies?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODU3Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczUzOTQvc25hcHNob3RQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df9f7c4b-322c-4d74-9b20-be08844e9e86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13fe6bdd-ba99-4e75-acb8-7f3d012b7aa2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "04de4b5b-c118-4667-99f4-9a727b4b9d23" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133116Z:04de4b5b-c118-4667-99f4-9a727b4b9d23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:16 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/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/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": [ + "30423fdf-421b-4ad6-aef1-6fb775d9bea6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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/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/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?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": [ + "d236b026-0383-4d01-a6c5-a27f3d245d86" + ], + "x-ms-correlation-request-id": [ + "d236b026-0383-4d01-a6c5-a27f3d245d86" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133045Z:d236b026-0383-4d01-a6c5-a27f3d245d86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:30:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": [ + "79fae0cb-14ee-48fd-9dab-359512dde90c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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": [ + "14998" + ], + "x-ms-request-id": [ + "88914605-63aa-4a81-a745-33a55a9069f1" + ], + "x-ms-correlation-request-id": [ + "88914605-63aa-4a81-a745-33a55a9069f1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133116Z:88914605-63aa-4a81-a745-33a55a9069f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:15 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e267fdc-0977-4fe8-b333-ec3661b086f9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c0e9ee07-060c-4f49-b054-0a9ce3855e12" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133115Z:c0e9ee07-060c-4f49-b054-0a9ce3855e12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:15 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/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/916c7be3-bb3f-4b08-acb9-0e6b13a8cf28?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOTE2YzdiZTMtYmIzZi00YjA4LWFjYjktMGU2YjEzYThjZjI4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "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": [ + "596306c8-1fa8-4838-9ea0-16b129233f19" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "71ff1a42-2291-4211-b4be-6f00bb0e85d3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133116Z:71ff1a42-2291-4211-b4be-6f00bb0e85d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:15 GMT" + ], + "Content-Length": [ + "670" + ], + "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%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/ps8572?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzODU3Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b410daa-67e0-4c7e-94a6-2538313126ae" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NzItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" + ], + "x-ms-correlation-request-id": [ + "a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133120Z:a93c50b9-cbe7-4c94-8d5c-d5d79f318a5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:19 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": [ + "11984" + ], + "x-ms-request-id": [ + "5d5d168d-7d49-4973-bd62-528602e82283" + ], + "x-ms-correlation-request-id": [ + "5d5d168d-7d49-4973-bd62-528602e82283" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133135Z:5d5d168d-7d49-4973-bd62-528602e82283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:35 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": [ + "11983" + ], + "x-ms-request-id": [ + "34b12da7-7568-4b41-9acd-07fb5de1a9b4" + ], + "x-ms-correlation-request-id": [ + "34b12da7-7568-4b41-9acd-07fb5de1a9b4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133150Z:34b12da7-7568-4b41-9acd-07fb5de1a9b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:31:50 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": [ + "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": [ + "3a102512-ed2f-44e3-a304-0dedcd14caa4" + ], + "x-ms-correlation-request-id": [ + "3a102512-ed2f-44e3-a304-0dedcd14caa4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133221Z:3a102512-ed2f-44e3-a304-0dedcd14caa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:32:21 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": [ + "11980" + ], + "x-ms-request-id": [ + "d347ea35-5ede-4fca-acbf-72784d53ab3a" + ], + "x-ms-correlation-request-id": [ + "d347ea35-5ede-4fca-acbf-72784d53ab3a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133237Z:d347ea35-5ede-4fca-acbf-72784d53ab3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:32:36 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": [ + "11979" + ], + "x-ms-request-id": [ + "47c1e9df-0c27-4245-a1c8-5558c6391900" + ], + "x-ms-correlation-request-id": [ + "47c1e9df-0c27-4245-a1c8-5558c6391900" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133252Z:47c1e9df-0c27-4245-a1c8-5558c6391900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:32:51 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": [ + "11978" + ], + "x-ms-request-id": [ + "8c8f979d-67ae-4342-b83f-c1d84dc7878e" + ], + "x-ms-correlation-request-id": [ + "8c8f979d-67ae-4342-b83f-c1d84dc7878e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133307Z:8c8f979d-67ae-4342-b83f-c1d84dc7878e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:33:07 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": [ + "11977" + ], + "x-ms-request-id": [ + "750e2a94-7e53-4869-9710-b6e7d390dc31" + ], + "x-ms-correlation-request-id": [ + "750e2a94-7e53-4869-9710-b6e7d390dc31" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133323Z:750e2a94-7e53-4869-9710-b6e7d390dc31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:33:22 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": [ + "11976" + ], + "x-ms-request-id": [ + "a4ede524-c1b9-4173-8b8c-84988e40dbb7" + ], + "x-ms-correlation-request-id": [ + "a4ede524-c1b9-4173-8b8c-84988e40dbb7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133338Z:a4ede524-c1b9-4173-8b8c-84988e40dbb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:33:38 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": [ + "11975" + ], + "x-ms-request-id": [ + "60aa42e3-7d96-440d-bd45-c6b4816cc478" + ], + "x-ms-correlation-request-id": [ + "60aa42e3-7d96-440d-bd45-c6b4816cc478" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133353Z:60aa42e3-7d96-440d-bd45-c6b4816cc478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:33:53 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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" + ], + "x-ms-correlation-request-id": [ + "f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133409Z:f69cc448-6dfa-4c4d-bbad-80b5fb65f1ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "ce2a977e-53c0-404e-8963-36e4e4f77c22" + ], + "x-ms-correlation-request-id": [ + "ce2a977e-53c0-404e-8963-36e4e4f77c22" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133409Z:ce2a977e-53c0-404e-8963-36e4e4f77c22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SnapshotPolicyCrud": [ + "ps8572", + "ps5394", + "ps6865", + "ps4534" + ] + }, + "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..093487f21d24 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotPolicyTests/TestSnapshotPolicyPipelines.json @@ -0,0 +1,1042 @@ +{ + "Entries": [ + { + "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": [ + "965f5296-f83c-4202-a5b1-11e3afb8d2ce" + ], + "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": [ + "faf5022a-58b3-4fc3-b332-3407cb4952e3" + ], + "x-ms-correlation-request-id": [ + "faf5022a-58b3-4fc3-b332-3407cb4952e3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133415Z:faf5022a-58b3-4fc3-b332-3407cb4952e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:15 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "85e26fa5-ac8d-4898-96cd-b1bc2f70cc0a" + ], + "Accept-Language": [ + "en-US" + ], + "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-06T13%3A34%3A23.4062453Z'\"" + ], + "x-ms-request-id": [ + "2820a992-f974-43a1-b1b9-38574d370eed" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "737b5b3e-1eb8-4456-a348-dfdd4a4ce599" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133425Z:737b5b3e-1eb8-4456-a348-dfdd4a4ce599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:24 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/9be20950-3f11-46d8-b687-6ff3e3f660c3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvOWJlMjA5NTAtM2YxMS00NmQ4LWI2ODctNmZmM2UzZjY2MGMzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "000667ce-bb06-4d91-9f5e-6557542a465d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "82ed445e-2202-42fe-933d-88df2639024d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133455Z:82ed445e-2202-42fe-933d-88df2639024d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:55 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/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/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjg/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-11-06T13%3A34%3A23.4752935Z'\"" + ], + "x-ms-request-id": [ + "6bf60a6e-ce03-41ec-85e2-aa04990ef9d4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "9f5a24a0-8ab9-43ad-8205-7adbb2f96d72" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133455Z:9f5a24a0-8ab9-43ad-8205-7adbb2f96d72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:55 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps7603/providers/Microsoft.NetApp/netAppAccounts/ps9028?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzYwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczkwMjg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "562bf620-5449-404f-b493-95166d4cc3d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A34%3A23.4752935Z'\"" + ], + "x-ms-request-id": [ + "7017cadc-e399-4e47-b70a-2b614095f133" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "734fc6f9-89f1-4520-a3ae-702cf323ef92" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133455Z:734fc6f9-89f1-4520-a3ae-702cf323ef92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:55 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "2b918cb8-f0bd-4b8f-bfd2-8a35f9da0024" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T13%3A34%3A56.3190492Z'\"" + ], + "x-ms-request-id": [ + "c62d4d32-9469-461c-80c0-20f59358f592" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "f859c808-58f2-4a13-b94d-bf49cd9c6994" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133456Z:f859c808-58f2-4a13-b94d-bf49cd9c6994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:56 GMT" + ], + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "0b1f1757-00f6-40e4-b7f6-f0deb58f4589" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T13%3A34%3A56.3971042Z'\"" + ], + "x-ms-request-id": [ + "1954e6f9-15d1-481a-bba1-c0e934155abd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a82cab12-2644-4b53-b4aa-12b57c5bc929" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133456Z:a82cab12-2644-4b53-b4aa-12b57c5bc929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:56 GMT" + ], + "Content-Length": [ + "673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps7603?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzYwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d6e8f9f-06f5-4c50-8e19-0c640632c4b8" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" + ], + "x-ms-correlation-request-id": [ + "e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133459Z:e2d8fcaf-84d2-4405-bb72-fce46e3da1f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:34:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" + ], + "x-ms-correlation-request-id": [ + "9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133515Z:9d8bb5c3-5fb1-4f40-ac29-0f7ed73c5faf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:35:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b83154d9-7e6d-49af-83bb-a273047093f4" + ], + "x-ms-correlation-request-id": [ + "b83154d9-7e6d-49af-83bb-a273047093f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133530Z:b83154d9-7e6d-49af-83bb-a273047093f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:35:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" + ], + "x-ms-correlation-request-id": [ + "02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133545Z:02222fcb-6a0c-41e9-b867-94ab0d1ae4f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:35:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "0c88a01b-5987-4650-bfb3-322970a9f97a" + ], + "x-ms-correlation-request-id": [ + "0c88a01b-5987-4650-bfb3-322970a9f97a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133601Z:0c88a01b-5987-4650-bfb3-322970a9f97a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:36:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "faeb8087-05f4-4f5c-bc23-4e2f884df6b2" + ], + "x-ms-correlation-request-id": [ + "faeb8087-05f4-4f5c-bc23-4e2f884df6b2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133616Z:faeb8087-05f4-4f5c-bc23-4e2f884df6b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:36:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "78ed71be-9cba-48b3-926b-863a3fd2dc40" + ], + "x-ms-correlation-request-id": [ + "78ed71be-9cba-48b3-926b-863a3fd2dc40" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133631Z:78ed71be-9cba-48b3-926b-863a3fd2dc40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:36:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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": [ + "11993" + ], + "x-ms-request-id": [ + "f93c816e-786f-4b04-8e04-a719889067db" + ], + "x-ms-correlation-request-id": [ + "f93c816e-786f-4b04-8e04-a719889067db" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133647Z:f93c816e-786f-4b04-8e04-a719889067db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:36:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2MDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk1ETXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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": [ + "11992" + ], + "x-ms-request-id": [ + "f2aec55b-b620-4f75-85a9-07c94a00d7be" + ], + "x-ms-correlation-request-id": [ + "f2aec55b-b620-4f75-85a9-07c94a00d7be" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T133647Z:f2aec55b-b620-4f75-85a9-07c94a00d7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 13:36:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SnapshotPolicyPipelines": [ + "ps7603", + "ps9724", + "ps9028", + "ps2001", + "ps9049" + ] + }, + "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.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 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..2fb46ff560ce --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VaultTests/TestVaultCrud.json @@ -0,0 +1,877 @@ +{ + "Entries": [ + { + "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": [ + "e40654f5-e501-42ae-b1c0-67d0c979ce68" + ], + "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": [ + "ef5d1edc-cac1-4d72-9cd2-06b4226a571a" + ], + "x-ms-correlation-request-id": [ + "ef5d1edc-cac1-4d72-9cd2-06b4226a571a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091914Z:ef5d1edc-cac1-4d72-9cd2-06b4226a571a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:13 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "f0ef775f-40fd-4e89-b06c-b0ca1860ba42" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-05T09%3A19%3A20.2244754Z'\"" + ], + "x-ms-request-id": [ + "d60817ba-d758-45b0-8759-ed5d6c03929d" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "6260ae13-2b74-43b7-a581-6af1d48b0dc2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091920Z:6260ae13-2b74-43b7-a581-6af1d48b0dc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:20 GMT" + ], + "Content-Length": [ + "345" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/6cae763e-f985-4daa-8b65-498894bc130b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9vcGVyYXRpb25SZXN1bHRzLzZjYWU3NjNlLWY5ODUtNGRhYS04YjY1LTQ5ODg5NGJjMTMwYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "dabf6ce4-3ada-4cce-b75b-8afc221c84e5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "78b788c3-c2e4-4bc0-9bd1-c2d8439fc190" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091951Z:78b788c3-c2e4-4bc0-9bd1-c2d8439fc190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:50 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/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/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzA0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3OTA/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-11-05T09%3A19%3A20.2955281Z'\"" + ], + "x-ms-request-id": [ + "9c8c1caa-cea7-41d5-b717-9b9194fd0d29" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "733a7382-8360-4d8f-bc55-4797370eaddd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091951Z:733a7382-8360-4d8f-bc55-4797370eaddd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:50 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps7046/providers/Microsoft.NetApp/netAppAccounts/ps7790/vaults?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNzA0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczc3OTAvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cddb7e31-0939-4585-9510-a51ae7d40371" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd155d7f-f50d-457e-9ab3-b9f7592740a6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "249a9421-48c7-4c57-8518-b1e50e122810" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091951Z:249a9421-48c7-4c57-8518-b1e50e122810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:51 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/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/ps7046?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNzA0Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea7868f7-bbf2-4077-8368-55ed7bf3f0d4" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwNDYtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c30bbb12-ad19-457e-9d67-d43bbc5d709c" + ], + "x-ms-correlation-request-id": [ + "c30bbb12-ad19-457e-9d67-d43bbc5d709c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T091953Z:c30bbb12-ad19-457e-9d67-d43bbc5d709c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:19:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "11999" + ], + "x-ms-request-id": [ + "ee303f7b-bc0a-4f49-b912-2e36b68bf39b" + ], + "x-ms-correlation-request-id": [ + "ee303f7b-bc0a-4f49-b912-2e36b68bf39b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092008Z:ee303f7b-bc0a-4f49-b912-2e36b68bf39b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:20:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "11998" + ], + "x-ms-request-id": [ + "b74b3931-7c75-4ea0-93fe-e0e41d6980e4" + ], + "x-ms-correlation-request-id": [ + "b74b3931-7c75-4ea0-93fe-e0e41d6980e4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092023Z:b74b3931-7c75-4ea0-93fe-e0e41d6980e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:20:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "11997" + ], + "x-ms-request-id": [ + "41435766-f310-4d5d-9ea0-938d35234eef" + ], + "x-ms-correlation-request-id": [ + "41435766-f310-4d5d-9ea0-938d35234eef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092039Z:41435766-f310-4d5d-9ea0-938d35234eef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:20:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "11996" + ], + "x-ms-request-id": [ + "72bff772-1ccc-4a27-bbf2-e2de37e173fe" + ], + "x-ms-correlation-request-id": [ + "72bff772-1ccc-4a27-bbf2-e2de37e173fe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092054Z:72bff772-1ccc-4a27-bbf2-e2de37e173fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:20:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "11995" + ], + "x-ms-request-id": [ + "cd661c87-b780-41db-aae0-19682cce14e5" + ], + "x-ms-correlation-request-id": [ + "cd661c87-b780-41db-aae0-19682cce14e5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092109Z:cd661c87-b780-41db-aae0-19682cce14e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:21:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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" + ], + "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": [ + "563e0cea-5969-48b5-a3a7-735e4b1d331a" + ], + "x-ms-correlation-request-id": [ + "563e0cea-5969-48b5-a3a7-735e4b1d331a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092125Z:563e0cea-5969-48b5-a3a7-735e4b1d331a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:21:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": [ + "11993" + ], + "x-ms-request-id": [ + "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": [ + "95d43633-d3c1-48e4-8ada-e2a12cadfe84" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201105T092140Z:95d43633-d3c1-48e4-8ada-e2a12cadfe84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 05 Nov 2020 09:21:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VaultCrud": [ + "ps7046", + "ps7790" + ] + }, + "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/TestSetVolumePool.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSetVolumePool.json new file mode 100644 index 000000000000..18bcda2bf531 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestSetVolumePool.json @@ -0,0 +1,3964 @@ +{ + "Entries": [ + { + "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": [ + "5f977a04-4f7c-4d96-9fbd-e2d77b21dfa3" + ], + "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": [ + "346108de-1bb6-4dea-8840-59e91b5688ac" + ], + "x-ms-correlation-request-id": [ + "346108de-1bb6-4dea-8840-59e91b5688ac" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111223Z:346108de-1bb6-4dea-8840-59e91b5688ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:23 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61289776-f950-43af-a92b-dd8d41c0d919" + ], + "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": [ + "ec848537-25c4-4eea-93c7-cc8de11983ba" + ], + "x-ms-correlation-request-id": [ + "ec848537-25c4-4eea-93c7-cc8de11983ba" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111224Z:ec848537-25c4-4eea-93c7-cc8de11983ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12: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/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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" + ], + "x-ms-request-id": [ + "ba80c637-6e10-485b-aeba-8ced6284b1f1" + ], + "x-ms-correlation-request-id": [ + "41cd0b21-51c8-48e9-b851-92241647d167" + ], + "x-ms-arm-service-request-id": [ + "d3855e97-b9d9-4ad1-bf07-895326b97439" + ], + "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:20201106T111238Z:41cd0b21-51c8-48e9-b851-92241647d167" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:38 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67b76f39-8443-4f15-8cf2-b73fc688a99b" + ], + "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/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" + ], + "x-ms-request-id": [ + "4588c4e4-06de-4f62-844f-19d69615a8b7" + ], + "x-ms-correlation-request-id": [ + "a48adc31-2192-4c26-a556-100bb154d8c2" + ], + "x-ms-arm-service-request-id": [ + "6277afb6-f11d-4825-b991-197ca03bde50" + ], + "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:20201106T111238Z:a48adc31-2192-4c26-a556-100bb154d8c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:38 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "238a7443-3346-4272-9477-1b09ed396f10" + ], + "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/\"a59512c1-041f-40ec-8bd2-0eee9086d67c\"" + ], + "x-ms-request-id": [ + "aadd6e64-a24a-438a-89e2-cb060d6d48f6" + ], + "x-ms-correlation-request-id": [ + "9d19e3d7-b94d-4b60-afed-818686eb82f4" + ], + "x-ms-arm-service-request-id": [ + "d6f76d27-2fb3-44df-a04e-d4808423d0dc" + ], + "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:20201106T111239Z:9d19e3d7-b94d-4b60-afed-818686eb82f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:38 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\"" + ], + "x-ms-request-id": [ + "925c13d0-4c13-4063-953c-e29b913ad993" + ], + "x-ms-correlation-request-id": [ + "c66fb5a5-0c10-4582-ab4f-5dcb47960b48" + ], + "x-ms-arm-service-request-id": [ + "c65129a9-e5c6-4fe4-b775-51be151cdb94" + ], + "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:20201106T111243Z:c66fb5a5-0c10-4582-ab4f-5dcb47960b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:43 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTAzMC12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de530bf1-c700-4efc-ae56-5de9f92cd5bc" + ], + "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/\"e74baa13-bf27-439f-8ad0-6fe2bfd9a50b\"" + ], + "x-ms-request-id": [ + "793382f2-9539-4e4f-a621-ca2c110e1c82" + ], + "x-ms-correlation-request-id": [ + "5ec10772-bf3b-4c52-bafb-a86078a321f6" + ], + "x-ms-arm-service-request-id": [ + "c2c49d65-b41f-4f1e-880a-834bfc06a3d5" + ], + "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:20201106T111243Z:5ec10772-bf3b-4c52-bafb-a86078a321f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:43 GMT" + ], + "Content-Length": [ + "2157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "5da4920e-e6ea-4342-bc4b-91f38886aed0" + ], + "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": [ + "a6ff3418-0017-424f-b01c-70b7682d521a" + ], + "Azure-AsyncOperation": [ + "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": [ + "c72f92bf-baf9-4fc3-b817-0a3b2bb98e32" + ], + "x-ms-arm-service-request-id": [ + "0cd8b55e-1603-40e2-aae8-1010b87df0cf" + ], + "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:20201106T111234Z:c72f92bf-baf9-4fc3-b817-0a3b2bb98e32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:34 GMT" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps1030/providers/Microsoft.Network/virtualNetworks/ps1030-vnet\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "757fcb6b-e438-4f8c-8bb2-40d1cb97bdc3" + ], + "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": [ + "8669b262-b309-4f0d-812d-7981767ff2d9" + ], + "Azure-AsyncOperation": [ + "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": [ + "123129ce-d48d-468b-9994-1484805056b9" + ], + "x-ms-arm-service-request-id": [ + "e68bf64f-9886-46d1-888f-d31549eccda2" + ], + "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:20201106T111240Z:123129ce-d48d-468b-9994-1484805056b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:40 GMT" + ], + "Content-Length": [ + "2155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/a6ff3418-0017-424f-b01c-70b7682d521a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZmYzNDE4LTAwMTctNDI0Zi1iMDFjLTcwYjc2ODJkNTIxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "89c6fda3-79bc-401b-b7ca-b189a4b9f871" + ], + "x-ms-correlation-request-id": [ + "2be639ff-0937-436e-89d9-8599c3bcbc6c" + ], + "x-ms-arm-service-request-id": [ + "dc07ee6b-4ff0-414b-a2a0-c2fcb0370abd" + ], + "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:20201106T111238Z:2be639ff-0937-436e-89d9-8599c3bcbc6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12: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/providers/Microsoft.Network/locations/westcentralus/operations/8669b262-b309-4f0d-812d-7981767ff2d9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg2NjliMjYyLWIzMDktNGYwZC04MTJkLTc5ODE3NjdmZjJkOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "17f151ab-fa7d-468d-a4ec-16945a888d2c" + ], + "x-ms-correlation-request-id": [ + "7435943b-93c2-4f90-9227-1a1783ab168d" + ], + "x-ms-arm-service-request-id": [ + "48335a11-fdea-4292-b250-8e0066ed6f00" + ], + "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:20201106T111243Z:7435943b-93c2-4f90-9227-1a1783ab168d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:43 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/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": [ + "dbc71351-1e41-4843-8c6d-fb9d83afdf52" + ], + "Accept-Language": [ + "en-US" + ], + "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-06T11%3A12%3A52.5415705Z'\"" + ], + "x-ms-request-id": [ + "1ce6b4d4-5ba3-4b12-9964-3adb3c2c6021" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "2783a0fb-26dc-4ffe-bdf7-2eed40922283" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111253Z:2783a0fb-26dc-4ffe-bdf7-2eed40922283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:12:53 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/39317865-db19-4ca7-beba-eb38526df75d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMzkzMTc4NjUtZGIxOS00Y2E3LWJlYmEtZWIzODUyNmRmNzVkP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "34165dfb-7d1b-4fb4-a9d4-5317fdc3ca06" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3a79e212-0684-483e-9de5-d9eadd8a2a0a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111324Z:3a79e212-0684-483e-9de5-d9eadd8a2a0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:13:23 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/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/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5Nzg/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-11-06T11%3A12%3A52.6606537Z'\"" + ], + "x-ms-request-id": [ + "554f0593-13f9-4dcd-8a6f-fc3d59865ec7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "daa53237-34ab-4961-8275-d1e883647162" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111324Z:daa53237-34ab-4961-8275-d1e883647162" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:13:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "2c70d8dc-76ae-46c8-889e-0f014c602d83" + ], + "Accept-Language": [ + "en-US" + ], + "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-06T11%3A13%3A27.0296483Z'\"" + ], + "x-ms-request-id": [ + "07daa685-be2f-4606-aab0-3ec40d38e93e" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "ca8494ad-bd70-4995-8142-4a7dd9eea332" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111328Z:ca8494ad-bd70-4995-8142-4a7dd9eea332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:13:27 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/cabd3ae7-11ef-4035-9e0e-8fe1e8e3a3f5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvY2FiZDNhZTctMTFlZi00MDM1LTllMGUtOGZlMWU4ZTNhM2Y1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "73db56b9-2509-4fd6-af58-5d49feb660d1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "199452c5-4b40-4454-8238-99e6eab3d7c9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111358Z:199452c5-4b40-4454-8238-99e6eab3d7c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:13:58 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/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/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTU/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-11-06T11%3A13%3A32.3363566Z'\"" + ], + "x-ms-request-id": [ + "094be037-e74f-4602-b08a-76ecf3e1c0ff" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c4440cb5-3376-440c-9d85-7ff39b0d4ae3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111358Z:c4440cb5-3376-440c-9d85-7ff39b0d4ae3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:13:58 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "fb3ae8cb-a8d4-4923-baea-8fb45441375e" + ], + "Accept-Language": [ + "en-US" + ], + "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-06T11%3A14%3A01.1624856Z'\"" + ], + "x-ms-request-id": [ + "3f302513-72fc-4556-bf55-c79dd193bf5b" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "ff737033-7e7e-4960-a613-93f38ffe5316" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111402Z:ff737033-7e7e-4960-a613-93f38ffe5316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:14:02 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/1c7e3bd5-c023-4035-bdef-7b70e50a4d31?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvMWM3ZTNiZDUtYzAyMy00MDM1LWJkZWYtN2I3MGU1MGE0ZDMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "c0cd88b4-d971-4b1c-90aa-0fe3f0b44e1f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ed337990-2488-468e-bfe6-91922da552a8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111432Z:ed337990-2488-468e-bfe6-91922da552a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:14:32 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/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/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczMxNDQ/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-11-06T11%3A14%3A04.8700757Z'\"" + ], + "x-ms-request-id": [ + "b83de641-1267-4477-b978-51aa045e5e17" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "81fe3e26-3e49-4b5e-b58f-7ed199147318" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111433Z:81fe3e26-3e49-4b5e-b58f-7ed199147318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:14:32 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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\": \"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": [ + "5265a347-293f-4123-b1a9-24d9472ecd6e" + ], + "Accept-Language": [ + "en-US" + ], + "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-06T11%3A14%3A35.7246215Z'\"" + ], + "x-ms-request-id": [ + "d40cc1f1-c4c1-4db4-b9a7-7dc22cf16d07" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "6399d2a4-4834-42be-adf5-0d980cf408a4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111436Z:6399d2a4-4834-42be-adf5-0d980cf408a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:14:36 GMT" + ], + "Content-Length": [ + "1059" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "a546e89c-8192-4800-b0fb-38930af65c0f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a8062d27-aa6b-460d-9bb1-77abffe30d55" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111507Z:a8062d27-aa6b-460d-9bb1-77abffe30d55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:15:06 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": [ + "66ce9634-e217-47ba-84e6-bcef7f0fa866" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "18b1702b-68b4-45e6-a616-91f31b2b60fd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111537Z:18b1702b-68b4-45e6-a616-91f31b2b60fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:15:36 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": [ + "ece1112a-b89c-40cb-926a-dacf934a2bf5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "81e71739-1486-47f1-8de6-f6ee94651f27" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111607Z:81e71739-1486-47f1-8de6-f6ee94651f27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:16:07 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": [ + "98f6dbdc-1502-42dd-a361-e85f6a64b11a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "790d49f9-a488-462b-9121-537b0602645d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111637Z:790d49f9-a488-462b-9121-537b0602645d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:16:37 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": [ + "e7b354e4-ed1b-44af-96fe-720856c55bd9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f6542574-eeed-4b43-8999-884f1e369981" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111708Z:f6542574-eeed-4b43-8999-884f1e369981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:17:07 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": [ + "43d57ec5-cb69-4307-9ff8-489dd1be15d9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "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" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b2ba0b53-d8e0-4831-ae5b-361637c3bac1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111808Z:b2ba0b53-d8e0-4831-ae5b-361637c3bac1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:18:08 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": [ + "fedefb82-ea9b-46b0-aec1-425e9be7d449" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bc610496-ad13-43ad-a379-b4816e65a4a6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111838Z:bc610496-ad13-43ad-a379-b4816e65a4a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:18:38 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/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/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps8795/volumes/ps4433?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzMTAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk5NzgvY2FwYWNpdHlQb29scy9wczg3OTUvdm9sdW1lcy9wczQ0MzM/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-11-06T11%3A18%3A15.6339872Z'\"" + ], + "x-ms-request-id": [ + "5fce3b8f-79a9-41a2-affe-7df1e9f58014" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8d0eb7da-ea96-4955-874f-a9ad178da242" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111839Z:8d0eb7da-ea96-4955-874f-a9ad178da242" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:18:38 GMT" + ], + "Content-Length": [ + "1535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "af7733ca-d1ee-4b35-97d8-1eb54138cc33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T11%3A18%3A15.6339872Z'\"" + ], + "x-ms-request-id": [ + "930420cf-1708-4d29-8715-c83e28cce16e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "53b4c33c-1a55-4de6-8d88-7fb8c0aafb00" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111839Z:53b4c33c-1a55-4de6-8d88-7fb8c0aafb00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:18:39 GMT" + ], + "Content-Length": [ + "1535" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps1030/providers/Microsoft.NetApp/netAppAccounts/ps9978/capacityPools/ps3144\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb97afbb-de04-4beb-997a-f80a0eb469df" + ], + "Accept-Language": [ + "en-US" + ], + "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/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/f31b2f63-78b8-4c79-b395-5c188da60951?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": [ + "656cbfe2-47a9-4366-9158-153a7011ca17" + ], + "x-ms-correlation-request-id": [ + "656cbfe2-47a9-4366-9158-153a7011ca17" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111840Z:656cbfe2-47a9-4366-9158-153a7011ca17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:18:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3912ac6b-a436-4567-98a9-462afc2e5885" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "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-correlation-request-id": [ + "95474061-afc3-44fc-9ffc-0f1b61e57c1a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111911Z:95474061-afc3-44fc-9ffc-0f1b61e57c1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:10 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/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/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjMxYjJmNjMtNzhiOC00Yzc5LWIzOTUtNWMxODhkYTYwOTUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "8e18fd21-bf04-4122-a214-842483f52e8a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fe87a725-141e-49ff-9c55-3e9ce007d02e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111941Z:fe87a725-141e-49ff-9c55-3e9ce007d02e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:41 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/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/f31b2f63-78b8-4c79-b395-5c188da60951?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvZjMxYjJmNjMtNzhiOC00Yzc5LWIzOTUtNWMxODhkYTYwOTUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "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": [ + "4e849248-6b28-4c29-99bd-2f1d5f06acf6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d4667d0a-d370-4664-bf24-936ffb3b0829" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111942Z:d4667d0a-d370-4664-bf24-936ffb3b0829" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:41 GMT" + ], + "Content-Length": [ + "1893" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "ee2587fe-a7f9-4b35-a893-09a8527e8310" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T11%3A19%3A29.1248829Z'\"" + ], + "x-ms-request-id": [ + "04b5ffbe-ce30-4834-9c31-b3a58b133ecd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8acc0f8e-a937-412f-b9d5-48c679ddbd7a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111942Z:8acc0f8e-a937-412f-b9d5-48c679ddbd7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:41 GMT" + ], + "Content-Length": [ + "1507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "c700cfcd-9497-44cb-9d59-ab8fd4f3e068" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T11%3A19%3A29.1248829Z'\"" + ], + "x-ms-request-id": [ + "f4dfe05f-9940-4022-9eef-e074d7269710" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5be50540-dbd5-4980-9490-0232e0a614f1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111942Z:5be50540-dbd5-4980-9490-0232e0a614f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:42 GMT" + ], + "Content-Length": [ + "1507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps1030?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzMTAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9243f3a-be19-4457-b427-583b164d1aad" + ], + "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "673f3299-f555-4195-ae40-35bbdd18fa88" + ], + "x-ms-correlation-request-id": [ + "673f3299-f555-4195-ae40-35bbdd18fa88" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T111946Z:673f3299-f555-4195-ae40-35bbdd18fa88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:19:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "84d2b299-aaeb-4be9-be38-c8119623778c" + ], + "x-ms-correlation-request-id": [ + "84d2b299-aaeb-4be9-be38-c8119623778c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112002Z:84d2b299-aaeb-4be9-be38-c8119623778c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:20:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4cc1757e-f0e0-4b83-ac11-c9332aea655f" + ], + "x-ms-correlation-request-id": [ + "4cc1757e-f0e0-4b83-ac11-c9332aea655f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112017Z:4cc1757e-f0e0-4b83-ac11-c9332aea655f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:20:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1d8c62f1-58c6-4584-8f1b-ddce671713f2" + ], + "x-ms-correlation-request-id": [ + "1d8c62f1-58c6-4584-8f1b-ddce671713f2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112032Z:1d8c62f1-58c6-4584-8f1b-ddce671713f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:20:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "deafa8b2-1185-4f8a-b05c-b60eb23a1672" + ], + "x-ms-correlation-request-id": [ + "deafa8b2-1185-4f8a-b05c-b60eb23a1672" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112048Z:deafa8b2-1185-4f8a-b05c-b60eb23a1672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:20:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" + ], + "x-ms-correlation-request-id": [ + "3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112103Z:3ff7ddc8-41bc-4b48-9a5b-caf3cdb7ebd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:21:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "bf44961a-f1fb-48e9-9909-eede697eb6f1" + ], + "x-ms-correlation-request-id": [ + "bf44961a-f1fb-48e9-9909-eede697eb6f1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112118Z:bf44961a-f1fb-48e9-9909-eede697eb6f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:21:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "871ffc12-60fb-43cc-8b72-7909b637b4e9" + ], + "x-ms-correlation-request-id": [ + "871ffc12-60fb-43cc-8b72-7909b637b4e9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112134Z:871ffc12-60fb-43cc-8b72-7909b637b4e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:21:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "26ba79d8-612e-4385-8ce2-b2b06fbf3100" + ], + "x-ms-correlation-request-id": [ + "26ba79d8-612e-4385-8ce2-b2b06fbf3100" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112149Z:26ba79d8-612e-4385-8ce2-b2b06fbf3100" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:21:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "99799f7d-6735-463e-8aa8-a414c9b96f82" + ], + "x-ms-correlation-request-id": [ + "99799f7d-6735-463e-8aa8-a414c9b96f82" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112204Z:99799f7d-6735-463e-8aa8-a414c9b96f82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:22:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" + ], + "x-ms-correlation-request-id": [ + "f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112220Z:f0391cd5-d7f5-40cf-a613-1a63a9e9f07b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:22:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "36d0e92f-ad97-4131-b568-c08782af976e" + ], + "x-ms-correlation-request-id": [ + "36d0e92f-ad97-4131-b568-c08782af976e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112235Z:36d0e92f-ad97-4131-b568-c08782af976e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:22:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "e67234f4-2c9a-473a-80e3-12a2b2ac34ce" + ], + "x-ms-correlation-request-id": [ + "e67234f4-2c9a-473a-80e3-12a2b2ac34ce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112251Z:e67234f4-2c9a-473a-80e3-12a2b2ac34ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:22:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9597ba88-065c-4fc2-a634-f77ae0b85d88" + ], + "x-ms-correlation-request-id": [ + "9597ba88-065c-4fc2-a634-f77ae0b85d88" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112306Z:9597ba88-065c-4fc2-a634-f77ae0b85d88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:23:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "49e8924b-e30a-419a-8884-3ad7afce7667" + ], + "x-ms-correlation-request-id": [ + "49e8924b-e30a-419a-8884-3ad7afce7667" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112321Z:49e8924b-e30a-419a-8884-3ad7afce7667" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:23:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "aedf0121-e627-48ef-8d08-8e1c889a9a00" + ], + "x-ms-correlation-request-id": [ + "aedf0121-e627-48ef-8d08-8e1c889a9a00" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112337Z:aedf0121-e627-48ef-8d08-8e1c889a9a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:23:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "4084b628-ea6b-4828-8a36-b4509d975105" + ], + "x-ms-correlation-request-id": [ + "4084b628-ea6b-4828-8a36-b4509d975105" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112352Z:4084b628-ea6b-4828-8a36-b4509d975105" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:23:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "3ee5b437-7436-418c-a3fc-faa5c25f59da" + ], + "x-ms-correlation-request-id": [ + "3ee5b437-7436-418c-a3fc-faa5c25f59da" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112407Z:3ee5b437-7436-418c-a3fc-faa5c25f59da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:24:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "f436b170-98c7-4d36-b071-5007a68b57ea" + ], + "x-ms-correlation-request-id": [ + "f436b170-98c7-4d36-b071-5007a68b57ea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112423Z:f436b170-98c7-4d36-b071-5007a68b57ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:24:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "fc8034ff-4e05-47a1-bd6d-86282f611388" + ], + "x-ms-correlation-request-id": [ + "fc8034ff-4e05-47a1-bd6d-86282f611388" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112438Z:fc8034ff-4e05-47a1-bd6d-86282f611388" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:24:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "c874623d-bca3-41af-ad8b-c32010e28726" + ], + "x-ms-correlation-request-id": [ + "c874623d-bca3-41af-ad8b-c32010e28726" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112453Z:c874623d-bca3-41af-ad8b-c32010e28726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:24:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "663b70c1-db46-4d93-ae47-cf69e82664ea" + ], + "x-ms-correlation-request-id": [ + "663b70c1-db46-4d93-ae47-cf69e82664ea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112509Z:663b70c1-db46-4d93-ae47-cf69e82664ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:25:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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": [ + "11978" + ], + "x-ms-request-id": [ + "55e738c5-c093-40bf-8de4-53926e64699f" + ], + "x-ms-correlation-request-id": [ + "55e738c5-c093-40bf-8de4-53926e64699f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112525Z:55e738c5-c093-40bf-8de4-53926e64699f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:25:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMzAtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd016QXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/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": [ + "11977" + ], + "x-ms-request-id": [ + "74ff422f-ad46-41e9-bf24-577e377cf5f4" + ], + "x-ms-correlation-request-id": [ + "74ff422f-ad46-41e9-bf24-577e377cf5f4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T112525Z:74ff422f-ad46-41e9-bf24-577e377cf5f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 11:25:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-SetVolumePool": [ + "ps1030", + "ps9978", + "ps8795", + "ps3144", + "ps4433" + ] + }, + "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/TestVolumeCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json index 9525f95e5949..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": { 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..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": { 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..f8a901c822e8 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeReplication.json @@ -0,0 +1,23668 @@ +{ + "Entries": [ + { + "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": [ + "4f7c9bd4-672d-4032-8a8f-0de0f72b327d" + ], + "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": [ + "5cf74402-0c5d-4052-9e8e-e2be3d39c28e" + ], + "x-ms-correlation-request-id": [ + "5cf74402-0c5d-4052-9e8e-e2be3d39c28e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155003Z:5cf74402-0c5d-4052-9e8e-e2be3d39c28e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:03 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4797?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlZ3JvdXBzL3BzNDc5Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c304c07e-2d23-415b-92c0-341ede856519" + ], + "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": [ + "68e62f93-333a-4c41-b69f-3a4f47b9989e" + ], + "x-ms-correlation-request-id": [ + "68e62f93-333a-4c41-b69f-3a4f47b9989e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155005Z:68e62f93-333a-4c41-b69f-3a4f47b9989e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:04 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f222239b-76a0-4ed7-aaf8-31d193f7f068" + ], + "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": [ + "5f721dbb-1548-4107-a148-706e7ad03a32" + ], + "x-ms-correlation-request-id": [ + "5f721dbb-1548-4107-a148-706e7ad03a32" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155005Z:5f721dbb-1548-4107-a148-706e7ad03a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:05 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/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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" + ], + "x-ms-request-id": [ + "818ff3e5-00f2-4af6-8798-0002588c95f3" + ], + "x-ms-correlation-request-id": [ + "4d00c302-5852-40f6-9570-6b10957a68c6" + ], + "x-ms-arm-service-request-id": [ + "2c5e1a11-c0b9-403f-a19b-eebc2a8b936f" + ], + "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:20201106T155019Z:4d00c302-5852-40f6-9570-6b10957a68c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:18 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07cd2651-07ef-4253-8623-135667c9b29d" + ], + "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/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" + ], + "x-ms-request-id": [ + "78454710-826b-4f2d-990f-cf01637b7bd9" + ], + "x-ms-correlation-request-id": [ + "40d9abe0-ff77-450f-b33d-66d448755016" + ], + "x-ms-arm-service-request-id": [ + "344f9a92-30bb-47c5-b43f-57346cc04e35" + ], + "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:20201106T155019Z:40d9abe0-ff77-450f-b33d-66d448755016" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:18 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fc9ce5b-6977-448e-ba2b-082b4187bf3a" + ], + "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/\"c3060339-52d2-4ee5-86d3-88da2643f03a\"" + ], + "x-ms-request-id": [ + "6fd74ca4-fa2c-4664-b5b8-43d3768e4b9d" + ], + "x-ms-correlation-request-id": [ + "d82f8bc1-64eb-4d9d-b452-f0e88b3c6296" + ], + "x-ms-arm-service-request-id": [ + "cdb2091d-17a3-4555-bc56-a07aa5662cf5" + ], + "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:20201106T155019Z:d82f8bc1-64eb-4d9d-b452-f0e88b3c6296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:19 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\"" + ], + "x-ms-request-id": [ + "e8a375bd-9365-4135-a097-0f6117b97506" + ], + "x-ms-correlation-request-id": [ + "e5951c17-91b6-4781-8c98-c6dc908a0dc0" + ], + "x-ms-arm-service-request-id": [ + "cda82589-3cb1-465d-b982-82021f3b10ad" + ], + "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:20201106T155024Z:e5951c17-91b6-4781-8c98-c6dc908a0dc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:23 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODk4NS12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1c9fc6b-a3cc-4a69-8016-693cbd500e18" + ], + "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/\"83d31f8f-6ec4-42a4-a7af-b9dd280a6e40\"" + ], + "x-ms-request-id": [ + "31aa8ed4-4ab2-4298-a871-f037a525bb72" + ], + "x-ms-correlation-request-id": [ + "e9166d77-65d7-49a2-8e1d-fd4a231ebc47" + ], + "x-ms-arm-service-request-id": [ + "652fb883-98ad-425a-aa6b-dd1e7ca37329" + ], + "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:20201106T155024Z:e9166d77-65d7-49a2-8e1d-fd4a231ebc47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:23 GMT" + ], + "Content-Length": [ + "2151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "dfd6f432-76cf-46c3-9620-66679f6f951c" + ], + "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": [ + "ade83573-c149-4b7d-8293-6ec74fc7913d" + ], + "Azure-AsyncOperation": [ + "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": [ + "ef384130-ecad-477c-b605-1c707c7b158e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7076e94b-ab4f-406b-8841-53e68733bcd8" + ], + "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:20201106T155015Z:ef384130-ecad-477c-b605-1c707c7b158e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:14 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps8985/providers/Microsoft.Network/virtualNetworks/ps8985-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49f36d07-df63-4ded-b1a5-22d8e3626384" + ], + "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": [ + "75319b70-21e2-41e5-b551-3ff268739fdc" + ], + "Azure-AsyncOperation": [ + "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": [ + "6899487b-0658-49ed-bcf5-87f0896876f4" + ], + "x-ms-arm-service-request-id": [ + "390805a5-f4f4-4307-ab77-eff38ad1c2d9" + ], + "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:20201106T155020Z:6899487b-0658-49ed-bcf5-87f0896876f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:19 GMT" + ], + "Content-Length": [ + "2149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ade83573-c149-4b7d-8293-6ec74fc7913d?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FkZTgzNTczLWMxNDktNGI3ZC04MjkzLTZlYzc0ZmM3OTEzZD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "45dfc13b-bc9d-4d5a-a5d1-3c882ab6b69d" + ], + "x-ms-correlation-request-id": [ + "ad3cd761-241f-4ea2-9e65-52824b7bc872" + ], + "x-ms-arm-service-request-id": [ + "ceb6ef2c-fc25-41a3-8ec0-931321bf9073" + ], + "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:20201106T155018Z:ad3cd761-241f-4ea2-9e65-52824b7bc872" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:18 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/75319b70-21e2-41e5-b551-3ff268739fdc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzc1MzE5YjcwLTIxZTItNDFlNS1iNTUxLTNmZjI2ODczOWZkYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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": [ + "5aba2ac7-59cd-49c3-a91a-5a07c04232c7" + ], + "x-ms-correlation-request-id": [ + "5a864a1a-7a88-4df9-ab57-b9ae7232860b" + ], + "x-ms-arm-service-request-id": [ + "f980de92-234d-47a7-a746-12ab21187882" + ], + "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:20201106T155023Z:5a864a1a-7a88-4df9-ab57-b9ae7232860b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:23 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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "947c54b4-3e4e-43d5-95fb-137e4f3e1afa" + ], + "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": [ + "85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" + ], + "x-ms-correlation-request-id": [ + "85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155025Z:85a7fdc6-ac9c-405d-9d3c-f61881a85b9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50: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/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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" + ], + "x-ms-request-id": [ + "56bc43c5-a053-410c-8143-81a85b0ecc4e" + ], + "x-ms-correlation-request-id": [ + "e3dd6707-2994-449b-a640-b78f42093bb0" + ], + "x-ms-arm-service-request-id": [ + "d78c8e7a-6017-4b21-bda8-92bbe30524ef" + ], + "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:20201106T155034Z:e3dd6707-2994-449b-a640-b78f42093bb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:33 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cecf56b5-50f0-4352-aea9-495f7b89ea05" + ], + "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/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" + ], + "x-ms-request-id": [ + "35f46c29-4ac5-4ee2-b930-7087b429341a" + ], + "x-ms-correlation-request-id": [ + "1e66862b-fed5-46a0-9139-75de35373525" + ], + "x-ms-arm-service-request-id": [ + "b4bdb1b0-116e-4700-b471-9afc3ae8e11f" + ], + "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:20201106T155034Z:1e66862b-fed5-46a0-9139-75de35373525" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:33 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "094db0f2-6ef0-428c-b777-2643cf6c4237" + ], + "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/\"81a7b09a-fc94-4f2e-be93-47d1000b4f9c\"" + ], + "x-ms-request-id": [ + "e372de03-39b2-4071-9d77-8de1f58d3879" + ], + "x-ms-correlation-request-id": [ + "0aa0ad6f-cdf3-4a04-bfbb-7e2a4daafb3a" + ], + "x-ms-arm-service-request-id": [ + "7d547016-698c-4e1e-b6f5-20821741eb01" + ], + "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:20201106T155034Z:0aa0ad6f-cdf3-4a04-bfbb-7e2a4daafb3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:33 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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/\"11a5622e-3973-4020-be9b-d8c2b8ec069b\"" + ], + "x-ms-request-id": [ + "7183ed53-6b4e-48da-86ab-e098293ab0f3" + ], + "x-ms-correlation-request-id": [ + "923931d6-168f-44c7-b380-5c082ccf993c" + ], + "x-ms-arm-service-request-id": [ + "cf2e625a-98d3-4445-b6ad-4294fe84b2e9" + ], + "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:20201106T155038Z:923931d6-168f-44c7-b380-5c082ccf993c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:37 GMT" + ], + "Content-Length": [ + "2150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDc5Ny12bmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8791b84-3550-4bc6-83f4-8d8c3d10edc0" + ], + "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/\"11a5622e-3973-4020-be9b-d8c2b8ec069b\"" + ], + "x-ms-request-id": [ + "c9e30c91-428a-4e45-9389-ecd868335fee" + ], + "x-ms-correlation-request-id": [ + "aa1ac337-6038-47d3-b2e6-be5cb948e11e" + ], + "x-ms-arm-service-request-id": [ + "49f7e1a8-3dd6-4ea7-a71f-4bce3f91bcdb" + ], + "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:20201106T155038Z:aa1ac337-6038-47d3-b2e6-be5cb948e11e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:38 GMT" + ], + "Content-Length": [ + "2150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "60d0dea1-c052-4c9a-bb6a-0cb25864b509" + ], + "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": [ + "52106542-5081-47e5-b715-5292f6d21070" + ], + "Azure-AsyncOperation": [ + "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": [ + "9bd56a63-6d0c-41a2-9aaa-28a4f9cc3f16" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e5fc5017-048e-46bf-8a1f-31a37dd2027c" + ], + "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:20201106T155030Z:9bd56a63-6d0c-41a2-9aaa-28a4f9cc3f16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:29 GMT" + ], + "Content-Length": [ + "640" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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/ps4797/providers/Microsoft.Network/virtualNetworks/ps4797-vnet\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86aa42d6-1b97-45b6-a4f5-04fc4b3ea012" + ], + "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": [ + "39d22a79-0c41-469d-be7d-4936b00a8899" + ], + "Azure-AsyncOperation": [ + "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": [ + "2e2d9c79-ac70-4d34-9c07-cbff837da2bb" + ], + "x-ms-arm-service-request-id": [ + "c22e713c-2f04-4f67-9f03-05c84c50fedc" + ], + "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:20201106T155035Z:2e2d9c79-ac70-4d34-9c07-cbff837da2bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:34 GMT" + ], + "Content-Length": [ + "2148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/52106542-5081-47e5-b715-5292f6d21070?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTIxMDY1NDItNTA4MS00N2U1LWI3MTUtNTI5MmY2ZDIxMDcwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "e935b14e-28ff-4d2f-a908-a17019a1ae8b" + ], + "x-ms-correlation-request-id": [ + "f42b9502-182e-48f7-bb52-18a494b2fb63" + ], + "x-ms-arm-service-request-id": [ + "5cc84756-166d-456d-8c3e-a5996910497d" + ], + "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:20201106T155034Z:f42b9502-182e-48f7-bb52-18a494b2fb63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50: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/eastus/operations/39d22a79-0c41-469d-be7d-4936b00a8899?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzlkMjJhNzktMGM0MS00NjlkLWJlN2QtNDkzNmIwMGE4ODk5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "99c4579f-3f66-47a9-8d17-a2bf50c7513c" + ], + "x-ms-correlation-request-id": [ + "7721fc9c-6d09-4c19-ad11-708050b32f7b" + ], + "x-ms-arm-service-request-id": [ + "7faccf12-3a10-4b77-8d72-0b30f794fb77" + ], + "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:20201106T155038Z:7721fc9c-6d09-4c19-ad11-708050b32f7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:37 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/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": [ + "19be0ddf-d2a8-4aae-aaab-8bbf9b624130" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A50%3A45.7743692Z'\"" + ], + "x-ms-request-id": [ + "bc5c47b5-7291-4faa-b18b-1defabaeaa58" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "70855878-f2e1-4555-80b1-1365c9db1eef" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155047Z:70855878-f2e1-4555-80b1-1365c9db1eef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:50:46 GMT" + ], + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/86426f33-eadf-4a0b-85c6-241604dee1b2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvODY0MjZmMzMtZWFkZi00YTBiLTg1YzYtMjQxNjA0ZGVlMWIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "e53c9dad-10f8-47be-85f6-fb0632b66a14" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0016aac0-f239-4749-969e-5a64a506b9c2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155117Z:0016aac0-f239-4749-969e-5a64a506b9c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:16 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/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/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTA/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-11-06T15%3A50%3A45.8544271Z'\"" + ], + "x-ms-request-id": [ + "b9264b7d-aa2a-48f4-a9fc-47b77adca8b8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e0548829-bfb5-44ea-8a21-8be8aebc121d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155117Z:e0548829-bfb5-44ea-8a21-8be8aebc121d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:17 GMT" + ], + "Content-Length": [ + "314" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "5c92642d-2197-48e3-90c2-9ce9dae61477" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A51%3A22.3850765Z'\"" + ], + "x-ms-request-id": [ + "83fffbca-1221-46bb-8129-9c21d873d690" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "f7cd9b5d-e54d-44f4-bf3e-4793b945176f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155123Z:f7cd9b5d-e54d-44f4-bf3e-4793b945176f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:23 GMT" + ], + "Content-Length": [ + "312" + ], + "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\",\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/c927abd8-2969-46a9-9b49-85b3f24da815?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy9jOTI3YWJkOC0yOTY5LTQ2YTktOWI0OS04NWIzZjI0ZGE4MTU/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": [ + "bce4c9fe-bcf6-4cf2-ad31-6ffd287f80be" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8b4c964d-a1e3-42a1-9d60-7e0e51c2097c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155154Z:8b4c964d-a1e3-42a1-9d60-7e0e51c2097c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:53 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/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/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjg/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-11-06T15%3A51%3A22.4581287Z'\"" + ], + "x-ms-request-id": [ + "de51a7c1-2d1a-4e6d-807f-67d2c83a76c7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3284f032-a1c0-4fd6-99f0-3ca338049ee8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155154Z:3284f032-a1c0-4fd6-99f0-3ca338049ee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:53 GMT" + ], + "Content-Length": [ + "313" + ], + "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\",\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/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": [ + "0dee1d5e-ad36-4c7d-a98f-65c164596292" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A51%3A57.9934086Z'\"" + ], + "x-ms-request-id": [ + "97cc99d7-919f-458c-9098-979ad9d51863" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "085ad500-ad71-46f2-b7a8-9f08e340e511" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155159Z:085ad500-ad71-46f2-b7a8-9f08e340e511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:51:59 GMT" + ], + "Content-Length": [ + "458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/ddc4e809-39f3-4956-99b6-2185dbda9c2a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGRjNGU4MDktMzlmMy00OTU2LTk5YjYtMjE4NWRiZGE5YzJhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "fcbd1d4f-4e1d-420a-a3f2-fd8bfb5d4576" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ed2ead4a-5f43-421d-aa49-ec14ddfaaeaa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155229Z:ed2ead4a-5f43-421d-aa49-ec14ddfaaeaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:52:28 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/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/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTc/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-11-06T15%3A51%3A58.1565266Z'\"" + ], + "x-ms-request-id": [ + "f0fa5410-cc51-459a-be56-972162aa390a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "86643ef8-7351-4c1f-be85-b79cf31a7d6c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155230Z:86643ef8-7351-4c1f-be85-b79cf31a7d6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:52:30 GMT" + ], + "Content-Length": [ + "528" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "6c889e84-9a00-4ae1-bc04-b5cd3a84b6ef" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A52%3A33.8213634Z'\"" + ], + "x-ms-request-id": [ + "78b5a5c3-0900-49c9-951f-104789cebf81" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "31ec2223-34e0-43bd-87cc-4c92409d22d2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155234Z:31ec2223-34e0-43bd-87cc-4c92409d22d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:52:34 GMT" + ], + "Content-Length": [ + "457" + ], + "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\",\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/0f926aae-d02c-4441-b347-af9f6ca78d75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy8wZjkyNmFhZS1kMDJjLTQ0NDEtYjM0Ny1hZjlmNmNhNzhkNzU/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": [ + "0f00eb9b-fba1-47d6-98c2-ce713f360b44" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2846b90a-48e1-4dfc-9f21-60cc3f9bbdc0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155305Z:2846b90a-48e1-4dfc-9f21-60cc3f9bbdc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:53:05 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/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/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njk/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-11-06T15%3A52%3A34.1005641Z'\"" + ], + "x-ms-request-id": [ + "c0acde8f-7a4c-40d5-8ded-0c70e8f1da0d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e5a748ee-4255-420e-bb6d-ba473815a178" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155305Z:e5a748ee-4255-420e-bb6d-ba473815a178" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:53:05 GMT" + ], + "Content-Length": [ + "527" + ], + "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\",\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/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\": \"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": [ + "09069ad2-070e-4483-8c21-bb4fbc8af8b7" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A53%3A09.0936463Z'\"" + ], + "x-ms-request-id": [ + "797219fc-8833-4641-8412-868c8c563464" + ], + "Azure-AsyncOperation": [ + "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" + ], + "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": [ + "650ba4c7-552d-4071-88a9-3f26ebf658f5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155310Z:650ba4c7-552d-4071-88a9-3f26ebf658f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:53:10 GMT" + ], + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "c90b89be-24e6-4f9e-be7a-09bccae26cdc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "7b1090c0-eaec-49ba-9472-2b07da40aae7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155340Z:7b1090c0-eaec-49ba-9472-2b07da40aae7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:53:40 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "32cb16ee-cbc7-4213-ab32-f99ed1eae7a5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d25298b5-9ec8-48bc-a227-a3016766d1d8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155410Z:d25298b5-9ec8-48bc-a227-a3016766d1d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:54:10 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "b902452b-8b6e-4665-ad2a-390f57ff2d95" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f2502c12-c20e-491b-bec9-236bad925fb4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155441Z:f2502c12-c20e-491b-bec9-236bad925fb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:54:40 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "71f5272e-455a-4f64-b00a-ebb575feab03" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "78044213-ff9f-47eb-b08c-4922f302a095" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155511Z:78044213-ff9f-47eb-b08c-4922f302a095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:55:10 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "20a1f4cb-6705-4b8d-873d-41179f346a22" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "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-correlation-request-id": [ + "6ea0e2eb-ebc8-4fc8-8854-a4369629730e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155541Z:6ea0e2eb-ebc8-4fc8-8854-a4369629730e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:55:40 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "1cea876c-ce26-478c-87c1-6f9bf824151e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "9c07017a-4ddf-47b1-91fa-1e556d43027c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155612Z:9c07017a-4ddf-47b1-91fa-1e556d43027c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:56:12 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/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/f9ff82d3-9af7-451e-bfab-b44fbf49d8a9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjlmZjgyZDMtOWFmNy00NTFlLWJmYWItYjQ0ZmJmNDlkOGE5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "89ce71ee-f378-4f6c-a184-117e52f60417" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e8c92ef2-e721-44bb-a780-d7e1098e625e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155643Z:e8c92ef2-e721-44bb-a780-d7e1098e625e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:56: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/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/ps8985/providers/Microsoft.NetApp/netAppAccounts/ps9790/capacityPools/ps7997/volumes/ps4174?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzODk4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczk3OTAvY2FwYWNpdHlQb29scy9wczc5OTcvdm9sdW1lcy9wczQxNzQ/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-11-06T15%3A56%3A28.9136311Z'\"" + ], + "x-ms-request-id": [ + "62c42744-a5c5-4a7b-bfc0-b8b70e6e2c60" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8b366170-e6df-46e1-b776-8a61dc83c8dd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155643Z:8b366170-e6df-46e1-b776-8a61dc83c8dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:56:43 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "81fee53a-b983-4d3a-9738-accbe5a762a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T15%3A56%3A28.9136311Z'\"" + ], + "x-ms-request-id": [ + "02aef142-9ffd-4c0c-975a-c85dd84f24ab" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2baf9d2d-febd-4620-9d30-1552be22f2b3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155643Z:2baf9d2d-febd-4620-9d30-1552be22f2b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:56:43 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "8d188996-0d7e-4140-99cf-1d3d1a76b6b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T15%3A56%3A28.9136311Z'\"" + ], + "x-ms-request-id": [ + "c217abce-f306-4f4a-9ca8-0679f311266f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fcbeb665-877c-48f1-be2e-445196b67206" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160153Z:fcbeb665-877c-48f1-be2e-445196b67206" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:53 GMT" + ], + "Content-Length": [ + "1501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "4dd7caa7-a7c8-47fa-8ad6-08da62996e8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "8986d727-3296-485e-93f9-2c04b3c3eb6c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fe64faf9-2f35-47e4-9e58-414f3027e8d4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160327Z:fe64faf9-2f35-47e4-9e58-414f3027e8d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:27 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "9d13a01e-9608-477f-a208-98f0463cb654" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "3e9e97e2-86b3-4dde-a5d1-c280b84f936c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c930f63a-ae1a-4b93-8dba-aa07a627450b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160329Z:c930f63a-ae1a-4b93-8dba-aa07a627450b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:29 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "bbea36c9-e062-4fdf-ace2-c56121316532" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "a9e6234e-9da3-4cc9-8c54-6f57a1516343" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fbccf4ba-d4f2-48fb-9318-93b94b31de99" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160331Z:fbccf4ba-d4f2-48fb-9318-93b94b31de99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:30 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "4cbd7318-707b-4bbe-81f1-4a6efbc6c900" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "99ec9807-c33d-48fd-b6a4-ab506e1304b6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160332Z:99ec9807-c33d-48fd-b6a4-ab506e1304b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:32 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "13baa45a-079a-420a-b77c-5dffb6640805" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "83841ea6-4db4-45eb-8534-95040d327e60" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160334Z:83841ea6-4db4-45eb-8534-95040d327e60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:33 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "00e79916-8f9e-4ba7-922a-fa6f95e257a0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0f29dbb3-7dc3-49a3-8aa8-146c0df1b1f7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160336Z:0f29dbb3-7dc3-49a3-8aa8-146c0df1b1f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:35 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "aae67529-7e7f-4b7b-855d-73da5250ecd7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ddb55a9c-8478-4c1b-a2e2-0cebc16168a7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160337Z:ddb55a9c-8478-4c1b-a2e2-0cebc16168a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:37 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "6b52e700-e3b0-44d8-9e08-d1a6151a79bb" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "1c5fcf5e-cec4-4c2b-8157-13af68ccf167" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160339Z:1c5fcf5e-cec4-4c2b-8157-13af68ccf167" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:38 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "26fa1979-dcea-4014-bc3a-b3406c7b50d6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "6d588612-1409-415f-ad05-a04c45f842a4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160341Z:6d588612-1409-415f-ad05-a04c45f842a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:40 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "05f031a3-a96d-44a6-8d7d-37d51f92e21a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4690b070-9442-4842-8932-1652f403355d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160342Z:4690b070-9442-4842-8932-1652f403355d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:41 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "af309cd7-3743-4ca8-864e-3e6126009c61" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ebb13f38-af31-4fd0-915e-bf9357a704eb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160344Z:ebb13f38-af31-4fd0-915e-bf9357a704eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:43 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "218fadad-ef03-4c98-8880-9db13db685b3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "91d39210-9eb4-40ed-b274-a5482f5fa313" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160345Z:91d39210-9eb4-40ed-b274-a5482f5fa313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:45 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "785d1787-81c7-4a5b-be19-3e3fd37ef032" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "c8d57d6a-0860-408f-8ff0-3b1e67388ab4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2aad85d6-ce20-4136-a7ad-e88b3de35c29" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160347Z:2aad85d6-ce20-4136-a7ad-e88b3de35c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:46 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "c030222c-961a-45de-ace3-0ce4f338c430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "b7f44bad-f815-43bd-a06c-141f145e920a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "9597269d-3494-4ad6-a29c-e758215384aa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160349Z:9597269d-3494-4ad6-a29c-e758215384aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:48 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "cad82174-a4ae-49de-bb69-b538605bd597" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "2239cb35-a5ed-42ac-a645-5a79423b9364" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bf5e622a-678f-4be1-a39a-85d6a1b06cf7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160350Z:bf5e622a-678f-4be1-a39a-85d6a1b06cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:49 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "89c9bc2e-e8cc-44d9-8d91-9a90c2dbec17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "7c7acd4a-1b67-421d-9ad0-6ee95202e580" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e34e68df-5ebf-4777-bba5-0b971886a65b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160352Z:e34e68df-5ebf-4777-bba5-0b971886a65b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:51 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "b5f1a864-b05d-4a05-8794-1dfb40c92393" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "d593e699-b512-4325-a314-6c7eeee53485" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "7b3f6ec9-a367-4755-b16f-e08e945bbbc6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160354Z:7b3f6ec9-a367-4755-b16f-e08e945bbbc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:53 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "545e97bf-b198-46e7-9d86-d162efe893e7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ed7bc1fb-8d87-49f1-b3c1-15936a22aa1f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160355Z:ed7bc1fb-8d87-49f1-b3c1-15936a22aa1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:54 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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", + "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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "97ae40fc-4230-4eb7-913d-bea9ed8303e6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "751e2c63-6f3e-4441-95bc-db2ec2c3fd06" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160357Z:751e2c63-6f3e-4441-95bc-db2ec2c3fd06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:56 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "a6a44e0c-420a-49c2-8df6-ac9ee57193e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "23908bf3-4874-4b9c-b608-9f11e08a5781" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ffddb49f-e0e8-4a97-8241-17f2fa7f2876" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160358Z:ffddb49f-e0e8-4a97-8241-17f2fa7f2876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:57 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "ee892c7c-d57f-4fb5-b05f-80a2103c717a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "ef87602e-c017-48ba-9462-17864663f650" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "ea8acea4-e6dc-4d15-833d-f4fdf313b04d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160400Z:ea8acea4-e6dc-4d15-833d-f4fdf313b04d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:00 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "5f9867cb-9ded-4cf9-a04f-1661ed7ab5b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "caa733dc-4c36-4307-9f55-bf395a19bfa6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "31387c9a-7ee7-49a7-a04a-17771f68a245" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160402Z:31387c9a-7ee7-49a7-a04a-17771f68a245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:02 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "81a64f40-9d21-4941-9d8b-ffd3a662716d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "a45f1f94-2698-4ff9-8eeb-319934d1fe75" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "1727b175-6c08-4d94-b4f3-f6ee46e831c9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160403Z:1727b175-6c08-4d94-b4f3-f6ee46e831c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:03 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "f246a83f-9007-4d7a-8bc7-6fcdb580eb6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "7bb5fa35-c391-4404-8690-02456a83c59d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c3e67d7c-14db-42ec-82f7-8e379ad8c7fe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160405Z:c3e67d7c-14db-42ec-82f7-8e379ad8c7fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:05 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "77897659-6ed5-4dc2-9552-2ab79c0a3174" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "1b6734cd-0c95-4d32-b78f-3d41b744e58f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "54cd4573-d250-474d-83c0-b1db32ceeeba" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160407Z:54cd4573-d250-474d-83c0-b1db32ceeeba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:07 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "d0294ca6-8d75-490d-bf81-7f0ba8c3493d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "bf40f58e-b1e3-47ba-b4a3-f5747a9d9eca" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b37e23c1-aaf0-4d8c-bc16-2e7f553039a0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160408Z:b37e23c1-aaf0-4d8c-bc16-2e7f553039a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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/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": [ + "72fdcf72-2a54-45c9-a69a-125684438c59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "d0c3a7b6-da73-47b8-9e3c-834bfa4e5088" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "dbe4ba7c-0ec2-4b97-9530-418d37dd6de8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160410Z:dbe4ba7c-0ec2-4b97-9530-418d37dd6de8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:10 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "cc8b8ea7-80f3-4258-a294-c8a84d1bc2ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "7afa11c6-cb0b-4598-afac-421512bbb448" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c410540b-f459-4ebe-bdbc-52ddfe0510d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160411Z:c410540b-f459-4ebe-bdbc-52ddfe0510d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:11 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "81bc1f9a-4c98-4930-88fa-51e65ab56f1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "d7df544e-40cb-42da-bfa4-73df83a3a55d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f097d38a-4105-4883-a663-309c380823b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160413Z:f097d38a-4105-4883-a663-309c380823b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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/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": [ + "23b39ebd-aeae-4808-9d60-97919ea0c3d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "ab86899f-57bf-4215-a695-1b3b062a0704" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "73d2574d-a6ae-4915-8dcf-d2bb31f30488" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160415Z:73d2574d-a6ae-4915-8dcf-d2bb31f30488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:15 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "bf9c6420-9e47-40a0-be8b-d53eb062807d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "c0dc66c2-6974-46ed-9531-693114620f0f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0061f3dd-f3c2-47d6-a9ba-a45bea1ba4c7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160417Z:0061f3dd-f3c2-47d6-a9ba-a45bea1ba4c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:16 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "bc98401c-a455-48f7-9866-1f626a2cd6c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "c2940fc5-06e1-4aaf-9061-2b1a4219aaf9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c0e8eedb-eb9d-4380-a1d9-e460ec38500f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160418Z:c0e8eedb-eb9d-4380-a1d9-e460ec38500f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:18 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "c8ffa601-4e88-4c9a-b717-f056e020594d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "23eb260a-e0ce-442f-bdd7-ac2306f44867" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "476d1c80-3d4b-4912-83c5-e2bb18ba1c50" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160420Z:476d1c80-3d4b-4912-83c5-e2bb18ba1c50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:20 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "9da5363c-abf1-4f1f-8b14-76bb7e18b64b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A07.1415927Z'\"" + ], + "x-ms-request-id": [ + "96fb74e3-e8a0-45d4-94cd-b647c8c58d2f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bd8fe7dd-bc3a-42e6-9fb4-18648a52135c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160805Z:bd8fe7dd-bc3a-42e6-9fb4-18648a52135c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:04 GMT" + ], + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "52217e58-b5e0-4a69-8b73-21d5212768b6" + ], + "Accept-Language": [ + "en-US" + ], + "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-11-06T15%3A56%3A47.9874291Z'\"" + ], + "x-ms-request-id": [ + "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" + ], + "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": [ + "39ca4b6b-282a-458c-b386-8d33bfb26e04" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155649Z:39ca4b6b-282a-458c-b386-8d33bfb26e04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:56:48 GMT" + ], + "Content-Length": [ + "988" + ], + "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-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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "bbfe1b5a-7a1d-47ed-84d7-9647db1e3b21" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5f87ce5b-823e-4c9c-b1a3-4bb878791753" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155719Z:5f87ce5b-823e-4c9c-b1a3-4bb878791753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:57:19 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "f5b0c1af-7b07-4336-a630-f428ecf4f2b4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "81b362cc-3b90-432a-a67e-4cd1eb0921c3" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155749Z:81b362cc-3b90-432a-a67e-4cd1eb0921c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:57:49 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "0fc31adf-9366-4cb9-86f8-d8b642c53f05" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "c79cdc1f-8d10-403b-ad13-e77840d1c9e8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155819Z:c79cdc1f-8d10-403b-ad13-e77840d1c9e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:58:19 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "dc27ddba-8e54-4af2-82b5-712eef2fb775" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "dbd53ca8-0f79-477d-8d7c-7e4a4bb8b297" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155850Z:dbd53ca8-0f79-477d-8d7c-7e4a4bb8b297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:58:49 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "5db3b732-8054-4473-aab1-349245592a3c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bfb9756a-6351-480c-84ee-5c3a91bdc31d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155920Z:bfb9756a-6351-480c-84ee-5c3a91bdc31d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:59:20 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "92ef1c31-1365-42b0-880a-6a36200d3893" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "cbe2fa75-2537-4645-8bbc-2c51811689cb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T155950Z:cbe2fa75-2537-4645-8bbc-2c51811689cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 15:59:50 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "8cece765-a5ae-43ff-a7b0-6a21545a2ccf" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d1ef612c-7057-421b-bf76-819bd89e7c30" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160020Z:d1ef612c-7057-421b-bf76-819bd89e7c30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:00:20 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "e7a44ca5-12bc-4fbe-bb53-ff15c3f56081" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53" + ], + "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-correlation-request-id": [ + "2ef20487-e375-461f-9e90-5b42273f6c2b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160050Z:2ef20487-e375-461f-9e90-5b42273f6c2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:00:50 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "c86b2e10-e9a7-4177-86e3-9e99a4fd3cbe" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "cdc25f42-0606-42a6-ab48-420abb4868a0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160121Z:cdc25f42-0606-42a6-ab48-420abb4868a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:21 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/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/providers/Microsoft.NetApp/locations/eastus/operationResults/6f09b7bb-ab40-4027-8888-f0f001628a80?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy9lYXN0dXMvb3BlcmF0aW9uUmVzdWx0cy82ZjA5YjdiYi1hYjQwLTQwMjctODg4OC1mMGYwMDE2MjhhODA/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": [ + "efb3ae0e-65b2-4eb1-a037-000d90d6d5ea" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "12853deb-3070-41e8-8101-1a07363de0b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160151Z:12853deb-3070-41e8-8101-1a07363de0b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:51 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/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/ps4797/providers/Microsoft.NetApp/netAppAccounts/ps6228/capacityPools/ps6769/volumes/ps5850?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Jlc291cmNlR3JvdXBzL3BzNDc5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wczYyMjgvY2FwYWNpdHlQb29scy9wczY3Njkvdm9sdW1lcy9wczU4NTA/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-11-06T16%3A01%3A22.4747889Z'\"" + ], + "x-ms-request-id": [ + "41fb63ce-1a69-430b-8fad-612ebda69d40" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "145b7193-c6e1-4840-a082-031278e0ce41" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160152Z:145b7193-c6e1-4840-a082-031278e0ce41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:51 GMT" + ], + "Content-Length": [ + "1775" + ], + "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%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/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": [ + "74f14df0-8e5b-456a-9b4e-9e712e7c189d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A01%3A22.4747889Z'\"" + ], + "x-ms-request-id": [ + "e45ae610-172d-40b5-a593-5e52af30f96b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a52fcc2a-373d-48f8-bf17-9ba026805e57" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160152Z:a52fcc2a-373d-48f8-bf17-9ba026805e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:52 GMT" + ], + "Content-Length": [ + "1775" + ], + "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%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/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": [ + "122d8d52-3ee1-49fa-b82a-c986a5dc63c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A01%3A22.4747889Z'\"" + ], + "x-ms-request-id": [ + "d89b2663-68c4-4eca-b277-7feb7bd3c686" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "08cbf60b-718b-4801-b1d7-47ea8d39c2d8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160154Z:08cbf60b-718b-4801-b1d7-47ea8d39c2d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:01:53 GMT" + ], + "Content-Length": [ + "1775" + ], + "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%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/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": [ + "b14f7b2e-f2f8-4776-8bae-31cb20655039" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "2e3f534e-1217-4f99-bd89-61a185bb6d96" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4445a7dd-60ab-4be3-a28f-ac6be3288250" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160328Z:4445a7dd-60ab-4be3-a28f-ac6be3288250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:27 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "29df352b-931e-491e-a096-2eaaf4f67254" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "045f3a0b-dcf3-40f7-8013-6e491a8fffb6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "622e2189-b956-4fa4-8dc0-1ba56ae2a1bf" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160329Z:622e2189-b956-4fa4-8dc0-1ba56ae2a1bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:29 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "7ee3ac5b-2413-4625-8e3e-e8401bd057a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "9f763c55-e706-4431-a73a-a1318f481a34" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "079379e0-6c92-43ab-bb70-17d285363dd7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160331Z:079379e0-6c92-43ab-bb70-17d285363dd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:30 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "4d6b110b-05e4-4831-9981-17c2c407bbb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "da42c970-5da5-4ff2-bb5b-81ebb99d608e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "26c43ed2-4fce-466b-ba94-4ce382716452" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160333Z:26c43ed2-4fce-466b-ba94-4ce382716452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:32 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "9fcdd5df-f900-40be-8751-3eadc21ba9b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "8e09e466-51fb-433f-b9ea-987370e4469b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "be470993-68aa-4e3a-8b21-9ac80b01e22f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160334Z:be470993-68aa-4e3a-8b21-9ac80b01e22f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:34 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "9a5de13f-d1d9-44da-8fc8-60a9bf04792f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "b0c6827d-3c19-499a-969e-cb2f4ccebafc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d86f9e93-5dd2-40a8-97a3-7356f79e7649" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160336Z:d86f9e93-5dd2-40a8-97a3-7356f79e7649" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:35 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "4e660997-cd6c-413f-ac4d-b1dda8604aad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "41c8be6e-fb41-4fdc-bfe3-a2c6a2edfd02" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4b0aab18-dacc-412b-8a65-b7e3bfb21958" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160338Z:4b0aab18-dacc-412b-8a65-b7e3bfb21958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:37 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "967140cb-2810-4f67-a4d8-8ad6d8d9179f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "912f1401-d668-45b0-be94-5a5fbdfc570d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f9896ee9-0bd6-42f5-9e44-78b1f442f4d1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160339Z:f9896ee9-0bd6-42f5-9e44-78b1f442f4d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:39 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "3f98efdb-f8a8-4ba7-8707-276e284edd6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "ba03fe64-812b-41bb-b97f-d0e141acd440" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f8d9ac58-c947-4a1d-8979-4a23083a9cb2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160341Z:f8d9ac58-c947-4a1d-8979-4a23083a9cb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:40 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "cc4211b4-71ad-42a8-ba18-6a59fedc2875" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "2d0d4546-0ad5-4a20-9696-6264991dba30" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b5e96dc7-6841-4cbc-bcbc-9e1eed6e0b81" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160342Z:b5e96dc7-6841-4cbc-bcbc-9e1eed6e0b81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:42 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "f84d529b-10b8-4848-93bd-77370c39c58e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "daee8237-5408-47cf-937f-156e18b4343e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0e97a986-d777-452d-a3df-9ae3a6b8ea8c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160344Z:0e97a986-d777-452d-a3df-9ae3a6b8ea8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:43 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "ef5db403-8af0-4877-9072-63b6d215ce1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "14d6074e-c74a-474f-87a8-3f256b410d17" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "65c30e18-aa56-4e25-8553-859737749c8b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160346Z:65c30e18-aa56-4e25-8553-859737749c8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:45 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "a4bb0c75-ef8c-4c80-a1a2-412a0abc2632" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "3aeef92e-5a6b-4b26-95f5-e6bb7bcd77d8" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "87c3b116-412f-456e-911a-e9d3eed49bab" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160347Z:87c3b116-412f-456e-911a-e9d3eed49bab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:46 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "5e1bf3bc-64bf-4f44-940c-4165679b33b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "aa6f52dc-aee0-4a34-baea-af004cb99ca6" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "903e5bb0-e3c7-45bc-9c18-fa364997692c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160349Z:903e5bb0-e3c7-45bc-9c18-fa364997692c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:48 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "5c052c74-460c-44bb-94eb-2e5c17611182" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "3f40ff70-0a10-4db3-a4fa-2652b009820c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "42540e76-641d-46fb-8e97-5871033bdea6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160351Z:42540e76-641d-46fb-8e97-5871033bdea6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:50 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "1868a293-62eb-4c27-b9a7-8717862036d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "bd9b1197-ed39-492b-a81e-cfc6faca3090" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "66106324-186d-4f60-91be-9992bce7f7e6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160352Z:66106324-186d-4f60-91be-9992bce7f7e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:51 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "3f9f647f-544c-4d4a-bb01-385256b7689e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "21759da6-418c-4c16-83d2-5a5ceea97b16" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "7a0e21da-72f3-46c5-bd3d-e780a6a016fa" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160354Z:7a0e21da-72f3-46c5-bd3d-e780a6a016fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:53 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "5b9f2a7c-504a-4d9c-ab92-7ab6ce859bc3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "25839ee2-5da0-4702-ab78-a48466704199" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bf0f7930-5bf0-49ed-bde7-2dea51b8ddfd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160355Z:bf0f7930-5bf0-49ed-bde7-2dea51b8ddfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:55 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "ffa0980e-0078-4923-bdb0-dcbe0e4f1352" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "fd6b8051-c706-4996-8ac6-83f7b5924c93" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "283b5c13-0ff3-489e-af2f-7629a4d582df" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160357Z:283b5c13-0ff3-489e-af2f-7629a4d582df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:56 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "55541adf-0fac-40c1-9bf9-e8df8fd4b170" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "d5b25fd0-9169-454a-ab88-c6b8d6279bdd" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "b97ee4c9-c14e-41fc-847c-f61771a6bb5e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160359Z:b97ee4c9-c14e-41fc-847c-f61771a6bb5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:59 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "9314d531-ecc1-4d17-a785-0fd23b81fb86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "646f2d3b-f20e-4504-8fb6-cdab0aff8882" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "47e33e58-807d-4ff6-b0f9-663828b95733" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160400Z:47e33e58-807d-4ff6-b0f9-663828b95733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:00 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "7082cb7f-55bb-4470-99fb-07faaa563416" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "bfc32c0e-e95c-4a50-8e5b-66a7c12c2b7c" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "58d19e05-1452-442d-ba67-c9c8e4e92648" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160402Z:58d19e05-1452-442d-ba67-c9c8e4e92648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:02 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "badfd744-de37-4cc6-982f-9e9e53fc227f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "f893f16d-ad4c-469f-a244-d5248cc743c9" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d998da34-cbee-46a0-9dc9-ec0b6523ef05" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160403Z:d998da34-cbee-46a0-9dc9-ec0b6523ef05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:03 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "5afa4d11-f7d7-4781-8e48-518f1ff1d705" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "b6119f1b-7019-44e7-9c94-aa9a0d75dcc0" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "adbb6b52-7bc2-4ed0-b1fc-78449ebc8beb" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160405Z:adbb6b52-7bc2-4ed0-b1fc-78449ebc8beb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:05 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "d0da36f8-a484-459f-bd7d-6632cd4c2c9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "0d820d1b-ec51-41f1-985f-8a6cbf9ddcc1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a26c5e2a-6dd5-4206-bece-034a25a4bf0f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160407Z:a26c5e2a-6dd5-4206-bece-034a25a4bf0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:07 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "aab98372-630d-4ec0-aeba-4b06f7c2fd84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "8078e027-f0dc-485f-8410-6b1ea668cbd2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "e2aeb8cd-df94-46ca-b63e-9b85bda89fd4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160408Z:e2aeb8cd-df94-46ca-b63e-9b85bda89fd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:08 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "8e0464d5-0523-4600-98e9-47723af02626" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "b7d96f41-0667-4be5-8c48-f5297ac39f1f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "9864348d-a8d2-4621-b971-38d8d451da9c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160410Z:9864348d-a8d2-4621-b971-38d8d451da9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:10 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "11553727-47f4-45de-9a05-8dd84d49548a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "fc4569d0-d86d-47da-9bee-434117c59e5f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8f65064a-71ea-4776-bf3d-58a8d9d638f0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160412Z:8f65064a-71ea-4776-bf3d-58a8d9d638f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:11 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "a5e5abd1-a4d1-44c5-b701-76f4a5594f21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "1830f529-f5bb-4d4b-bdaf-b6f5c92be07a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f8fb45ef-4ca2-4489-8e46-31d6effa8931" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160414Z:f8fb45ef-4ca2-4489-8e46-31d6effa8931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:13 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "cd1b241a-c5f9-4dca-bdec-b8c97f57778d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "d5f8bbc9-9e60-4ec1-b46e-0ca72cda612d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "6d92667f-e43f-4a0e-8734-06da3b9e7016" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160415Z:6d92667f-e43f-4a0e-8734-06da3b9e7016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:15 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "90c5d3b4-8f0b-44d2-b431-6c15671020db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "b91f75d9-32c5-4e3c-96a9-2d7d024aa39b" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5d6310f0-bb1b-4b3e-b380-b4294836a1f6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160417Z:5d6310f0-bb1b-4b3e-b380-b4294836a1f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:17 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "85cb90df-16e9-421c-95c4-92f9e4474428" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A03%3A05.8975283Z'\"" + ], + "x-ms-request-id": [ + "218855c1-b34c-4c60-8b43-46e624f346e2" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8a07e24e-bb0a-45af-8908-a54fe782dfe4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160418Z:8a07e24e-bb0a-45af-8908-a54fe782dfe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:18 GMT" + ], + "Content-Length": [ + "1785" + ], + "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%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/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": [ + "87930da6-dec0-4d36-9e47-52cccca1e873" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A04%3A19.3896365Z'\"" + ], + "x-ms-request-id": [ + "fefa9e4c-fb9c-490a-ae5c-c652d0524bd4" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "fb140749-76be-4994-8788-1008a7daebf0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160422Z:fb140749-76be-4994-8788-1008a7daebf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04:22 GMT" + ], + "Content-Length": [ + "1861" + ], + "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%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/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": [ + "3b347be7-56a9-40c0-b682-4e51618844be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/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-06T16%3A07%3A08.7087072Z'\"" + ], + "x-ms-request-id": [ + "42a022ab-647e-4912-960b-bccd12523c6f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8ced0dfe-124f-4809-8bf6-d22ecce32408" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160805Z:8ced0dfe-124f-4809-8bf6-d22ecce32408" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:08:04 GMT" + ], + "Content-Length": [ + "1847" + ], + "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%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/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": [ + "69d41938-50d6-4f74-a5cb-f936775f90e7" + ], + "Accept-Language": [ + "en-US" + ], + "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/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" + ], + "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": [ + "aadf55ea-1b23-4ca5-ada1-e1957c5859cc" + ], + "x-ms-correlation-request-id": [ + "aadf55ea-1b23-4ca5-ada1-e1957c5859cc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160226Z:aadf55ea-1b23-4ca5-ada1-e1957c5859cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:02:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4609917c-2f70-45d1-bc12-9680f1eddc60" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5e363e01-4f88-4b73-98ba-23fbb4e6c406" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160256Z:5e363e01-4f88-4b73-98ba-23fbb4e6c406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:02:55 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/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/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjVlZjYyNjItNDU5Ni00ODYyLWIyNjYtZTRmYWQ2NGQ4ZjEyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "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": [ + "b4d8763e-b8de-4577-9195-e5169b7aab22" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "d2b55eae-135c-41ff-8219-3e0ce29b1db2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160326Z:d2b55eae-135c-41ff-8219-3e0ce29b1db2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:26 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/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/providers/Microsoft.NetApp/locations/westus2/operationResults/b5ef6262-4596-4862-b266-e4fad64d8f12?api-version=2020-06-01&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjVlZjYyNjItNDU5Ni00ODYyLWIyNjYtZTRmYWQ2NGQ4ZjEyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "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": [ + "d4f67c71-a510-4a95-90af-4d42ca1d8558" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3a878618-f816-4e6a-8758-505f2be5501e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160327Z:3a878618-f816-4e6a-8758-505f2be5501e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:03:26 GMT" + ], + "Content-Length": [ + "2265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/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": [ + "0890091f-0364-43a8-901e-14632d385af7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "14aa2688-e8b1-49b8-9527-33024452972a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4bd28777-f6f5-4148-bcf0-5c80230120ac" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160427Z:4bd28777-f6f5-4148-bcf0-5c80230120ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "35f59800-f564-455d-b2c0-7ed85b78f8a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d94847f-3abd-467d-9ac9-857768fa8539" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3262f4c0-62fa-482f-9642-250309e91959" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160432Z:3262f4c0-62fa-482f-9642-250309e91959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "600333a3-4cb4-4fa5-8b0b-82176fd50317" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8913ed25-65a1-41ff-8332-094457eb8728" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "bf4b0083-c727-4490-a3d2-509ea54ec1fe" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160433Z:bf4b0083-c727-4490-a3d2-509ea54ec1fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "1a7ba942-4274-468d-b78b-29be8764a8f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "613ac3c0-dbee-4cbb-b1c8-aa56b421bb52" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "3835416d-d8cb-4b00-9974-c39ca6d078d9" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160435Z:3835416d-d8cb-4b00-9974-c39ca6d078d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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": [ + "0b007c6e-4ee7-4809-881a-c02cefab84ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8d5fbf6-3cba-4b76-9d84-a63b80ff9f5a" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "cbd9479a-b292-4c0c-86a3-31e7c95f19d2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160436Z:cbd9479a-b292-4c0c-86a3-31e7c95f19d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "a0d8a97e-0838-45e9-9a62-85a167661155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "969b866e-ddde-446f-a6ec-67331e6f0324" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "90a35183-0532-407c-8ecd-7a4b325af5ad" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160438Z:90a35183-0532-407c-8ecd-7a4b325af5ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "09515c36-f2aa-46b3-9cb9-c6f7d32f4675" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f959acc2-a034-4f87-86ca-d57b93413eb5" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "23b3085b-7752-4574-8f9b-035b49479f6f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160439Z:23b3085b-7752-4574-8f9b-035b49479f6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "13585774-525c-4b1b-a5c1-787c94f0d6d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "404f5b89-7e65-4450-ba2d-abcdc8b42dde" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4ab74c69-b414-4b4f-b2e0-28ed0e339c13" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160440Z:4ab74c69-b414-4b4f-b2e0-28ed0e339c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "f70fbc11-f5b7-4014-bc91-0a3429d60ddd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58fd3b70-86dd-4403-84ee-dd04e653f308" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "4f035fc4-9a58-46cc-b4b3-19f22d2fcd1d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160442Z:4f035fc4-9a58-46cc-b4b3-19f22d2fcd1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "59ab755e-242b-441e-b0cf-0aa2a8a2bea6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c33ffca-f285-43a5-81a8-c76222267487" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "065e93f4-eb11-4496-a1bd-fb1a32e13661" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160443Z:065e93f4-eb11-4496-a1bd-fb1a32e13661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "61bbb815-1d90-4355-bc6d-4367f13173d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a7764353-c226-4842-a5be-8c4a54dc9eb3" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "7035040c-824e-4c1d-ba36-8985614f3d36" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160444Z:7035040c-824e-4c1d-ba36-8985614f3d36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "39e31ba3-c834-4cec-bc2c-779b0f0a8e26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40103ade-8a9e-4fe6-a9fb-8361dd1cdf07" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "8a527c49-eca1-4567-9f49-1245077f0187" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160446Z:8a527c49-eca1-4567-9f49-1245077f0187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "dd7a8ebf-75f6-47f7-b3ed-8a87010c1bdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66dcaa41-b4dd-4284-8b09-238176652d1d" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "23b98728-15d7-4976-80f4-1878710ee322" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160447Z:23b98728-15d7-4976-80f4-1878710ee322" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "db80f03f-b630-49b8-bb87-2509f09eb077" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4a7d960a-a09c-49c9-8303-2c288169cbf7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "5608ec15-805c-49eb-8a7e-c62ecca8ae90" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160448Z:5608ec15-805c-49eb-8a7e-c62ecca8ae90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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": [ + "943ccc54-8dfd-4138-a0c8-ba35da076c1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.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" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"healthy\": true,\r\n \"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": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d5a8553-9bd2-4c21-9d60-9bd4de7ab7fa" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "a58d131a-fbbc-4a52-bcf4-69d11ad58186" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160451Z:a58d131a-fbbc-4a52-bcf4-69d11ad58186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "340b45c1-42e6-40a4-9969-ef511c58f6df" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "334de97e-1e14-48c0-a0eb-d05b7c63f9f8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160452Z:334de97e-1e14-48c0-a0eb-d05b7c63f9f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "ee1f2b57-59b7-4cba-af46-24f8486c1a92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f5fed38a-26e0-436d-b0b3-c3561aa3ecc1" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "22f6a71c-0719-4b2b-9929-be7614ea8ab1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160454Z:22f6a71c-0719-4b2b-9929-be7614ea8ab1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "9f3700b5-99eb-47cc-98b6-4ea0bb2322ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "605b1c76-caad-4abd-9888-3ad68b767a97" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "55f8965f-654f-4d6e-b413-3a030b066007" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160455Z:55f8965f-654f-4d6e-b413-3a030b066007" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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/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", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9960a923-f59f-44c9-860e-a0bd6ae0d71f" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "2cee85f8-9d65-4498-91a5-a0e8435635d4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160457Z:2cee85f8-9d65-4498-91a5-a0e8435635d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "ad082894-0cab-410b-9650-c504c0fd1091" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c594401a-4a61-432b-8ebb-43e991a562dc" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "1c92f7c5-1491-46fe-a3cc-7022ba0f3772" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160458Z:1c92f7c5-1491-46fe-a3cc-7022ba0f3772" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "996012a9-f6d9-4bb5-b1b4-c689c0f251d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8229d5aa-dd71-45c5-9701-6883bb4dab74" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "0e85d58e-aebe-4e05-82b6-3c99286afd46" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160459Z:0e85d58e-aebe-4e05-82b6-3c99286afd46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:04: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": [ + "cb748607-9ae1-43be-aca4-5661abc39f1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "984716ee-01f9-45a4-900c-cea79674246e" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "f65993cd-f53a-4464-8148-42b0359e8f72" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160501Z:f65993cd-f53a-4464-8148-42b0359e8f72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05: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/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": [ + "34288b62-6876-4911-8710-f1ab2b432fcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a54512dc-3ff6-45f6-a72e-a08833162268" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "865e48f6-fe5a-4b16-bb16-5c29fc5b7bd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T160503Z:865e48f6-fe5a-4b16-bb16-5c29fc5b7bd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:05: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": [ + "1d97e76d-6408-4cae-bcb9-97ff93d8afac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/1.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01815a30-b1a9-47cb-be8c-4cdd6aad70b7" + ], + "Request-Context": [ + "appId=cid-v1:2c4cb680-0a1f-424d-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": [ + "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": [ + "edc7ebef-350d-47df-8981-98a18d531e89" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162122Z:edc7ebef-350d-47df-8981-98a18d531e89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:21: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": [ + "11958" + ], + "x-ms-request-id": [ + "727e1321-5c8e-40c9-9842-240182e2c521" + ], + "x-ms-correlation-request-id": [ + "727e1321-5c8e-40c9-9842-240182e2c521" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162138Z:727e1321-5c8e-40c9-9842-240182e2c521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:21: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": [ + "11957" + ], + "x-ms-request-id": [ + "26ef73c5-1671-49e5-a928-46232723cee2" + ], + "x-ms-correlation-request-id": [ + "26ef73c5-1671-49e5-a928-46232723cee2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162153Z:26ef73c5-1671-49e5-a928-46232723cee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:21:52 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": [ + "11956" + ], + "x-ms-request-id": [ + "a8ea43aa-78f0-4102-b0cf-2e5854286556" + ], + "x-ms-correlation-request-id": [ + "a8ea43aa-78f0-4102-b0cf-2e5854286556" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162208Z:a8ea43aa-78f0-4102-b0cf-2e5854286556" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:22: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": [ + "11955" + ], + "x-ms-request-id": [ + "92b9a694-ca87-467f-9998-27beec09edea" + ], + "x-ms-correlation-request-id": [ + "92b9a694-ca87-467f-9998-27beec09edea" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162224Z:92b9a694-ca87-467f-9998-27beec09edea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:22: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": [ + "11954" + ], + "x-ms-request-id": [ + "0c7853d0-b10d-43e0-9b95-4378be1c4c6c" + ], + "x-ms-correlation-request-id": [ + "0c7853d0-b10d-43e0-9b95-4378be1c4c6c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162239Z:0c7853d0-b10d-43e0-9b95-4378be1c4c6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:22: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": [ + "11953" + ], + "x-ms-request-id": [ + "08db5775-04cb-4ec5-a187-17e097086cd8" + ], + "x-ms-correlation-request-id": [ + "08db5775-04cb-4ec5-a187-17e097086cd8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162255Z:08db5775-04cb-4ec5-a187-17e097086cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:22: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": [ + "11952" + ], + "x-ms-request-id": [ + "c053d189-f23f-4235-aef2-24eb5e6e04e1" + ], + "x-ms-correlation-request-id": [ + "c053d189-f23f-4235-aef2-24eb5e6e04e1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162310Z:c053d189-f23f-4235-aef2-24eb5e6e04e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:23:10 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": [ + "11951" + ], + "x-ms-request-id": [ + "d2b98419-7686-4dcd-a919-e9ed89f2b1c5" + ], + "x-ms-correlation-request-id": [ + "d2b98419-7686-4dcd-a919-e9ed89f2b1c5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162325Z:d2b98419-7686-4dcd-a919-e9ed89f2b1c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:23:25 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": [ + "11950" + ], + "x-ms-request-id": [ + "a97c9e97-7a01-4eda-94bf-078a8154da4d" + ], + "x-ms-correlation-request-id": [ + "a97c9e97-7a01-4eda-94bf-078a8154da4d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162341Z:a97c9e97-7a01-4eda-94bf-078a8154da4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:23:41 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": [ + "11949" + ], + "x-ms-request-id": [ + "73e5c613-21a1-446c-978b-d1c10ccf2171" + ], + "x-ms-correlation-request-id": [ + "73e5c613-21a1-446c-978b-d1c10ccf2171" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162357Z:73e5c613-21a1-446c-978b-d1c10ccf2171" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:23:56 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": [ + "11948" + ], + "x-ms-request-id": [ + "1527d1c6-8154-44fe-8ef5-28da3f7ba659" + ], + "x-ms-correlation-request-id": [ + "1527d1c6-8154-44fe-8ef5-28da3f7ba659" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162412Z:1527d1c6-8154-44fe-8ef5-28da3f7ba659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:24:11 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": [ + "11947" + ], + "x-ms-request-id": [ + "7e803ac3-47a9-4d98-9ee7-af360bd56c38" + ], + "x-ms-correlation-request-id": [ + "7e803ac3-47a9-4d98-9ee7-af360bd56c38" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162427Z:7e803ac3-47a9-4d98-9ee7-af360bd56c38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:24: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": [ + "11946" + ], + "x-ms-request-id": [ + "f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" + ], + "x-ms-correlation-request-id": [ + "f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162443Z:f0a5fbbe-cc4f-4be3-9755-7db987b9ffe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:24: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": [ + "11945" + ], + "x-ms-request-id": [ + "ace8218b-5c0e-4e6a-bac6-07abd0941d7e" + ], + "x-ms-correlation-request-id": [ + "ace8218b-5c0e-4e6a-bac6-07abd0941d7e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162458Z:ace8218b-5c0e-4e6a-bac6-07abd0941d7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:24: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": [ + "11944" + ], + "x-ms-request-id": [ + "a84a6554-1b50-496d-bb9e-55be741888e5" + ], + "x-ms-correlation-request-id": [ + "a84a6554-1b50-496d-bb9e-55be741888e5" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162514Z:a84a6554-1b50-496d-bb9e-55be741888e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:25: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": [ + "11943" + ], + "x-ms-request-id": [ + "57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" + ], + "x-ms-correlation-request-id": [ + "57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162529Z:57bcca2d-0b0b-486f-a6f9-b4a6bb4de286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:25:29 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": [ + "11942" + ], + "x-ms-request-id": [ + "199c9015-68d3-4b13-b6a3-2b072306fa94" + ], + "x-ms-correlation-request-id": [ + "199c9015-68d3-4b13-b6a3-2b072306fa94" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162544Z:199c9015-68d3-4b13-b6a3-2b072306fa94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:25: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": [ + "11941" + ], + "x-ms-request-id": [ + "d314bd7e-993d-46f9-a97b-fc290ef745e2" + ], + "x-ms-correlation-request-id": [ + "d314bd7e-993d-46f9-a97b-fc290ef745e2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162600Z:d314bd7e-993d-46f9-a97b-fc290ef745e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:25:59 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": [ + "11940" + ], + "x-ms-request-id": [ + "15921de2-581b-4cf0-880a-634ad6efbccc" + ], + "x-ms-correlation-request-id": [ + "15921de2-581b-4cf0-880a-634ad6efbccc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162615Z:15921de2-581b-4cf0-880a-634ad6efbccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:26: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": [ + "11939" + ], + "x-ms-request-id": [ + "0248022d-d69f-4764-8425-fffcd478c042" + ], + "x-ms-correlation-request-id": [ + "0248022d-d69f-4764-8425-fffcd478c042" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162631Z:0248022d-d69f-4764-8425-fffcd478c042" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:26: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": [ + "11938" + ], + "x-ms-request-id": [ + "b3a5b9f1-d060-4f3b-a39e-94760b74fa45" + ], + "x-ms-correlation-request-id": [ + "b3a5b9f1-d060-4f3b-a39e-94760b74fa45" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162646Z:b3a5b9f1-d060-4f3b-a39e-94760b74fa45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:26: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": [ + "11937" + ], + "x-ms-request-id": [ + "19dfa07c-6284-45c2-9f6f-38c42127a446" + ], + "x-ms-correlation-request-id": [ + "19dfa07c-6284-45c2-9f6f-38c42127a446" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162701Z:19dfa07c-6284-45c2-9f6f-38c42127a446" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:27: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": [ + "11936" + ], + "x-ms-request-id": [ + "a5939c2a-c254-4d0d-9b04-389b0dd092e7" + ], + "x-ms-correlation-request-id": [ + "a5939c2a-c254-4d0d-9b04-389b0dd092e7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162717Z:a5939c2a-c254-4d0d-9b04-389b0dd092e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:27: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": [ + "11935" + ], + "x-ms-request-id": [ + "f5e90768-382d-452d-8530-851e3e3109d2" + ], + "x-ms-correlation-request-id": [ + "f5e90768-382d-452d-8530-851e3e3109d2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162732Z:f5e90768-382d-452d-8530-851e3e3109d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:27: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": [ + "11934" + ], + "x-ms-request-id": [ + "d1ed1d40-7e47-4085-adea-5098572deab0" + ], + "x-ms-correlation-request-id": [ + "d1ed1d40-7e47-4085-adea-5098572deab0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162748Z:d1ed1d40-7e47-4085-adea-5098572deab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:27: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": [ + "11933" + ], + "x-ms-request-id": [ + "bac37002-31c6-465e-869b-b8e70f00c728" + ], + "x-ms-correlation-request-id": [ + "bac37002-31c6-465e-869b-b8e70f00c728" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162803Z:bac37002-31c6-465e-869b-b8e70f00c728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:28:02 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": [ + "11932" + ], + "x-ms-request-id": [ + "92a6532d-0288-42c7-9e06-051c33f3be6e" + ], + "x-ms-correlation-request-id": [ + "92a6532d-0288-42c7-9e06-051c33f3be6e" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162819Z:92a6532d-0288-42c7-9e06-051c33f3be6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:28: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": [ + "11931" + ], + "x-ms-request-id": [ + "849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" + ], + "x-ms-correlation-request-id": [ + "849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162834Z:849b4f5c-12f7-47d7-bb76-9f7e6288fc6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:28:34 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": [ + "11930" + ], + "x-ms-request-id": [ + "230d7d21-834b-4c1f-a297-a8c9795f04b0" + ], + "x-ms-correlation-request-id": [ + "230d7d21-834b-4c1f-a297-a8c9795f04b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162850Z:230d7d21-834b-4c1f-a297-a8c9795f04b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:28: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": [ + "11929" + ], + "x-ms-request-id": [ + "a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" + ], + "x-ms-correlation-request-id": [ + "a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162905Z:a2cf5a44-ed77-4f31-b2a5-2c9fd931760a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:29: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": [ + "11928" + ], + "x-ms-request-id": [ + "30f09146-52b7-484e-a2bb-07b1d25393d8" + ], + "x-ms-correlation-request-id": [ + "30f09146-52b7-484e-a2bb-07b1d25393d8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162920Z:30f09146-52b7-484e-a2bb-07b1d25393d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:29: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": [ + "11927" + ], + "x-ms-request-id": [ + "9cb032d1-98a0-4125-9d26-72cacb74be25" + ], + "x-ms-correlation-request-id": [ + "9cb032d1-98a0-4125-9d26-72cacb74be25" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162936Z:9cb032d1-98a0-4125-9d26-72cacb74be25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:29:35 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": [ + "11926" + ], + "x-ms-request-id": [ + "8c71bb14-83f6-46d6-aad9-a0542ccc43f7" + ], + "x-ms-correlation-request-id": [ + "8c71bb14-83f6-46d6-aad9-a0542ccc43f7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T162951Z:8c71bb14-83f6-46d6-aad9-a0542ccc43f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:29:50 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": [ + "11925" + ], + "x-ms-request-id": [ + "d77ac9d2-b396-4e35-8f57-5557c900738f" + ], + "x-ms-correlation-request-id": [ + "d77ac9d2-b396-4e35-8f57-5557c900738f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163006Z:d77ac9d2-b396-4e35-8f57-5557c900738f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:30: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": [ + "11924" + ], + "x-ms-request-id": [ + "986d09c1-6626-499e-9fa1-5498bba0e9b2" + ], + "x-ms-correlation-request-id": [ + "986d09c1-6626-499e-9fa1-5498bba0e9b2" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163022Z:986d09c1-6626-499e-9fa1-5498bba0e9b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:30:21 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": [ + "11923" + ], + "x-ms-request-id": [ + "bc843b21-e63c-40c0-acd5-eeccd2d73501" + ], + "x-ms-correlation-request-id": [ + "bc843b21-e63c-40c0-acd5-eeccd2d73501" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163037Z:bc843b21-e63c-40c0-acd5-eeccd2d73501" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:30: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": [ + "11922" + ], + "x-ms-request-id": [ + "da4aa205-3649-4b64-ae23-8bb723c6f93b" + ], + "x-ms-correlation-request-id": [ + "da4aa205-3649-4b64-ae23-8bb723c6f93b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163053Z:da4aa205-3649-4b64-ae23-8bb723c6f93b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:30:52 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": [ + "11921" + ], + "x-ms-request-id": [ + "f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" + ], + "x-ms-correlation-request-id": [ + "f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163108Z:f49cc4c4-7b30-497c-b931-3bd4eaabfcf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:31:07 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": [ + "11920" + ], + "x-ms-request-id": [ + "2e13dda9-13d5-4718-b580-8778c78326db" + ], + "x-ms-correlation-request-id": [ + "2e13dda9-13d5-4718-b580-8778c78326db" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163123Z:2e13dda9-13d5-4718-b580-8778c78326db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:31:23 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": [ + "11919" + ], + "x-ms-request-id": [ + "4e523dfe-d94d-46f2-b278-85566838347b" + ], + "x-ms-correlation-request-id": [ + "4e523dfe-d94d-46f2-b278-85566838347b" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163139Z:4e523dfe-d94d-46f2-b278-85566838347b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:31:38 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": [ + "11918" + ], + "x-ms-request-id": [ + "62dc7702-3510-4b91-98d7-e538020761a8" + ], + "x-ms-correlation-request-id": [ + "62dc7702-3510-4b91-98d7-e538020761a8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163154Z:62dc7702-3510-4b91-98d7-e538020761a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:31: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": [ + "11917" + ], + "x-ms-request-id": [ + "20249d97-9ca3-4a58-a7c7-fe625d07c165" + ], + "x-ms-correlation-request-id": [ + "20249d97-9ca3-4a58-a7c7-fe625d07c165" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163209Z:20249d97-9ca3-4a58-a7c7-fe625d07c165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:32: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": [ + "11916" + ], + "x-ms-request-id": [ + "44f62c49-124f-4fbb-b0c1-b40daea92dfc" + ], + "x-ms-correlation-request-id": [ + "44f62c49-124f-4fbb-b0c1-b40daea92dfc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163225Z:44f62c49-124f-4fbb-b0c1-b40daea92dfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:32: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": [ + "11915" + ], + "x-ms-request-id": [ + "657c7b80-4c85-4c00-ab5d-bf59838df67a" + ], + "x-ms-correlation-request-id": [ + "657c7b80-4c85-4c00-ab5d-bf59838df67a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163241Z:657c7b80-4c85-4c00-ab5d-bf59838df67a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:32: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": [ + "11914" + ], + "x-ms-request-id": [ + "27698c8c-1379-4a6d-aacd-9873020fa80c" + ], + "x-ms-correlation-request-id": [ + "27698c8c-1379-4a6d-aacd-9873020fa80c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163256Z:27698c8c-1379-4a6d-aacd-9873020fa80c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:32:56 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": [ + "11913" + ], + "x-ms-request-id": [ + "88ebd207-8d1e-434f-ac09-fd972867b415" + ], + "x-ms-correlation-request-id": [ + "88ebd207-8d1e-434f-ac09-fd972867b415" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163312Z:88ebd207-8d1e-434f-ac09-fd972867b415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:33:11 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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "0f41c88b-d091-4155-b75e-c4f4c5d33255" + ], + "x-ms-correlation-request-id": [ + "0f41c88b-d091-4155-b75e-c4f4c5d33255" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163327Z:0f41c88b-d091-4155-b75e-c4f4c5d33255" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:33:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "60f20532-f36b-423c-95f4-f4a8916eea1a" + ], + "x-ms-correlation-request-id": [ + "60f20532-f36b-423c-95f4-f4a8916eea1a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163327Z:60f20532-f36b-423c-95f4-f4a8916eea1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:33:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "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", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "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-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "cadc2e75-bd17-4cf1-994a-fc64162e46b0" + ], + "x-ms-correlation-request-id": [ + "cadc2e75-bd17-4cf1-994a-fc64162e46b0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163330Z:cadc2e75-bd17-4cf1-994a-fc64162e46b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:33:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "187d8a86-f598-4028-a25d-7691c191f037" + ], + "x-ms-correlation-request-id": [ + "187d8a86-f598-4028-a25d-7691c191f037" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163346Z:187d8a86-f598-4028-a25d-7691c191f037" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:33:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "464b7016-38da-4d6f-86ca-b0a91f35ee1a" + ], + "x-ms-correlation-request-id": [ + "464b7016-38da-4d6f-86ca-b0a91f35ee1a" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163401Z:464b7016-38da-4d6f-86ca-b0a91f35ee1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:34:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "ec116392-76bd-41c1-9722-d50b94e3c393" + ], + "x-ms-correlation-request-id": [ + "ec116392-76bd-41c1-9722-d50b94e3c393" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163416Z:ec116392-76bd-41c1-9722-d50b94e3c393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:34:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "c3b14ad0-2eea-465d-855f-c38d46574015" + ], + "x-ms-correlation-request-id": [ + "c3b14ad0-2eea-465d-855f-c38d46574015" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163432Z:c3b14ad0-2eea-465d-855f-c38d46574015" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:34:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "72eb70fa-b792-46d9-9e2c-5377de4a20fc" + ], + "x-ms-correlation-request-id": [ + "72eb70fa-b792-46d9-9e2c-5377de4a20fc" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163447Z:72eb70fa-b792-46d9-9e2c-5377de4a20fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:34:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "739e93cd-e5b0-4102-9f13-de2b46529666" + ], + "x-ms-correlation-request-id": [ + "739e93cd-e5b0-4102-9f13-de2b46529666" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163502Z:739e93cd-e5b0-4102-9f13-de2b46529666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:35:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" + ], + "x-ms-correlation-request-id": [ + "aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163518Z:aca1f8a9-4e6c-402e-8e2e-2119e55c45ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:35:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "ec02e9c8-2bf3-41d2-9246-a932c03cd72f" + ], + "x-ms-correlation-request-id": [ + "ec02e9c8-2bf3-41d2-9246-a932c03cd72f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163533Z:ec02e9c8-2bf3-41d2-9246-a932c03cd72f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:35:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "ec42c225-8900-4807-9244-fc53970a0cf7" + ], + "x-ms-correlation-request-id": [ + "ec42c225-8900-4807-9244-fc53970a0cf7" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163548Z:ec42c225-8900-4807-9244-fc53970a0cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:35:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "84ba4924-b0f7-4390-b406-30a6c9d20a05" + ], + "x-ms-correlation-request-id": [ + "84ba4924-b0f7-4390-b406-30a6c9d20a05" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163604Z:84ba4924-b0f7-4390-b406-30a6c9d20a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:36:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "3472d4c2-65e1-483d-979f-42bd524012d6" + ], + "x-ms-correlation-request-id": [ + "3472d4c2-65e1-483d-979f-42bd524012d6" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163619Z:3472d4c2-65e1-483d-979f-42bd524012d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:36:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "e0299a1b-7ef1-4388-8aaa-1b9847602a1c" + ], + "x-ms-correlation-request-id": [ + "e0299a1b-7ef1-4388-8aaa-1b9847602a1c" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163634Z:e0299a1b-7ef1-4388-8aaa-1b9847602a1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:36:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "a893c44b-8a2d-4470-a135-0ee33580fc36" + ], + "x-ms-correlation-request-id": [ + "a893c44b-8a2d-4470-a135-0ee33580fc36" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163650Z:a893c44b-8a2d-4470-a135-0ee33580fc36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:36:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" + ], + "x-ms-correlation-request-id": [ + "139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163705Z:139f64a5-4d9b-4cb5-a5fb-ac909ad2828f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:37:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" + ], + "x-ms-correlation-request-id": [ + "8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163720Z:8c2c2e97-676e-4943-88c1-0cfdc6ef19f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:37:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "da2393a1-78a9-4b2e-b4e2-5826e09dc377" + ], + "x-ms-correlation-request-id": [ + "da2393a1-78a9-4b2e-b4e2-5826e09dc377" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163736Z:da2393a1-78a9-4b2e-b4e2-5826e09dc377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:37:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" + ], + "x-ms-correlation-request-id": [ + "9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163751Z:9cc2b7a9-97f0-4216-bd7e-bc4a3c3399bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:37:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "147a72de-8a9b-4b1c-a5b3-4a730df2baf0" + ], + "x-ms-correlation-request-id": [ + "147a72de-8a9b-4b1c-a5b3-4a730df2baf0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163807Z:147a72de-8a9b-4b1c-a5b3-4a730df2baf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:38:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" + ], + "x-ms-correlation-request-id": [ + "7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163822Z:7fa41282-a6fc-4163-a7e0-4a30e8c36b2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:38:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-request-id": [ + "5a179faa-7be2-4c32-8b9f-364277671498" + ], + "x-ms-correlation-request-id": [ + "5a179faa-7be2-4c32-8b9f-364277671498" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163837Z:5a179faa-7be2-4c32-8b9f-364277671498" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:38:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" + ], + "x-ms-correlation-request-id": [ + "7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163853Z:7fc206f6-ceb4-4b3b-bd17-44b022b6e5b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:38:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "fb59ac12-c8ec-47be-9f3e-7a89078f80e4" + ], + "x-ms-correlation-request-id": [ + "fb59ac12-c8ec-47be-9f3e-7a89078f80e4" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163908Z:fb59ac12-c8ec-47be-9f3e-7a89078f80e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:39:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "d044e55f-2220-4541-8365-198e0c99f4f0" + ], + "x-ms-correlation-request-id": [ + "d044e55f-2220-4541-8365-198e0c99f4f0" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163924Z:d044e55f-2220-4541-8365-198e0c99f4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:39:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "e3695db6-f33b-46a5-b72b-5cc308eec499" + ], + "x-ms-correlation-request-id": [ + "e3695db6-f33b-46a5-b72b-5cc308eec499" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163939Z:e3695db6-f33b-46a5-b72b-5cc308eec499" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:39:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "82ebf1c7-51b8-4387-bea5-775ef9631e33" + ], + "x-ms-correlation-request-id": [ + "82ebf1c7-51b8-4387-bea5-775ef9631e33" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T163954Z:82ebf1c7-51b8-4387-bea5-775ef9631e33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:39:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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": [ + "11885" + ], + "x-ms-request-id": [ + "9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" + ], + "x-ms-correlation-request-id": [ + "9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T164010Z:9f653d21-aa8b-47b8-a9df-ac58cf5f9c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:40:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/69a75bda-882e-44d5-8431-63421204132a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ3OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjlhNzViZGEtODgyZS00NGQ1LTg0MzEtNjM0MjEyMDQxMzJhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRM09UY3RVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/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": [ + "11884" + ], + "x-ms-request-id": [ + "af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" + ], + "x-ms-correlation-request-id": [ + "af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" + ], + "x-ms-routing-request-id": [ + "FRANCESOUTH:20201106T164010Z:af43af8b-4f09-4f39-bf6f-dc3f2d406a4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 06 Nov 2020 16:40:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VolumeReplication": [ + "ps8985", + "ps4797", + "ps9790", + "ps6228", + "ps7997", + "ps6769", + "ps4174", + "ps5850" + ] + }, + "Variables": { + "SubscriptionId": "69a75bda-882e-44d5-8431-63421204132a" + } +} \ No newline at end of file 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..310d1fe906c2 --- /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 ActiveDirectoryId of the ANF Active Directory")] + [ValidateNotNullOrEmpty] + [Alias("ActiveDirectoryName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activedirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string ActiveDirectoryId { 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 (ActiveDirectoryId != null) + { + 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(ResourceGroupName, AccountName); + 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..6e7c82808b0c --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/NewNetAppFilesActiveDirectory.cs @@ -0,0 +1,183 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { 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[] BackupOperator { 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; + var NameParts = AccountObject.Name.Split('/'); + AccountName = NameParts[0]; + } + + 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.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'"); + } + + var activeDirectory = new Management.NetApp.Models.ActiveDirectory + { + 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) + { + 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 new file mode 100644 index 000000000000..695dc775fa79 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/RemoveNetAppFilesActiveDirectory.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; +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 = true, + HelpMessage = "The ID of the ANF active directory", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The ID of the ANF active directory", + ParameterSetName = ParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activeDirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string ActiveDirectoryId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Account for the Active Directory object")] + [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) + { + 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(ActiveDirectoryId, string.Format(PowerShell.Cmdlets.NetAppFiles.Properties.Resources.CreateResourceMessage, ResourceGroupName))) + { + var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); + var activeDirectory = anfAccount.ActiveDirectories.FirstOrDefault(a => a.ActiveDirectoryId == ActiveDirectoryId); + 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/UpdateNetAppFilesActiveDirectory.cs b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs new file mode 100644 index 000000000000..6c9ce6a5cd83 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/ActiveDirectory/UpdateNetAppFilesActiveDirectory.cs @@ -0,0 +1,233 @@ + +// ---------------------------------------------------------------------------------- +// +// 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.ActiveDirectory +{ + [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 name of the ANF account")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccount", + nameof(ResourceGroupName))] + public string AccountName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The ID of the ANF active directory", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The ID of the ANF active directory", + ParameterSetName = ParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/activeDirectory", + nameof(ResourceGroupName), + nameof(AccountName))] + public string ActiveDirectoryId { 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 = false, + 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 = 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; } + + [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[] BackupOperator { 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 active directory object")] + [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(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.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'"); + } + string dnsStr = null; + if (Dns != null) + { + dnsStr = string.Join(",", Dns); + } + Management.NetApp.Models.ActiveDirectory anfADConfig = null; + if (string.IsNullOrWhiteSpace(ActiveDirectoryId)) + { + 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.Site = Site ?? anfADConfig.Site; + anfADConfig.OrganizationalUnit = OrganizationalUnit ?? anfADConfig.Site; + 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.ActiveDirectoryId == ActiveDirectoryId); + WriteObject(updatedActiveDirectory.ConvertToPs(ResourceGroupName, AccountName)); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 8832ae70baa1..142055e1a319 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', + 'Set-AzNetAppFilesVolumePool', + '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', + 'Set-AnfVolumePool', + '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..3b18c4cafc70 --- /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, body: 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..ddc14e760aff --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/RemoveNetAppFilesBackupPolicy.cs @@ -0,0 +1,137 @@ + +// ---------------------------------------------------------------------------------- +// +// 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", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = ParentObjectParameterSet)] + [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..3a8edc9aab44 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/BackupPolicy/UpdateNetAppFilesBackupPolicy.cs @@ -0,0 +1,175 @@ + +// ---------------------------------------------------------------------------------- +// +// 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", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup policy", + ParameterSetName = ParentObjectParameterSet)] + [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, body: 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..5ea42d8f227f --- /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, body: 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..9a6947e1eb8e --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/RemoveNetAppFilesBackup.cs @@ -0,0 +1,168 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 = 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( + "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..bdd42d3aa48f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Backups/UpdateNetAppFilesBackup.cs @@ -0,0 +1,193 @@ + +// ---------------------------------------------------------------------------------- +// +// 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", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF backup", + ParameterSetName = ParentObjectParameterSet)] + [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: AccountName, poolName: PoolName, volumeName: VolumeName, backupName: Name, body: backupPatch); + WriteObject(anfBakcupPolicy.ConvertToPs()); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 302c581551c4..33257500abd0 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -19,6 +19,48 @@ --> ## Upcoming Release +* 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 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 + - 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 `Initialize-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..5a8a5d35c5cc 100644 --- a/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs +++ b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs @@ -22,60 +22,67 @@ 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, string resourceGroupName, string accountName) { - List PsActiveDirectories = new List(); + return activeDirectories.Select(e => e.ConvertToPs(resourceGroupName, accountName)).ToList(); + } - foreach (var ActiveDirectory in ActiveDirectories) + public static PSNetAppFilesActiveDirectory ConvertToPs(this Management.NetApp.Models.ActiveDirectory activeDirectory, string resourceGroupName, string accountName) + { + 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; + ResourceGroupName = resourceGroupName, + AccountName = accountName, + 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) { + 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) ? ConvertActiveDirectoriesToPs(netAppAccount.ActiveDirectories) : null, + ActiveDirectories = (netAppAccount.ActiveDirectories != null) ? netAppAccount.ActiveDirectories.ConvertToPs(resourceGroupName, netAppAccount.Name) : null, ProvisioningState = netAppAccount.ProvisioningState }; } @@ -93,7 +100,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 +121,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 +151,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 +182,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 +214,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 +250,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 +304,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..a27c60d9ec67 --- /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.Name, + 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..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. @@ -60,6 +70,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 +99,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/InitializeNetAppFilesReplication.cs b/src/NetAppFiles/NetAppFiles/Replication/InitializeNetAppFilesReplication.cs new file mode 100644 index 000000000000..206ea2744dfe --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Replication/InitializeNetAppFilesReplication.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( + "Initialize", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesReplication", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] + [Alias("Initialize-AnfReplication")] + public class InitializeAzureRmNetAppFilesReplication : 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..ad7a842f3ca0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/RemoveNetAppFilesSnapshotPolicy.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.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)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = ParentObjectParameterSet)] + [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..654fe8cc3ee4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/SnapshotPolicy/UpdateNetAppFilesSnapshotPolicy.cs @@ -0,0 +1,181 @@ + +// ---------------------------------------------------------------------------------- +// +// 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", + ParameterSetName = FieldsParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "The name of the ANF snapshot policy", + ParameterSetName = ParentObjectParameterSet)] + [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 bool? Enabled { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the hourly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesHourlySchedule HourlySchedule { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the daily Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesDailySchedule DailySchedule { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable array which represents the montly Schedule")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; } + + [Parameter( + Mandatory = false, + 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/SetNetAppFilesVolumePool.cs b/src/NetAppFiles/NetAppFiles/Volume/SetNetAppFilesVolumePool.cs new file mode 100644 index 000000000000..7c3e3af2b027 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Volume/SetNetAppFilesVolumePool.cs @@ -0,0 +1,150 @@ +// ---------------------------------------------------------------------------------- +// +// 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( + "Set", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolumePool", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] + [Alias("Set-AnfVolumePool")] + public class SetAzureRmNetAppFilesVolumePool : 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; } + + public override void ExecuteCmdlet() + { + 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}; + var newPoolResourceIdentifier = new ResourceIdentifier(NewPoolResourceId); + AzureNetAppFilesManagementClient.Volumes.PoolChange(ResourceGroupName, AccountName, PoolName, Name, poolChangeBody); + var anfVolumes = AzureNetAppFilesManagementClient.Volumes.Get(ResourceGroupName, AccountName, newPoolResourceIdentifier.ResourceName, Name); + WriteObject(anfVolumes, true); + } + } + } +} 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..d15a45b956ff 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,51 @@ 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 list of Azure NetApp Files (ANF) Accounts backup vaults. + ### [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 for an ANF account. + ### [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 for an ANF account. + ### [New-AzNetAppFilesVolume](New-AzNetAppFilesVolume.md) Creates a new 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 +89,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. @@ -65,12 +107,27 @@ Updates an Azure NetApp Files (ANF) account with the new data set. Useful for de ### [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. +### [Update-AzNetAppFilesActiveDirectory](Update-AzNetAppFilesActiveDirectory.md) +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 to the optional modifiers provided. + +### [Update-AzNetAppFilesBackupPolicy](Update-AzNetAppFilesBackupPolicy.md) +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) +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/Get-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..39f8277b1353 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesactivedirectory +schema: 2.0.0 +--- + +# Get-AzNetAppFilesActiveDirectory + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) Active Directory configuration. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + [-ActiveDirectoryId ] [-DefaultProfile ] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesActiveDirectory [-ActiveDirectoryId ] -AccountObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesActiveDirectory** cmdlet gets details of an ANF accounts Active Directory configuration. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyADConfigName" +``` + +This command gets the AD configuration named MyADConfigName for the Azure NetApp Files (ANF) account named MyAnfAccount. + +## 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 +``` + +### -ActiveDirectoryId +The ActiveDirectoryId 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 +``` + +### -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 +``` + +### 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..27582423a134 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesbackup +schema: 2.0.0 +--- + +# Get-AzNetAppFilesBackup + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) Backup. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesBackup -ResourceGroupName -AccountName -PoolName + [-VolumeName ] [-Name ] [-DefaultProfile ] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesBackup [-Name ] -ResourceId [-DefaultProfile ] + [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesBackup [-Name ] -VolumeObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesBackup** cmdlet gets details of an ANF backup. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyBackup" +``` + +This command gets the backcup named "MyAnfAccount" from the volume named "MyVolume". + +## 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..ca29ad55c948 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesbackuppolicy +schema: 2.0.0 +--- + +# Get-AzNetAppFilesBackupPolicy + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) Backup Policy. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesBackupPolicy -ResourceGroupName -AccountName [-Name ] + [-DefaultProfile ] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesBackupPolicy [-Name ] -ResourceId [-DefaultProfile ] + [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesBackupPolicy [-Name ] -AccountObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesBackupPolicy** cmdlet gets details of an ANF backup policy. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyBackupPolicy" +``` + +This command gets the backup policy named "MyBackupPolicy" for account "MyAnfAccount". + +## 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-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-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..fdbf390af7b7 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilessnapshotpolicy +schema: 2.0.0 +--- + +# Get-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) snapshot policy. + +## 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 +The **Get-AzNetAppFilesSnapshotPolicy** cmdlet gets details of an ANF snapshot policy. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MySnapshotPolicy" +``` + +This command gets the backup policy named "MyBackupPolicy" for account "MyAnfAccount". + +## 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..09e7354e0e88 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/get-aznetappfilesvault +schema: 2.0.0 +--- + +# Get-AzNetAppFilesVault + +## SYNOPSIS +Gets list of Azure NetApp Files (ANF) Accounts backup vaults. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesVault -ResourceGroupName [-AccountName ] + [-DefaultProfile ] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesVault -AccountObject [-DefaultProfile ] + [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesVault -ResourceId [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesVault** cmdlet gets list of an ANF accounts backup vaults. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzNetAppFilesVault -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" +``` + +This command gets a list of the backup vaults for Azure NetappFiles (ANF) account "MyAnfAccount". + +## 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/Initialize-AzNetAppFilesReplication.md b/src/NetAppFiles/NetAppFiles/help/Initialize-AzNetAppFilesReplication.md new file mode 100644 index 000000000000..932a7ab8b26e --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Initialize-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/initialize-aznetappfilesreplication +schema: 2.0.0 +--- + +# Initialize-AzNetAppFilesReplication + +## SYNOPSIS +Re-Initializes the replication connection on the destination volume + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Initialize-AzNetAppFilesReplication -ResourceGroupName -AccountName -PoolName + -Name [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceIdParameterSet +``` +Initialize-AzNetAppFilesReplication -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Initialize-AzNetAppFilesReplication -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Re-Initializes the connection on the destination volume + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Initialize-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/New-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..328260e82cb8 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,321 @@ +--- +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/new-aznetappfilesactivedirectory +schema: 2.0.0 +--- + +# New-AzNetAppFilesActiveDirectory + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) active directory configuration. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName [-Dns ] + -Domain [-Site ] -SmbServerName [-Username ] [-Password ] + [-OrganizationalUnit ] [-KdcIP ] [-BackupOperator ] + [-ServerRootCACertificate ] [-AdName ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesActiveDirectory [-Dns ] -Domain [-Site ] -SmbServerName + [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] + [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] + -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **New-AzNetAppFilesActiveDirectory** cmdlet creates a new active directory configuration for an ANF account. + +## EXAMPLES + +### Example 1 +```powershell +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" +``` + +This command gets the AD password from promt into a secreates the new Active Directory configuration for the ANF account "MyAnfAccount". + +## 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 +``` + +### -BackupOperator +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 +``` + +### -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..7d7a9ee7783e --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilesbackup +schema: 2.0.0 +--- + +# New-AzNetAppFilesBackup + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) backup. + +## 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 +The **New-AzNetAppFilesBackup** cmdlet creates a backup for an ANF volume. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzNetAppFilesBackup -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyVolumeBackup" -Label "ALabel" +``` + +This command creates the new ANF backup for volume named account "MyVolume". + +## 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..7a6e02d38a45 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/new-aznetappfilesbackuppolicy +schema: 2.0.0 +--- + +# New-AzNetAppFilesBackupPolicy + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) backup policy for an ANF account. + +## 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 +The **New-AzNetAppFilesActiveDirectory** cmdlet creates a new backup policy for an ANF account. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAccount" -Name "MyBackupPolicy" -Tag @{"tag1" = "tagValue"} -Enabled -DailyBackupsToKeep 1 -WeeklyBackupsToKeep 2 -MonthlyBackupsToKeep 2 -YearlyBackupsToKeep 1 +``` + +This command creates the new ANF backup policy for ANF account named account "MyAccount". + +## 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 c5814eb7ad10..90fa78497945 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 @@ -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 ``` @@ -142,6 +145,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: False +Position: Named +Default value: Auto +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group of the ANF account diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md new file mode 100644 index 000000000000..9e8dc6705c28 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,291 @@ +--- +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/new-aznetappfilessnapshotpolicy +schema: 2.0.0 +--- + +# New-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) snapshot policy for an ANF account. + +## 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 +The **New-AzNetAppFilesActiveDirectory** cmdlet creates a new snapshot policy for an ANF account. + +## EXAMPLES + +### Example 1 +```powershell +$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 +``` + +This command creates the new ANF snapshot policy for ANF account named account "MyAccount". + +## 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 df67cbd04956..4d76140266fe 100644 --- a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md @@ -17,15 +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 ] [-ProtocolType ] [-Tag ] - [-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 ] [-ProtocolType ] [-Tag ] + [-ReplicationObject ] [-Snapshot ] + [-Backup ] [-ProtocolType ] [-SnapshotDirectoryVisible] + [-SecurityStyle ] [-ThroughputMibps ] [-KerberosEnabled] [-Tag ] -PoolObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -73,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 @@ -118,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 @@ -223,6 +272,21 @@ 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: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ServiceLevel The service level of the ANF volume @@ -238,6 +302,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 +``` + +### -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: + +Required: False +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 @@ -283,6 +377,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 @@ -349,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/Remove-AzNetAppFilesActiveDirectory.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md new file mode 100644 index 000000000000..e969a6ffa8b4 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,199 @@ +--- +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-aznetappfilesactivedirectory +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesActiveDirectory + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) active directory configuration. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + -ActiveDirectoryId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesActiveDirectory -ActiveDirectoryId -AccountObject + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesActiveDirectory -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesActiveDirectory** cmdlet deletes an ANF active directory configuration. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyADName" +``` + +This command deletes the new ANF active directory configuration with a the name "MyADName". + +## 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 +``` + +### -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. + +```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 active directory object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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 + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## 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..675247fcc6b2 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesbackup +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesBackup + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) backup. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesBackup -ResourceGroupName [-AccountName ] -PoolName + [-VolumeName ] -Name [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesBackup -Name -VolumeObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesBackup -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesBackup -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesBackup** cmdlet deletes an ANF account. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName "MyAccount" -PoolName "MyPool" -VolumeName "MyVolume" -Name "MyBackup" +``` + +This command deletes the new ANF backup with a the name "MyBackup" for volume "MyVolume". + +## 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: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: BackupName + +Required: True +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..f4e59decf9a3 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilesbackuppolicy +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesBackupPolicy + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) backup policy. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesBackupPolicy -ResourceGroupName -AccountName -Name [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -Name -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesBackupPolicy -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesBackupPolicy** cmdlet deletes an ANF backup policy. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyBackupPolicy" +``` + +This command deletes the new ANF backup policy with a the name "MyBackupPolicy" for account "MyAccount". + +## 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: ByFieldsParameterSet, ByParentObjectParameterSet +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..f5ac1607e9fc --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/remove-aznetappfilessnapshotpolicy +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesSnapshotPolicy + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) snapshot policy. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName -AccountName -Name [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -Name -AccountObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesSnapshotPolicy -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesSnapshotPolicy** cmdlet deletes an ANF snapshot policy. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MySnapshotPolicy" +``` + +This command deletes the new ANF backup policy with a the name "MyBackupPolicy" for account "MyAccount". + +## 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, ByParentObjectParameterSet +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/Set-AzNetAppFilesVolumePool.md b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md new file mode 100644 index 000000000000..e3f63e2b1019 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Set-AzNetAppFilesVolumePool.md @@ -0,0 +1,238 @@ +--- +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/set-aznetAppfilesvolumepool +schema: 2.0.0 +--- + +# Set-AzNetAppFilesVolumePool + +## SYNOPSIS +Change pool for an Azure NetApp Files (ANF) volume. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Set-AzNetAppFilesVolumePool -ResourceGroupName -AccountName -PoolName + -Name [-NewPoolResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Set-AzNetAppFilesVolumePool -Name -PoolObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Set-AzNetAppFilesVolumePool -ResourceId [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Set-AzNetAppFilesVolumePool -InputObject [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzNetAppFilesVolumePool** cmdlet changes the pool of an ANF volume. + +## EXAMPLES + +### Example 1 +```powershell +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 + +## 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 move + +```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 capacity pool to move 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 + +```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.SetParameter +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.SetParameter +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 1b3c820c3cd6..1e9941e7526b 100644 --- a/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md +++ b/src/NetAppFiles/NetAppFiles/help/Suspend-AzNetAppFilesReplication.md @@ -15,7 +15,7 @@ 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] [] ``` @@ -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..49315c9b46f5 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesActiveDirectory.md @@ -0,0 +1,361 @@ +--- +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/update-aznetappfilesactivedirectory +schema: 2.0.0 +--- + +# Update-AzNetAppFilesActiveDirectory + +## SYNOPSIS +Updates an Azure NetApp Files (ANF) active directory configuration to the optional modifiers provided. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesActiveDirectory -ResourceGroupName -AccountName + -ActiveDirectoryId [-Dns ] [-Domain ] [-Site ] [-SmbServerName ] + [-Username ] [-Password ] [-OrganizationalUnit ] [-KdcIP ] + [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +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 ] [-BackupOperator ] [-ServerRootCACertificate ] [-AdName ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesAccount** cmdlet modifies an ANF active directory configuration. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Update-AzNetAppFilesActiveDirectory -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyADName" -Username $adUsername +``` + +This command performs an update on the given active directory configuration modifying the username to that provided. + +## 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 +``` + +### -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 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupOperator +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: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The active directory object to remove + +```yaml +Type: Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +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 +``` + +### -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: 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 + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesActiveDirectory + +## 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..95bbe8f073d2 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesBackup.md @@ -0,0 +1,283 @@ +--- +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/update-aznetappfilesbackup +schema: 2.0.0 +--- + +# Update-AzNetAppFilesBackup + +## SYNOPSIS +Updates an Azure NetApp Files (ANF) backup to the optional modifiers provided. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesBackup -ResourceGroupName -Location -AccountName -Name + -PoolName -VolumeName [-Label ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesBackup -Name [-Label ] [-Tag ] + -VolumeObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackup [-Label ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesBackup [-Label ] [-Tag ] -InputObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesBackup** cmdlet modifies an ANF backup. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Update-AzNetAppFilesBackup -ResourceGroupName "MyRG" -AccountName $accName1 -Name $backupPolicyObject -Label "updatedLabel" +``` + +This command performs an update on the given backup modifying the username to that provided. + +## 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: ByFieldsParameterSet, ByParentObjectParameterSet +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..2f9fafb03da1 --- /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: https://docs.microsoft.com/en-us/powershell/module/az.netappfiles/update-aznetappfilesbackuppolicy +schema: 2.0.0 +--- + +# Update-AzNetAppFilesBackupPolicy + +## SYNOPSIS +Updates an Azure NetApp Files (ANF) backup policy to the optional modifiers provided. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesBackupPolicy -ResourceGroupName -Location -AccountName + -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] [-MonthlyBackupsToKeep ] + [-YearlyBackupsToKeep ] [-Tag ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesBackupPolicy -Name [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] + -AccountObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceIdParameterSet +``` +Update-AzNetAppFilesBackupPolicy [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] -ResourceId + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesBackupPolicy [-DailyBackupsToKeep ] [-WeeklyBackupsToKeep ] + [-MonthlyBackupsToKeep ] [-YearlyBackupsToKeep ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesBackupPolicy** cmdlet modifies an ANF backup policy . + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Update-AzNetAppFilesBackupPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MyBackupPolicy" -DailyBackupsToKeep 2 +``` + +This command changes the ANF backup policy "MyBackupPolicy" to have the given DailyBackupsToKeep. + +## 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: ByFieldsParameterSet, ByParentObjectParameterSet +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 69aa2f7ebbec..2c6272d9c7b5 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 @@ -170,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 ``` -### -ServiceLevel -The service level of the ANF pool +### -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..50f8df86c386 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesSnapshotPolicy.md @@ -0,0 +1,326 @@ +--- +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/update-aznetappfilessnapshotpolicy +schema: 2.0.0 +--- + +# Update-AzNetAppFilesSnapshotPolicy + +## 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] [] +``` + +### ByParentObjectParameterSet +``` +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 [-Enabled ] [-HourlySchedule ] + [-DailySchedule ] [-WeeklySchedule ] + [-MonthlySchedule ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesSnapshotPolicy** cmdlet modifies an ANF snapshot policy. + +## EXAMPLES + +### Example 1 +```powershell +$hourlySchedule = @{ + Minute = 1 + SnapshotsToKeep = 3 + } +PS C:\> Update-AzNetAppFilesSnapshotPolicy -ResourceGroupName "MyRG" -AccountName "MyAccount" -Name "MySnapshotPolicy" -HourlySchedule $hourlySchedule +``` + +This command changes the ANF backup policy "MySnapshotPolicy" to have the given HourlySchedule. + +## 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: 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.Nullable`1[System.Boolean] +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: 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.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: 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, ByParentObjectParameterSet +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: 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.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 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(); - } + } } } 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."